This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
consumer-scheduler/app.py

101 lines
2.7 KiB
Python
Raw Normal View History

2020-05-08 21:29:08 +02:00
#!/usr/bin/env python3
2020-03-29 16:48:34 +02:00
import sentry_sdk
2020-03-29 19:13:42 +02:00
import time
2020-03-29 19:26:52 +02:00
import requests
import requests.exceptions
2020-03-29 19:13:42 +02:00
import os
import json
2020-03-30 15:42:48 +02:00
import logging
2020-04-17 16:25:00 +02:00
import socket
2020-03-29 16:48:34 +02:00
2020-05-08 21:29:08 +02:00
from redis_super_storage import RedisSuperStorage
2020-03-29 16:48:34 +02:00
"""
2020-03-29 17:00:35 +02:00
Scheduler
2020-03-29 16:48:34 +02:00
"""
2020-03-29 17:16:41 +02:00
__author__ = "@kocsisr"
2020-03-29 16:48:34 +02:00
__copyright__ = "Copyright 2020, GoldenPogácsa Team"
__module_name__ = "app"
__version__text__ = "1"
2020-03-29 19:13:42 +02:00
sentry_sdk.init("https://0a106e104e114bc9a3fa47f9cb0db2f4@sentry.kmlabz.com/10")
2020-03-29 16:48:34 +02:00
2020-03-29 19:30:59 +02:00
2020-03-29 19:13:42 +02:00
2020-05-08 20:47:02 +02:00
class Scheduler:
2020-05-08 21:24:37 +02:00
def __init__(self):
pass
2020-03-29 19:13:42 +02:00
2020-05-08 20:47:02 +02:00
def request_first_sync(self, ip_list, consumer_list_redis):
temp_dict = {}
for ip in ip_list:
try:
# request synchronization
response = requests.post(f"http://{ip}/sync", json={'uuid': os.environ['LOCAL_UUID']}, timeout=5)
except (requests.exceptions.ConnectionError, requests.exceptions.Timeout) as e:
logging.error(f"Error while syncing to {ip}: {str(e)}")
continue
if response.status_code == 200:
temp_dict[response.json()['uuid']] = {'ip': ip}
consumer_list_redis.update(temp_dict)
self.r.set('consumer_list', json.dumps(consumer_list_redis).encode('utf-8'))
logging.debug('Update redis consumers ip list from first answers: Done')
2020-04-22 04:49:45 +02:00
2020-05-08 20:47:02 +02:00
def request_sync(self, consumer_list_redis):
2020-04-04 13:58:08 +02:00
2020-03-29 19:13:42 +02:00
2020-05-08 20:47:02 +02:00
def test_ip_change(self, host_name):
2020-04-22 01:35:29 +02:00
2020-05-08 20:47:02 +02:00
old_ip = self.r.get('current_ip')
2020-04-22 01:35:29 +02:00
2020-04-22 05:01:17 +02:00
if old_ip:
old_ip = old_ip.decode('utf-8')
2020-04-22 04:49:45 +02:00
2020-04-22 05:01:17 +02:00
current_ip = socket.gethostbyname(host_name)
if not old_ip: # Not set yet. I this case no update required
2020-05-08 20:47:02 +02:00
self.r.set('current_ip', current_ip.encode('utf-8'))
2020-04-22 04:49:45 +02:00
logging.debug(f"Previous info about the ip address could not be found! Current: {current_ip}")
2020-04-17 16:51:27 +02:00
2020-04-22 05:01:17 +02:00
elif old_ip != current_ip:
logging.info(f'IP changed: {old_ip} -> {current_ip} Pushing updates...')
2020-04-22 04:49:45 +02:00
# pushing updates...
2020-05-08 20:47:02 +02:00
keys = self.r.keys('producer_*')
2020-04-17 16:51:27 +02:00
logging.debug(f'Pushing update to the following producers: ' + ', '.join(k.decode('utf-8') for k in keys))
2020-04-17 16:25:51 +02:00
for key in keys:
2020-05-08 20:47:02 +02:00
ip = self.r.get(key)
2020-04-17 16:51:27 +02:00
if ip:
ip = ip.decode('utf-8')
else:
continue
2020-05-08 21:48:32 +02:00
2020-04-17 16:51:27 +02:00
else:
2020-04-22 04:49:45 +02:00
logging.debug(f'IP unchanged: {current_ip}')
2020-04-17 16:51:27 +02:00
2020-04-22 01:35:29 +02:00
logging.debug('Waiting for next turn')
time.sleep(os.environ.get("RUN_INTERVAL", 30))
2020-03-29 19:13:42 +02:00
2020-03-29 19:26:52 +02:00
2020-05-08 20:47:02 +02:00
def main():
# set logging preferences
logging.basicConfig(filename='', level=logging.DEBUG)
2020-05-08 21:24:37 +02:00
redis_storage = RedisSuperStorage(os.environ.get('REDIS_URL', "redis://localhost:6379/0"))
scheduler = Scheduler()
2020-05-08 20:47:02 +02:00
2020-03-29 19:26:52 +02:00
if __name__ == "__main__":
2020-03-29 19:31:43 +02:00
try:
2020-05-08 20:47:02 +02:00
2020-03-29 19:31:43 +02:00
main()
except KeyboardInterrupt:
pass