我有一个简单的 JSON 对象,如下所示
d = { 'tag ': 'blah',
'name' : 'sam',
'score':
{'row1': 100,
'row2': 200
}
}
以下是我向 Kafka 发送消息的 python 代码
from kafka import SimpleProducer, KafkaClient
import json
# To send messages synchronously
kafka = KafkaClient('10.20.30.12:9092')
producer = SimpleProducer(kafka)
jd = json.dumps(d)
producer.send_messages(b'message1',jd)
我在风暴日志中看到正在接收消息,但它为元组 { json structure in here } 抛出 Transformation null 不确定需要做什么才能解决这个问题?..