tukaeva_alfiya_lab_4 is ready #83
1
.idea/.name
Normal file
@ -0,0 +1 @@
|
||||
Consumer_1.py
|
12
.idea/inspectionProfiles/Project_Default.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
||||
<option name="ignoredIdentifiers">
|
||||
<list>
|
||||
<option value="str.__pos__" />
|
||||
</list>
|
||||
</option>
|
||||
</inspection_tool>
|
||||
</profile>
|
||||
</component>
|
3
tukaeva_alfiya_lab_4/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
@ -0,0 +1,13 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0">
|
||||
<option name="myName" value="Project Default" />
|
||||
<inspection_tool class="PyInterpreterInspection" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
||||
<option name="ignoredIdentifiers">
|
||||
<list>
|
||||
<option value="str.__pos__" />
|
||||
</list>
|
||||
</option>
|
||||
</inspection_tool>
|
||||
</profile>
|
||||
</component>
|
@ -0,0 +1,6 @@
|
||||
<component name="InspectionProjectProfileManager">
|
||||
<settings>
|
||||
<option name="USE_PROJECT_PROFILE" value="false" />
|
||||
<version value="1.0" />
|
||||
</settings>
|
||||
</component>
|
4
tukaeva_alfiya_lab_4/.idea/misc.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9 (tukaeva_alfiya_lab_4) (3)" project-jdk-type="Python SDK" />
|
||||
</project>
|
8
tukaeva_alfiya_lab_4/.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/tukaeva_alfiya_lab_4.iml" filepath="$PROJECT_DIR$/.idea/tukaeva_alfiya_lab_4.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
8
tukaeva_alfiya_lab_4/.idea/tukaeva_alfiya_lab_4.iml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="PYTHON_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
6
tukaeva_alfiya_lab_4/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||
</component>
|
||||
</project>
|
25
tukaeva_alfiya_lab_4/1_lesson/receive.py
Normal file
@ -0,0 +1,25 @@
|
||||
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)
|
11
tukaeva_alfiya_lab_4/1_lesson/send.py
Normal file
@ -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()
|
19
tukaeva_alfiya_lab_4/2_lesson/new_task.py
Normal file
@ -0,0 +1,19 @@
|
||||
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()
|
23
tukaeva_alfiya_lab_4/2_lesson/worker.py
Normal file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python
|
||||
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()
|
13
tukaeva_alfiya_lab_4/3_lesson/emit_log.py
Normal file
@ -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()
|
22
tukaeva_alfiya_lab_4/3_lesson/receive_logs.py
Normal file
@ -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()
|
26
tukaeva_alfiya_lab_4/Consumer_1.py
Normal file
@ -0,0 +1,26 @@
|
||||
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)
|
||||
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()
|
25
tukaeva_alfiya_lab_4/Consumer_2.py
Normal file
@ -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()
|
17
tukaeva_alfiya_lab_4/Publisher.py
Normal file
@ -0,0 +1,17 @@
|
||||
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(['SIGABRT', 'SIGALRM', 'SIGKILL', 'SIGSTOP', 'SIGTERM', 'SIGINT', 'SIGQUIT'])
|
||||
channel.basic_publish(exchange='logs', routing_key='', body=message)
|
||||
time.sleep(1)
|
||||
except KeyboardInterrupt:
|
||||
connection.close()
|
53
tukaeva_alfiya_lab_4/README.md
Normal file
@ -0,0 +1,53 @@
|
||||
# Лабораторная работа №4 - Работа с брокером сообщений
|
||||
|
||||
## Задание
|
||||
|
||||
|
||||
* Установить брокер сообщений RabbitMQ.
|
||||
* Пройти уроки 1, 2 и 3 из RabbitMQ Tutorials на любом языке программирования.
|
||||
* Продемонстрировать работу брокера сообщений.
|
||||
|
||||
## Работа программы:
|
||||
|
||||
Класс ```Publisher``` успешно осуществляет отправку сообщений своим клиентам.
|
||||
|
||||
Класс ```Consumer1``` осуществляет принятие и обработку сообщений с задержкой в 3 секунды, это можно заметить на видео.
|
||||
|
||||
Класс ```Consumer2``` мгновенно осуществляет принятие и обработку сообщений.
|
||||
|
||||
### Уроки
|
||||
|
||||
1. lesson_1
|
||||
|
||||
![](lesson_1.png "")
|
||||
|
||||
2. lesson_2
|
||||
|
||||
![](lesson_2.png "")
|
||||
|
||||
3. lesson_3
|
||||
|
||||
![](lesson_3.png "")
|
||||
|
||||
## Работа с RabbitMQ Management UI
|
||||
|
||||
![](rabbitmq.png "")
|
||||
|
||||
### Показания очереди queue_1 при одном запущенном экземпляре Consumer_1
|
||||
|
||||
![](queue_1_1.png "")
|
||||
|
||||
### Показания очереди queue_2
|
||||
|
||||
![](queue_2.png "")
|
||||
|
||||
### Показания очереди queue_1 при двух запущенных экземплярах Consumer_1
|
||||
|
||||
![](queue_1_2.png "")
|
||||
|
||||
### Показания очереди queue_1 при трех запущенных экземплярах Consumer_1
|
||||
|
||||
![](queue_1_3.png "")
|
||||
|
||||
# Видео
|
||||
https://vk.com/video230744264_456239106?list=ln-JCuDuG12swuj6vibPz
|
BIN
tukaeva_alfiya_lab_4/lesson_1.png
Normal file
After Width: | Height: | Size: 66 KiB |
BIN
tukaeva_alfiya_lab_4/lesson_2.png
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
tukaeva_alfiya_lab_4/lesson_3.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
tukaeva_alfiya_lab_4/queue_1_1.png
Normal file
After Width: | Height: | Size: 69 KiB |
BIN
tukaeva_alfiya_lab_4/queue_1_2.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
tukaeva_alfiya_lab_4/queue_1_3.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
tukaeva_alfiya_lab_4/queue_2.png
Normal file
After Width: | Height: | Size: 68 KiB |
BIN
tukaeva_alfiya_lab_4/rabbitmq.png
Normal file
After Width: | Height: | Size: 66 KiB |