如何使用avroproducer向主题添加数据

9o685dep  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(673)

我有一个主题与以下模式。有人能帮我把数据添加到不同的字段吗。

{
  "name": "Project",
  "type": "record",
  "namespace": "abcdefg",
  "fields": [   
    {
      "name": "Object",
      "type": {
        "name": "Object",
        "type": "record",
        "fields": [
          {
            "name": "Number_ID",
            "type": "int"
          },
          {
            "name": "Accept",
            "type": "boolean"
          }
        ]
      }
    },
    {
      "name": "DataStructureType",
      "type": "string"
    },
    {
      "name": "ProjectID",
      "type": "string"
    }
  ]
}

我尝试了以下代码。我得到列表不可编辑或列表超出范围。

from confluent_kafka import avro
from confluent_kafka.avro import AvroProducer

AvroProducerConf = {'bootstrap.servers': 'localhost:9092','schema.registry.url': 'http://localhost:8081'}
value_schema = avro.load('project.avsc')

avroProducer = AvroProducer(AvroProducerConf, default_value_schema = value_schema)

while True:
    avroProducer.produce(topic = 'my_topic', value = {['Object'][0] : "value", ['Object'] [1] : "true", ['DataStructureType'] : "testvalue", ['ProjectID'] : "123"})

    avroProducer.flush()
oaxa6hgo

oaxa6hgo1#

不清楚你期待这样的事情会发生什么。。。 ['Object'][0] dict的键不能是列表。
试着发送这个,它符合你的avro模式

value = {
    'Object': {
       "Number_ID", 1, 
       "Accept": true
    }, 
    'DataStructureType' : "testvalue", 
    'ProjectID' : "123"
}

相关问题