Kafka Connect BigQuery接收器连接器从架构注册表请求不存在的密钥使用者名称



这是一个后续问题:Kafka Connect BigQuery Sink Connector从Schema Registry 请求不正确的主题名称

在尝试对kafka(Avro(事件使用confluentic/kafka-connect-bigquery时,我遇到了以下错误:

org.apache.kafka.connect.errors.DataException: Failed to deserialize data for topic domain.rating.annotated to Avro: 
at io.confluent.connect.avro.AvroConverter.toConnectData(AvroConverter.java:125)
[...]
Caused by: org.apache.kafka.common.errors.SerializationException: Error retrieving Avro key schema version for id 619
Caused by: io.confluent.kafka.schemaregistry.client.rest.exceptions.RestClientException: Subject 'domain.rating.annotated-com.acme.message_schema.type.domain.key.DefaultKey' not found.; error code: 40401
at io.confluent.kafka.schemaregistry.client.rest.RestService.sendHttpRequest(RestService.java:295)
at io.confluent.kafka.schemaregistry.client.rest.RestService.httpRequest(RestService.java:355)
at io.confluent.kafka.schemaregistry.client.rest.RestService.lookUpSubjectVersion(RestService.java:440)
[...]

确实存在的主题是

curl --silent -X GET http://avro-schema-registry.core-kafka.svc.cluster.local:8081/subjects | jq .
[...]
"domain.rating.annotated-com.acme.message_schema.domain.rating.annotated.Key",
"domain.rating.annotated-com.acme.message_schema.domain.rating.annotated.RatingTranslated",
[...]

为什么它在寻找...DefaultKey,我该如何让它做正确的事情?

我的properties/standalone.properties(我使用的是快速启动文件夹(如下所示:

bootstrap.servers=kafka.core-kafka.svc.cluster.local:9092
key.converter=io.confluent.connect.avro.AvroConverter
key.converter.schema.registry.url=http://avro-schema-registry.core-kafka.svc.cluster.local:8081
value.converter=io.confluent.connect.avro.AvroConverter
value.converter.schema.registry.url=http://avro-schema-registry.core-kafka.svc.cluster.local:8081
internal.key.converter=org.apache.kafka.connect.json.JsonConverter
internal.value.converter=org.apache.kafka.connect.json.JsonConverter
internal.key.converter.schemas.enable=false
internal.value.converter.schemas.enable=false
offset.storage.file.filename=/tmp/connect.offsets
key.converter.key.subject.name.strategy=io.confluent.kafka.serializers.subject.TopicRecordNameStrategy
value.converter.value.subject.name.strategy=io.confluent.kafka.serializers.subject.TopicRecordNameStrategy

啊,我需要以下内容:

key.converter.key.subject.name.strategy=io.confluent.kafka.serializers.subject.RecordNameStrategy
value.converter.value.subject.name.strategy=io.confluent.kafka.serializers.subject.TopicRecordNameStrategy

有了这个,它就起作用了。:(

我真的很难浏览文档。很抱歉有多余的问题。

相关内容

最新更新