Compare commits
No commits in common. "8bd6dc270111db2fde83ee75255f734da1a3c710" and "ef1d60e3683674e93aa13f9d41798879d85c5ef7" have entirely different histories.
8bd6dc2701
...
ef1d60e368
@ -22,7 +22,6 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
- queues-development
|
- queues-development
|
||||||
- monitoring
|
|
||||||
environment:
|
environment:
|
||||||
STAGE: "development"
|
STAGE: "development"
|
||||||
command: mailbox
|
command: mailbox
|
||||||
@ -39,5 +38,3 @@ networks:
|
|||||||
external: true
|
external: true
|
||||||
queues-development:
|
queues-development:
|
||||||
external: true
|
external: true
|
||||||
monitoring:
|
|
||||||
external: true
|
|
||||||
|
@ -22,7 +22,6 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- configurator
|
- configurator
|
||||||
- queues
|
- queues
|
||||||
- monitoring
|
|
||||||
environment:
|
environment:
|
||||||
STAGE: "production"
|
STAGE: "production"
|
||||||
command: mailbox
|
command: mailbox
|
||||||
@ -39,5 +38,3 @@ networks:
|
|||||||
external: true
|
external: true
|
||||||
queues:
|
queues:
|
||||||
external: true
|
external: true
|
||||||
monitoring:
|
|
||||||
external: true
|
|
||||||
|
@ -5,6 +5,4 @@ COPY requirements.txt requirements.txt
|
|||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
COPY . .
|
COPY . .
|
||||||
ENV PYTHONUNBUFFERED 1
|
ENV PYTHONUNBUFFERED 1
|
||||||
RUN mkdir /usr/src/metrics
|
ENTRYPOINT ["python", "main.py"]
|
||||||
RUN chmod 777 run.sh
|
|
||||||
ENTRYPOINT ["./run.sh"]
|
|
||||||
|
@ -1,22 +0,0 @@
|
|||||||
import os
|
|
||||||
|
|
||||||
from requests import post
|
|
||||||
import json
|
|
||||||
|
|
||||||
from daemons import base
|
|
||||||
|
|
||||||
|
|
||||||
class Daemon(base.Daemon):
|
|
||||||
|
|
||||||
def execute(self):
|
|
||||||
while True:
|
|
||||||
for file in os.listdir('/usr/src/metrics'):
|
|
||||||
data = open(f'/usr/src/metrics/{file}', 'r').read()
|
|
||||||
payload = json.loads(data)
|
|
||||||
resp = post('http://monitoring:1237/api/v1/metrics/task', json=payload)
|
|
||||||
if resp.status_code == 202:
|
|
||||||
print("Metric ok")
|
|
||||||
else:
|
|
||||||
print(f'metric not ok: {resp.status_code}')
|
|
||||||
os.remove(f'/usr/src/metrics/{file}')
|
|
||||||
break
|
|
3
main.py
3
main.py
@ -11,9 +11,6 @@ if __name__ == '__main__':
|
|||||||
elif arg == 'mailbox':
|
elif arg == 'mailbox':
|
||||||
print("mailbox is starting")
|
print("mailbox is starting")
|
||||||
from daemons.mailbox import Daemon
|
from daemons.mailbox import Daemon
|
||||||
elif arg == 'metrics':
|
|
||||||
print("metrics is starting")
|
|
||||||
from daemons.metrics import Daemon
|
|
||||||
else:
|
else:
|
||||||
raise ValueError(f"Unknown param {arg}")
|
raise ValueError(f"Unknown param {arg}")
|
||||||
|
|
||||||
|
13
run.sh
13
run.sh
@ -1,13 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# Start the first process
|
|
||||||
python3 main.py $1 &
|
|
||||||
|
|
||||||
# Start the second process
|
|
||||||
python3 main.py metrics &
|
|
||||||
|
|
||||||
# Wait for any process to exit
|
|
||||||
wait -n
|
|
||||||
|
|
||||||
# Exit with status of process that exited first
|
|
||||||
exit $?
|
|
@ -1,8 +1,4 @@
|
|||||||
import datetime
|
|
||||||
import json
|
|
||||||
import os
|
import os
|
||||||
import uuid
|
|
||||||
import zoneinfo
|
|
||||||
import requests
|
import requests
|
||||||
import time
|
import time
|
||||||
|
|
||||||
@ -19,18 +15,6 @@ class QueuesException(Exception):
|
|||||||
|
|
||||||
|
|
||||||
class TasksHandlerMixin:
|
class TasksHandlerMixin:
|
||||||
def _send_metric(self, start: datetime.datetime, end: datetime.datetime, success: bool):
|
|
||||||
with open(f'/usr/src/{uuid.uuid4()}.json', 'w') as fp:
|
|
||||||
fp.write(json.dumps({
|
|
||||||
'service': 'botalka',
|
|
||||||
'queue': self.queue_name,
|
|
||||||
'success': success,
|
|
||||||
'timestamp': start.strftime("%Y-%m-%dT%H:%M:%S") + "Z",
|
|
||||||
"success": success,
|
|
||||||
"execution_time_ms": (end - start).microseconds // 1000,
|
|
||||||
"environment": stage,
|
|
||||||
}))
|
|
||||||
|
|
||||||
def poll(self):
|
def poll(self):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
@ -43,24 +27,17 @@ class TasksHandlerMixin:
|
|||||||
if not task:
|
if not task:
|
||||||
time.sleep(0.2)
|
time.sleep(0.2)
|
||||||
continue
|
continue
|
||||||
start = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
|
||||||
try:
|
try:
|
||||||
print(f'process task with id {task["id"]}, attempt {task["attempt"]}')
|
|
||||||
self.process(task['payload'])
|
self.process(task['payload'])
|
||||||
success = True
|
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
print(f'Error processing message id={task["id"]}, payload={task["payload"]}, exc={exc}')
|
||||||
success = False
|
continue
|
||||||
end = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
|
try:
|
||||||
if success:
|
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
||||||
try:
|
if resp.status_code != 202:
|
||||||
resp = requests.post(f'{QUEUES_URL}/api/v1/finish', json={'id': task['id']})
|
raise QueuesException
|
||||||
if resp.status_code != 202:
|
except:
|
||||||
raise QueuesException
|
print(f'Failed to finish task id={task["id"]}')
|
||||||
print(f'finish task with id {task["id"]}')
|
|
||||||
except:
|
|
||||||
print(f'Failed to finish task id={task["id"]}')
|
|
||||||
self._send_metric(start, end, success)
|
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def queue_name(self):
|
def queue_name(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user