Skip to content

Instantly share code, notes, and snippets.

@bhagany
Created July 22, 2014 02:40
Show Gist options
  • Save bhagany/2d922a4de5d53961355e to your computer and use it in GitHub Desktop.
Save bhagany/2d922a4de5d53961355e to your computer and use it in GitHub Desktop.
% celery -A myproj worker -l debug
[2014-07-21 22:29:32,362: DEBUG/MainProcess] | Worker: Preparing bootsteps.
[2014-07-21 22:29:32,368: DEBUG/MainProcess] | Worker: Building graph...
[2014-07-21 22:29:32,369: DEBUG/MainProcess] | Worker: New boot order: {Timer, Hub, Queues (intra), Pool, Autoreloader, Autoscaler, Beat, StateDB, Consumer}
[2014-07-21 22:29:32,375: DEBUG/MainProcess] | Consumer: Preparing bootsteps.
[2014-07-21 22:29:32,375: DEBUG/MainProcess] | Consumer: Building graph...
[2014-07-21 22:29:32,384: DEBUG/MainProcess] | Consumer: New boot order: {Connection, Agent, Events, Mingle, Tasks, Control, Gossip, Heart, event loop}
-------------- celery@tethys.local v3.1.13 (Cipater)
---- **** -----
--- * *** * -- Darwin-13.3.0-x86_64-i386-64bit
-- * - **** ---
- ** ---------- [config]
- ** ---------- .> app: proj:0x10633c5d0
- ** ---------- .> transport: amqplib://myproj:**@tethys:5672/myvhost
- ** ---------- .> results: disabled
- *** --- * --- .> concurrency: 1 (prefork)
-- ******* ----
--- ***** ----- [queues]
-------------- .> celery exchange=celery(direct) key=celery
[tasks]
(all my tasks listed here)
[2014-07-21 22:29:32,398: DEBUG/MainProcess] | Worker: Starting Hub
[2014-07-21 22:29:32,399: DEBUG/MainProcess] ^-- substep ok
[2014-07-21 22:29:32,399: DEBUG/MainProcess] | Worker: Starting Pool
[2014-07-21 22:29:32,418: DEBUG/MainProcess] ^-- substep ok
[2014-07-21 22:29:32,421: DEBUG/MainProcess] | Worker: Starting Consumer
[2014-07-21 22:29:32,422: DEBUG/MainProcess] | Consumer: Starting Connection
[2014-07-21 22:29:32,440: DEBUG/MainProcess] Start from server, version: 8.0, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2011 VMware, Inc.', u'capabilities': {}, u'platform': u'Erlang/OTP', u'version': u'2.6.0'}, mechanisms: [u'PLAIN', u'AMQPLAIN'], locales: [u'en_US']
[2014-07-21 22:29:32,443: DEBUG/MainProcess] Open OK! known_hosts []
[2014-07-21 22:29:32,445: INFO/MainProcess] Connected to amqplib://myproj:**@tethys:5672/myvhost
[2014-07-21 22:29:32,445: DEBUG/MainProcess] ^-- substep ok
[2014-07-21 22:29:32,445: DEBUG/MainProcess] | Consumer: Starting Events
[2014-07-21 22:29:32,448: DEBUG/MainProcess] Start from server, version: 8.0, properties: {u'information': u'Licensed under the MPL. See http://www.rabbitmq.com/', u'product': u'RabbitMQ', u'copyright': u'Copyright (C) 2007-2011 VMware, Inc.', u'capabilities': {}, u'platform': u'Erlang/OTP', u'version': u'2.6.0'}, mechanisms: [u'PLAIN', u'AMQPLAIN'], locales: [u'en_US']
[2014-07-21 22:29:32,449: DEBUG/MainProcess] Open OK! known_hosts []
[2014-07-21 22:29:32,450: DEBUG/MainProcess] using channel_id: 1
[2014-07-21 22:29:32,451: DEBUG/MainProcess] Channel open
[2014-07-21 22:29:32,452: DEBUG/MainProcess] ^-- substep ok
[2014-07-21 22:29:32,452: DEBUG/MainProcess] | Consumer: Starting Mingle
[2014-07-21 22:29:32,452: INFO/MainProcess] mingle: searching for neighbors
[2014-07-21 22:29:32,453: DEBUG/MainProcess] using channel_id: 1
[2014-07-21 22:29:32,454: DEBUG/MainProcess] Channel open
[2014-07-21 22:29:32,468: DEBUG/MainProcess] | Worker: Closing Hub...
[2014-07-21 22:29:32,468: DEBUG/MainProcess] | Worker: Closing Pool...
[2014-07-21 22:29:32,468: DEBUG/MainProcess] | Worker: Closing Consumer...
[2014-07-21 22:29:32,469: DEBUG/MainProcess] | Worker: Stopping Consumer...
[2014-07-21 22:29:32,469: DEBUG/MainProcess] | Worker: Stopping Pool...
[2014-07-21 22:29:33,473: DEBUG/MainProcess] | Worker: Stopping Hub...
[2014-07-21 22:29:33,474: DEBUG/MainProcess] | Consumer: Shutdown Heart...
[2014-07-21 22:29:33,475: DEBUG/MainProcess] | Consumer: Shutdown Gossip...
[2014-07-21 22:29:33,475: DEBUG/MainProcess] | Consumer: Shutdown Control...
[2014-07-21 22:29:33,475: DEBUG/MainProcess] | Consumer: Shutdown Tasks...
[2014-07-21 22:29:33,475: DEBUG/MainProcess] | Consumer: Shutdown Events...
[2014-07-21 22:29:33,476: DEBUG/MainProcess] Closed channel #1
[2014-07-21 22:29:33,477: DEBUG/MainProcess] | Consumer: Shutdown Connection...
[2014-07-21 22:29:33,478: DEBUG/MainProcess] Closed channel #1
[2014-07-21 22:29:33,480: DEBUG/MainProcess] removing tasks from inqueue until task handler finished
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment