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

51 lines
1.2 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
import os
2020-03-30 15:42:48 +02:00
import logging
2020-03-29 16:48:34 +02:00
2020-05-08 21:29:08 +02:00
from redis_super_storage import RedisSuperStorage
2020-05-08 22:05:49 +02:00
from communicators import ConsumerCommunicator, ProducerCommunicator
2020-05-08 21:29:08 +02:00
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-05-08 22:05:49 +02:00
def get_initial_ip_list():
ip_list = os.environ['INITIAL_SERVERS'].split(',')
logging.debug('Initial ip list' + ", ".join(ip_list))
return ip_list
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 22:05:49 +02:00
redis_storage = RedisSuperStorage(os.environ.get('REDIS_URL', "redis://localhost:6379/0"), 5)
consumer_communicator = ConsumerCommunicator(redis_storage)
producer_communicator = ProducerCommunicator(redis_storage)
2020-05-08 20:47:02 +02:00
2020-05-08 22:05:49 +02:00
for ip in get_initial_ip_list():
consumer_communicator.targeted_snyc(ip)
while True:
logging.debug("Doing a sync")
consumer_communicator.sync_all()
time.sleep(os.environ.get("RUN_INTERVAL", 30))
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