| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | |
| 3 | # This file is part of OSM Monitoring module |
| 4 | |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | # not use this file except in compliance with the License. You may obtain |
| 7 | # a copy of the License at |
| 8 | |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | # License for the specific language governing permissions and limitations |
| 15 | # under the License. |
| 16 | |
| 17 | import pymongo |
| 18 | import time |
| 19 | import socket |
| 20 | import logging |
| 21 | import kafka |
| palsus | 865c35c | 2021-04-16 07:36:15 +0000 | [diff] [blame] | 22 | |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 23 | |
| 24 | def wait_till_commondb_is_ready(config, process_name="osm-mon", commondb_wait_time=5): |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 25 | logging.debug("wait_till_commondb_is_ready") |
| 26 | |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 27 | while True: |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 28 | commondb_url = config.conf["database"].get("uri") |
| 29 | try: |
| 30 | commondb = pymongo.MongoClient(commondb_url) |
| 31 | commondb.server_info() |
| 32 | break |
| 33 | except Exception: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 34 | logging.info( |
| 35 | "{} process is waiting for commondb to come up...".format(process_name) |
| 36 | ) |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 37 | time.sleep(commondb_wait_time) |
| 38 | |
| 39 | |
| 40 | def wait_till_kafka_is_ready(config, process_name="osm-mon", kafka_wait_time=5): |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 41 | logging.debug("wait_till_kafka_is_ready") |
| 42 | |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 43 | while True: |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 44 | kafka_ready = False |
| 45 | try: |
| 46 | with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: |
| 47 | # Verify is kafka port is up |
| 48 | if ( |
| 49 | s.connect_ex( |
| 50 | ( |
| 51 | config.conf.get("message", {}).get("host", "kafka"), |
| 52 | int(config.conf["message"].get("port")), |
| 53 | ) |
| 54 | ) |
| 55 | == 0 |
| 56 | ): |
| 57 | # Get the list of topics. If kafka is not ready exception will be thrown. |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 58 | consumer = kafka.KafkaConsumer( |
| 59 | group_id=config.conf["message"].get("group_id"), |
| 60 | bootstrap_servers=[ |
| 61 | config.conf.get("message", {}).get("host", "kafka") |
| 62 | + ":" |
| 63 | + config.conf["message"].get("port") |
| 64 | ], |
| 65 | ) |
| palsus | 865c35c | 2021-04-16 07:36:15 +0000 | [diff] [blame] | 66 | all_topics = consumer.topics() |
| 67 | logging.debug("Number of topics found: %s", len(all_topics)) |
| palsus | a949ff9 | 2021-04-06 11:47:21 +0000 | [diff] [blame] | 68 | |
| 69 | # Send dummy message in kafka topics. If kafka is not ready exception will be thrown. |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 70 | producer = kafka.KafkaProducer( |
| 71 | bootstrap_servers=[ |
| 72 | config.conf.get("message", {}).get("host", "kafka") |
| 73 | + ":" |
| 74 | + config.conf["message"].get("port") |
| 75 | ] |
| 76 | ) |
| palsus | 865c35c | 2021-04-16 07:36:15 +0000 | [diff] [blame] | 77 | mon_topics = ["alarm_request", "users", "project"] |
| 78 | for mon_topic in mon_topics: |
| 79 | producer.send(mon_topic, key=b"echo", value=b"dummy message") |
| palsus | a949ff9 | 2021-04-06 11:47:21 +0000 | [diff] [blame] | 80 | |
| 81 | # Kafka is ready now |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 82 | kafka_ready = True |
| 83 | except Exception as e: |
| 84 | logging.info("Error when trying to get kafka status.") |
| 85 | logging.debug("Exception when trying to get kafka status: %s", str(e)) |
| 86 | finally: |
| 87 | if kafka_ready: |
| 88 | break |
| 89 | else: |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 90 | logging.info( |
| 91 | "{} process is waiting for kafka to come up...".format(process_name) |
| 92 | ) |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 93 | time.sleep(kafka_wait_time) |
| 94 | |
| 95 | |
| garciadeblas | 8e4179f | 2021-05-14 16:47:03 +0200 | [diff] [blame] | 96 | def wait_till_core_services_are_ready( |
| 97 | config, process_name="osm-mon", commondb_wait_time=5, kafka_wait_time=5 |
| 98 | ): |
| palsus | 0cf6b55 | 2021-04-01 07:49:20 +0000 | [diff] [blame] | 99 | logging.debug("wait_till_core_services_are_ready") |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 100 | |
| 101 | if not config: |
| 102 | logging.info("Config information is not available") |
| 103 | return False |
| 104 | |
| 105 | # Check if common-db is ready |
| palsus | 0cf6b55 | 2021-04-01 07:49:20 +0000 | [diff] [blame] | 106 | wait_till_commondb_is_ready(config, process_name, commondb_wait_time) |
| palsus | b170aec | 2021-03-30 07:15:02 +0000 | [diff] [blame] | 107 | |
| 108 | # Check if kafka is ready |
| 109 | wait_till_kafka_is_ready(config, process_name, kafka_wait_time) |
| 110 | |
| 111 | return True |