1

我在 Apchea Beam 中编写了一个非常简单的管道,如下所示从我在 Confluent Cloud 上的 kafka 集群中读取数据,如下所示:

        Pipeline pipeline = Pipeline.create(options);

        Map<String, Object> propertyBuilder = new HashMap();
        propertyBuilder.put("ssl.endpoint.identification.algorithm", "https");
        propertyBuilder.put("sasl.mechanism","PLAIN");
        propertyBuilder.put("request.timeout.ms","20000");
        propertyBuilder.put("retry.backoff.ms","500");

        pipeline
            .apply(KafkaIO.<byte[], byte[]>readBytes()
               .withBootstrapServers("pkc-epgnk.us-central1.gcp.confluent.cloud:9092")
               .withTopic("gcp-ingestion-1")  
               .withKeyDeserializer(ByteArrayDeserializer.class)
               .withValueDeserializer(ByteArrayDeserializer.class)
               .updateConsumerProperties(propertyBuilder)             
               .withoutMetadata() // PCollection<KV<Long, String>>
            ) .apply(Values.<byte[]>create());

但是,当运行上面的代码从我的 kafka 集群中读取数据时,我得到了以下异常

我在直接 java runner 上运行,我使用的是 beam 2.8,

我可以读取并向我的 kafka 融合集群生成消息,但不能通过上述代码。

4

1 回答 1

2

如果您按照堆栈跟踪,似乎代码尝试将超时配置属性转换为Integerhttps ://github.com/apache/beam/blob/2e759fecf63d62d110f29265f9438128e3bdc8ab/sdks/java/io/kafka/src/main/java/ org/apache/beam/sdk/io/kafka/KafkaUnboundedReader.java#L112

但相反,它得到一个字符串。我的猜测是,这是因为您在这里将其设置为字符串:propertyBuilder.put("request.timeout.ms","20000"). 我认为正确的做法是将其设置为Integer,例如喜欢propertyBuilder.put("request.timeout.ms", 20000)(超时值周围没有引号)。

您也可能对其他配置属性有类似的问题(例如重试退避),您需要仔细检查属性类型。

于 2018-12-27T18:30:56.720 回答