|
|
|
|
|
import pika
|
|
import json
|
|
import time
|
|
import requests
|
|
|
|
from merge_topic import main
|
|
|
|
from config import get_config
|
|
|
|
config_params = get_config()
|
|
ConfigManager = config_params['ConfigManager']
|
|
|
|
def update_result(result, type='daily', meta = {}):
|
|
benchmark_children_id = -1
|
|
benchmark_id = -1
|
|
source_tagids = []
|
|
for id_cluster in result:
|
|
for doc in result[id_cluster][:1]:
|
|
source_tagids = doc.get('source_tagids',[])
|
|
for key in doc:
|
|
if "benchmark_child" in key:
|
|
benchmark_children_id = int(key.lstrip('benchmark_child_'))
|
|
if "benchmark" in key and 'child' not in key:
|
|
benchmark_id = int(key.lstrip('benchmark_'))
|
|
break
|
|
|
|
if not source_tagids:
|
|
source_tagids = []
|
|
if len(source_tagids) > 0:
|
|
benchmark_id = 0
|
|
benchmark_children_id = 0
|
|
|
|
output = {
|
|
"benchmark_id": benchmark_id,
|
|
"benchmark_children_id": benchmark_children_id,
|
|
"source_tagids": source_tagids,
|
|
"country_code": meta.get('country_code',''),
|
|
"type": type,
|
|
"data": json.dumps(result)
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
url = ConfigManager['ApiConnects']['api_save_clustering']['BaseUrl']
|
|
|
|
res = requests.post(url, json = output)
|
|
print(res.text)
|
|
print('Update result !!!!!!!!!')
|
|
|
|
def callback_func(ch, method, properties, body):
|
|
print("receive done: ")
|
|
starttime = time.time()
|
|
body = json.loads(body.decode("utf-8"))
|
|
|
|
req = body
|
|
type = req['type']
|
|
meta = req.get('meta', {})
|
|
res = main(req)
|
|
update_result(res, type, meta=meta)
|
|
print('Time process:', time.time() - starttime)
|
|
ch.basic_ack(delivery_tag=method.delivery_tag)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
params = ConfigManager['QueueConfigs']['queue_merge_clustering']
|
|
usr_name = params["UserName"]
|
|
password = str(params["Password"])
|
|
host = params["HostName"]
|
|
virtual_host = params["VirtualHost"]
|
|
queue_name = params["Queue"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while True:
|
|
try:
|
|
credentials = pika.PlainCredentials(usr_name, password)
|
|
connection = pika.BlockingConnection(
|
|
pika.ConnectionParameters(host=host, virtual_host=virtual_host, credentials=credentials, heartbeat=3600, blocked_connection_timeout=3600))
|
|
channel = connection.channel()
|
|
channel.queue_declare(queue=queue_name, durable=True, arguments={"x-max-priority": 10})
|
|
print(" * wait message")
|
|
channel.basic_qos(prefetch_count=1)
|
|
channel.basic_consume(queue=queue_name, on_message_callback=callback_func)
|
|
channel.start_consuming()
|
|
except Exception as ex:
|
|
print(f'[ERROR] ', ex)
|
|
|
|
|