Last active
March 7, 2019 11:18
-
-
Save samsee/03accb8dcc127cf9da7e4666a0da413a to your computer and use it in GitHub Desktop.
RabbitMQ Tutorial Codes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| import sys | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='logs', | |
| exchange_type='fanout') | |
| message = ' '.join(sys.argv[1:]) or "info: Hello World!" | |
| channel.basic_publish(exchange='logs', | |
| routing_key='', | |
| body=message) | |
| print(" [x] Sent %r" % message) | |
| connection.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| import sys | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='direct_logs', | |
| exchange_type='direct') | |
| severity = sys.argv[1] if len(sys.argv) > 1 else 'info' | |
| message = ' '.join(sys.argv[2:]) or 'Hello World!' | |
| channel.basic_publish(exchange='direct_logs', | |
| routing_key=severity, | |
| body=message) | |
| print(" [x] Sent %r:%r" % (severity, message)) | |
| connection.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| import sys | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='topic_logs', | |
| exchange_type='topic') | |
| routing_key = sys.argv[1] if len(sys.argv) > 2 else 'anonymous.info' | |
| message = ' '.join(sys.argv[2:]) or 'Hello World!' | |
| channel.basic_publish(exchange='topic_logs', | |
| routing_key=routing_key, | |
| body=message) | |
| print(" [x] Sent %r:%r" % (routing_key, message)) | |
| connection.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import pika | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(IP)) | |
| channel = connection.channel() | |
| channel.queue_declare(queue='task_queue', durable=True) | |
| message = ' '.join(sys.argv[1:]) or "Hello World!" | |
| channel.basic_publish(exchange='', | |
| routing_key='task_queue', | |
| body=message, | |
| properties=pika.BasicProperties( | |
| delivery_mode=2, # make message persistent | |
| )) | |
| print(" [x] Sent %r" % message) | |
| connection.close() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='logs', | |
| exchange_type='fanout') | |
| result = channel.queue_declare(exclusive=True) | |
| queue_name = result.method.queue | |
| channel.queue_bind(exchange='logs', | |
| queue=queue_name) | |
| print(' [*] Waiting for logs. To exit press CTRL+C') | |
| def callback(ch, method, properties, body): | |
| print(" [x] %r" % body) | |
| channel.basic_consume(callback, | |
| queue=queue_name, | |
| no_ack=True) | |
| channel.start_consuming() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| import sys | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='direct_logs', | |
| exchange_type='direct') | |
| result = channel.queue_declare(exclusive=True) | |
| queue_name = result.method.queue | |
| severities = sys.argv[1:] | |
| if not severities: | |
| sys.stderr.write("Usage: %s [info] [warning] [error]\n" % sys.argv[0]) | |
| sys.exit(1) | |
| for severity in severities: | |
| channel.queue_bind(exchange='direct_logs', | |
| queue=queue_name, | |
| routing_key=severity) | |
| print(' [*] Waiting for logs. To exit press CTRL+C') | |
| def callback(ch, method, properties, body): | |
| print(" [x] %r:%r" % (method.routing_key, body)) | |
| channel.basic_consume(callback, | |
| queue=queue_name, | |
| no_ack=True) | |
| channel.start_consuming() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pika | |
| import sys | |
| IP = __YOUR_RABBITMQ_IP__ | |
| connection = pika.BlockingConnection(pika.ConnectionParameters(host=IP)) | |
| channel = connection.channel() | |
| channel.exchange_declare(exchange='topic_logs', | |
| exchange_type='topic') | |
| result = channel.queue_declare(exclusive=True) | |
| queue_name = result.method.queue | |
| binding_keys = sys.argv[1:] | |
| if not binding_keys: | |
| sys.stderr.write("Usage: %s [binding_key]...\n" % sys.argv[0]) | |
| sys.exit(1) | |
| for binding_key in binding_keys: | |
| channel.queue_bind(exchange='topic_logs', | |
| queue=queue_name, | |
| routing_key=binding_key) | |
| print(' [*] Waiting for logs. To exit press CTRL+C') | |
| def callback(ch, method, properties, body): | |
| print(" [x] %r:%r" % (method.routing_key, body)) | |
| channel.basic_consume(callback, | |
| queue=queue_name, | |
| no_ack=True) | |
| channel.start_consuming() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment