栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 前沿技术 > 大数据 > 大数据系统

Python测试Kafka集群是否可用

Python测试Kafka集群是否可用

from kafka import KafkaProducer, KafkaConsumer
import time
import json
topic = 'my-topic'

def test_consumer():
    consumer = KafkaConsumer(topic, group_id='test_id', enable_auto_commit=True, auto_commit_interval_ms=5000, bootstrap_servers=['xxxxx:30901', 'xxxx:30902', 'xxxx:30903'])
    for message in consumer:
        yield message


def get_data():
    message = test_consumer()
    for msg in message:
        try:
            msg_json = json.loads(msg.value.decode('utf-8'))
            key = msg.key.decode()
            print(msg_json)
        except Exception as e:
            print(e)

def test_producer():
    print('begin')
    n = time.time()
    producer = KafkaProducer(bootstrap_servers=['xxxxx:30901', 'xxxx:30902', 'xxxx:30903'])
    msg = {"send" : str(n)}
    parmas_message = json.dumps(msg)
    # producer.send(topic, parmas_message.encode('utf-8'))
    producer.send(topic, key=bytes("send", encoding='utf-8'), value=bytes(parmas_message, encoding='utf-8'))
    print ("send" + str(n))
    time.sleep(0.5)
    print('done')


if __name__ == '__main__':
    # test_producer()
    # test_consumer()
    get_data()

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/632830.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号