diff --git a/klyushenkova_ksenia_lab_4/Consumer_1.py b/klyushenkova_ksenia_lab_4/Consumer_1.py new file mode 100644 index 0000000..3e1f1a0 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/Consumer_1.py @@ -0,0 +1,28 @@ +import random +import time +import pika + +queue_name = 'queue_1' +exchange = 'logs' + + +def callback(ch, method, properties, body): + print(f" [Consumer_1] - получено сообщение - {body.decode()}") + time.sleep(random.choice([2, 3])) + print(f" [Consumer_1] - сообщение обработано") + print() + ch.basic_ack(delivery_tag=method.delivery_tag) + + +if __name__ == '__main__': + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost')) + channel = connection.channel() + try: + # своя не анонимная очередь + channel.queue_declare(queue=queue_name) + # binding на exchange + channel.queue_bind(exchange=exchange, queue=queue_name) + channel.basic_consume(queue=queue_name, on_message_callback=callback) + channel.start_consuming() + except KeyboardInterrupt: + connection.close() diff --git a/klyushenkova_ksenia_lab_4/Consumer_2.py b/klyushenkova_ksenia_lab_4/Consumer_2.py new file mode 100644 index 0000000..533fac8 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/Consumer_2.py @@ -0,0 +1,25 @@ +import pika + +queue_name = 'queue_2' +exchange = 'logs' + + +def callback(ch, method, properties, body): + print(f" [Consumer_2] - получено сообщение - {body.decode()}") + print(f" [Consumer_2] - сообщение обработано") + print() + ch.basic_ack(delivery_tag=method.delivery_tag) + + +if __name__ == '__main__': + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost')) + channel = connection.channel() + try: + # своя не анонимная очередь + channel.queue_declare(queue=queue_name) + # binding на exchange + channel.queue_bind(exchange=exchange, queue=queue_name) + channel.basic_consume(queue=queue_name, on_message_callback=callback) + channel.start_consuming() + except KeyboardInterrupt: + connection.close() diff --git a/klyushenkova_ksenia_lab_4/Publisher.py b/klyushenkova_ksenia_lab_4/Publisher.py new file mode 100644 index 0000000..6add4a2 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/Publisher.py @@ -0,0 +1,18 @@ +import random +import time +import pika + +if __name__ == '__main__': + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost')) + channel = connection.channel() + channel.exchange_declare(exchange='logs', exchange_type='fanout') + + try: + while True: + message = random.choice(["Заказ принят", "Заказ в обработке", "Ожидаем курьера", "Курьер едет в ресторан", "Курьер в пути", "Курьер ожидает", "Заказ у Вас"]) + channel.basic_publish(exchange='logs', routing_key='', body=message) + time.sleep(1) + except KeyboardInterrupt: + connection.close() + + diff --git a/klyushenkova_ksenia_lab_4/README.md b/klyushenkova_ksenia_lab_4/README.md new file mode 100644 index 0000000..b5a0711 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/README.md @@ -0,0 +1,38 @@ +# Клюшенкова Ксения ПИбд-42 +# Лабораторная работа №4 - Работа с брокером сообщений + + +## Предметная область: +Статус заказа из доставки + +## Прохождение tutorial: + +- Прохождение первого урока: +![изображение 1](./images/t_1.jpg) + +- Прохождение второго урока: +![изображение 2](./images/t_2.jpg) + +- Прохождение третьего урока: +![изображение 3](./images/t_3.jpg) + + +## Данные из RabbitMQ Management UI: + +#### 1. Показания очереди queue_1 при одном запущенном экземпляре Consumer_1 +![изображение 1](./images/q_1_one_consumer_1.jpg) +#### 2. Показания очереди queue_2 +![изображение 2](./images/q_2.jpg) +#### 3. Показания очереди queue_1 при двух запущенных экземплярах Consumer_1 +![изображение 3](./images/q_1_two_consumer_1.jpg) +#### 4. Показания очереди queue_1 при трех запущенных экземплярах Consumer_1 +![изображение 4](./images/q_1_three_consumer_1.jpg) + +### Вывод: +Из скриншотов можно сделать вывод, что благодаря быстрой обработке сообщений в Consumer_2 очередь queue_2 никогда не заполняется. + +В то же время Consumer_1 обрабатывает сообщения в течение 2–3 секунд, из-за чего при одном запущенном экземпляре очередь queue_1 значительно заполняется. + +Если запустить несколько экземпляров Consumer_1, то очередь будет заполняться медленнее, а при оптимальном количестве запущенных экземпляров она вообще не будет заполняться. + +## [Видео](https://drive.google.com/file/d/1Yej0RWW61eDFHjn62OmfrMhRdMKcy8EU/view?usp=sharing) \ No newline at end of file diff --git a/klyushenkova_ksenia_lab_4/images/q_1_one_consumer_1.jpg b/klyushenkova_ksenia_lab_4/images/q_1_one_consumer_1.jpg new file mode 100644 index 0000000..2c912d8 Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/q_1_one_consumer_1.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/q_1_three_consumer_1.jpg b/klyushenkova_ksenia_lab_4/images/q_1_three_consumer_1.jpg new file mode 100644 index 0000000..f2fe816 Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/q_1_three_consumer_1.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/q_1_two_consumer_1.jpg b/klyushenkova_ksenia_lab_4/images/q_1_two_consumer_1.jpg new file mode 100644 index 0000000..85ea34a Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/q_1_two_consumer_1.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/q_2.jpg b/klyushenkova_ksenia_lab_4/images/q_2.jpg new file mode 100644 index 0000000..398c2da Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/q_2.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/t_1.jpg b/klyushenkova_ksenia_lab_4/images/t_1.jpg new file mode 100644 index 0000000..302a55c Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/t_1.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/t_2.jpg b/klyushenkova_ksenia_lab_4/images/t_2.jpg new file mode 100644 index 0000000..71156fa Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/t_2.jpg differ diff --git a/klyushenkova_ksenia_lab_4/images/t_3.jpg b/klyushenkova_ksenia_lab_4/images/t_3.jpg new file mode 100644 index 0000000..71156fa Binary files /dev/null and b/klyushenkova_ksenia_lab_4/images/t_3.jpg differ diff --git a/klyushenkova_ksenia_lab_4/t_1/receive.py b/klyushenkova_ksenia_lab_4/t_1/receive.py new file mode 100644 index 0000000..867b2cb --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_1/receive.py @@ -0,0 +1,27 @@ +import pika, sys, os + + +def main(): + connection = pika.BlockingConnection(pika.ConnectionParameters(host='localhost')) + channel = connection.channel() + + channel.queue_declare(queue='hello') + + def callback(ch, method, properties, body): + print(f" [x] Received {body}") + + channel.basic_consume(queue='hello', on_message_callback=callback, auto_ack=True) + + print(' [*] Waiting for messages. To exit press CTRL+C') + channel.start_consuming() + + +if __name__ == '__main__': + try: + main() + except KeyboardInterrupt: + print('Interrupted') + try: + sys.exit(0) + except SystemExit: + os._exit(0) diff --git a/klyushenkova_ksenia_lab_4/t_1/send.py b/klyushenkova_ksenia_lab_4/t_1/send.py new file mode 100644 index 0000000..41cfff2 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_1/send.py @@ -0,0 +1,11 @@ +import pika + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost')) +channel = connection.channel() + +channel.queue_declare(queue='hello') + +channel.basic_publish(exchange='', routing_key='hello', body='Hello World!') +print(" [x] Sent 'Hello World!'") +connection.close() \ No newline at end of file diff --git a/klyushenkova_ksenia_lab_4/t_2/new_task.py b/klyushenkova_ksenia_lab_4/t_2/new_task.py new file mode 100644 index 0000000..3503d55 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_2/new_task.py @@ -0,0 +1,20 @@ +import pika +import sys + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost')) +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=pika.DeliveryMode.Persistent + )) +print(f" [x] Sent {message}") +connection.close() + diff --git a/klyushenkova_ksenia_lab_4/t_2/worker.py b/klyushenkova_ksenia_lab_4/t_2/worker.py new file mode 100644 index 0000000..8f8ab64 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_2/worker.py @@ -0,0 +1,22 @@ +import pika +import time + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost')) +channel = connection.channel() + +channel.queue_declare(queue='task_queue', durable=True) +print(' [*] Waiting for messages. To exit press CTRL+C') + + +def callback(ch, method, properties, body): + print(f" [x] Received {body.decode()}") + time.sleep(body.count(b'.')) + print(" [x] Done") + ch.basic_ack(delivery_tag=method.delivery_tag) + + +channel.basic_qos(prefetch_count=1) +channel.basic_consume(queue='task_queue', on_message_callback=callback) + +channel.start_consuming() \ No newline at end of file diff --git a/klyushenkova_ksenia_lab_4/t_3/emit_log.py b/klyushenkova_ksenia_lab_4/t_3/emit_log.py new file mode 100644 index 0000000..45b6989 --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_3/emit_log.py @@ -0,0 +1,13 @@ +import pika +import sys + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost')) +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(f" [x] Sent {message}") +connection.close() \ No newline at end of file diff --git a/klyushenkova_ksenia_lab_4/t_3/receive_logs.py b/klyushenkova_ksenia_lab_4/t_3/receive_logs.py new file mode 100644 index 0000000..60d881d --- /dev/null +++ b/klyushenkova_ksenia_lab_4/t_3/receive_logs.py @@ -0,0 +1,22 @@ +import pika + +connection = pika.BlockingConnection( + pika.ConnectionParameters(host='localhost')) +channel = connection.channel() + +channel.exchange_declare(exchange='logs', exchange_type='fanout') + +result = channel.queue_declare(queue='', 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(f" [x] {body}") + +channel.basic_consume( + queue=queue_name, on_message_callback=callback, auto_ack=True) + +channel.start_consuming() \ No newline at end of file