Source code for my_application.repositories.KafkaToMongo
# Copyright 2020 Nedeljko Radulovic, Dihia Boulegane, Albert Bifet
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from repository import MongoRepository
import orjson
import json
from confluent_kafka import Consumer
import os
with open('/home/nedeljko/PycharmProjects/Competition_to_publish/SCALAR/provider/my_application/config.json') as \
json_data_file:
config = json.load(json_data_file)
try:
_MONGO_HOST = os.environ['MONGO_HOST']
except Exception:
_MONGO_HOST = config['MONGO_HOST']
[docs]class ConsumerToMongo:
"""
Kafka Consumer class for writing to MongoDB.
"""
consumer = None
mongo_repository = None
def __init__(self, kafka_server, topic, competition):
conf = {'bootstrap.servers': kafka_server, 'group.id': 'data',
'session.timeout.ms': competition.initial_training_time * 10000,
'auto.offset.reset': 'earliest'}
self.consumer = Consumer(conf)
self.consumer.subscribe([topic])
self.mongo_repository = MongoRepository(_MONGO_HOST)
# message must be in byte format
[docs] def write(self):
"""
Writes data to the MongoDB.
:return:
"""
db = self.mongo_repository.client['data']
data = db['data']
data.create_index([("competition_id", 1)], unique=True)
while True:
try:
msg = self.consumer.poll(timeout=0)
except Exception as e:
continue
if msg is not None:
message = orjson.loads(msg.value())
if message['type'] == "DATA":
# print('TODO : write to data collection')
competition_id = message['competition_id']
del message['competition_id']
del message['type']
del message['tag']
data.update({'competition_id': str(competition_id)}, {'$addToSet': {'dataset': message}})