0

我正在通过 avro4s 使用 avro。这是我对消费者/生产者的配置

 def producerSettings(system: ActorSystem): ProducerSettings[String, Array[Byte]] = ProducerSettings(
    system,
    new StringSerializer,
    new ByteArraySerializer)
    .withBootstrapServers("localhost:9092")
    .withProperty("key.serializer", "io.confluent.kafka.serializers.KafkaAvroSerializer")
    .withProperty("value.serializer", "io.confluent.kafka.serializers.KafkaAvroSerializer")
    .withProperty("key.converter.schema.registry.url", "http://localhost:8081")
    .withProperty("value.converter.schema.registry.url", "http://localhost:8081")
    .withProperty("schema.registry.url", "http://localhost:8081")
    .withProperty("auto.create.topics.enable", "true")

  def consumerSettings(system: ActorSystem): ConsumerSettings[String, Array[Byte]] =
    ConsumerSettings(
      system,
      new StringDeserializer,
      new ByteArrayDeserializer)
      .withBootstrapServers("localhost:9092")
      .withProperty("key.deserializer", "io.confluent.kafka.serializers.KafkaAvroDeserializer")
      .withProperty("value.deserializer", "io.confluent.kafka.serializers.KafkaAvroDeserializer")
      .withProperty("key.converter.schema.registry.url", "http://localhost:8081")
      .withProperty("value.converter.schema.registry.url", "http://localhost:8081")
      .withProperty("schema.registry.url", "http://localhost:8081")
      .withGroupId("test")
      .withProperty(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest")

我怀疑寄存器是否被使用。当我的应用程序运行时,它在模式注册表日志中是静默的。

如何检查我的应用程序是否使用注册表?

如果不是 - 如何解决?

4

1 回答 1

1

您使用了错误的类,因此您的属性可能会出现错误

您实际上需要KafkaAvroSerializer在此处使用 Producer

new StringSerializer,
new ByteArraySerializer)

对于这里KafkaAvroDeserializer的消费者

new StringDeserializer,
new ByteArrayDeserializer)

并尝试更改String, Array[Byte]GenericRecord您从 Avro4s 制作的一些案例类

于 2018-07-16T17:10:14.963 回答