X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_common%2Fmsgkafka.py;h=bc9147d415111ab3fa3f891dd16c565208d4b06c;hb=10602af49b01f0370761e913eacf485e77e4fde0;hp=63ee69c4db72c7a509ae7e305a42f6945385321c;hpb=05ede8f86c71ae21a331961b7795c0bd21ef09df;p=osm%2Fcommon.git diff --git a/osm_common/msgkafka.py b/osm_common/msgkafka.py index 63ee69c..bc9147d 100644 --- a/osm_common/msgkafka.py +++ b/osm_common/msgkafka.py @@ -105,26 +105,32 @@ class MsgKafka(MsgBase): finally: await self.producer.stop() - async def aioread(self, topic, loop=None, callback=None, aiocallback=None, **kwargs): + async def aioread(self, topic, loop=None, callback=None, aiocallback=None, group_id=None, **kwargs): """ Asyncio read from one or several topics. :param topic: can be str: single topic; or str list: several topics :param loop: asyncio loop. To be DEPRECATED! in near future!!! loop must be provided inside config at connect :param callback: synchronous callback function that will handle the message in kafka bus :param aiocallback: async callback function that will handle the message in kafka bus + :param group_id: kafka group_id to use. Can be False (set group_id to None), None (use general group_id provided + at connect inside config), or a group_id string :param kwargs: optional keyword arguments for callback function :return: If no callback defined, it returns (topic, key, message) """ if not loop: loop = self.loop + if group_id is False: + group_id = None + elif group_id is None: + group_id = self.group_id try: if isinstance(topic, (list, tuple)): topic_list = topic else: topic_list = (topic,) - self.consumer = AIOKafkaConsumer(loop=loop, bootstrap_servers=self.broker, group_id=self.group_id) + self.consumer = AIOKafkaConsumer(loop=loop, bootstrap_servers=self.broker, group_id=group_id) await self.consumer.start() self.consumer.subscribe(topic_list)