如果我的生产者生产,那为什么消费者不能消费?它卡住了@ poll() [英] If my producer producing, then why the consumer couldn't consume? it stuck @ poll()

查看:28
本文介绍了如果我的生产者生产,那为什么消费者不能消费?它卡住了@ poll()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在发布到远程 kafka 服务器并尝试使用来自该远程服务器的消息.(卡夫卡 v 0.90.1)发布工作正常,但消费也不行.

Im publishing to the remote kafka server and try to consume messages from that remote server. (Kafka v 0.90.1) Publishing works fine but nor the consuming.

出版商

package org.test;

import java.io.IOException;
import java.util.Properties;

import org.apache.kafka.clients.producer.KafkaProducer;
import org.apache.kafka.clients.producer.ProducerRecord;


public class Producer {

    private void generateMessgaes() throws IOException {
        String topic = "MY_TOPIC";

        Properties props = new Properties();

        props.put("bootstrap.servers", "kafka.xx.com:9092");
        props.put("acks", "all");
        props.put("retries", 0);
        props.put("batch.size", 16384);
        props.put("linger.ms", 1);
        props.put("buffer.memory", 33554432);
        props.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
        props.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");
        props.put("serializer.class", "org.apache.kafka.common.serialization.StringSerializer");


        KafkaProducer<String, String> producer = null;
        try {
             producer = new KafkaProducer<>(props);
            for (int i = 0; i < 10; i++) {
                producer.send(new ProducerRecord<String, String>(topic, "test msg"));
                System.out.println("producing---");
            }

        } catch (Throwable e) {
            e.printStackTrace();
            System.out.println("Error in publishing messages to the topic : " + topic);

        } finally {
            producer.close();
        }
    }

    public static void main(String[] args) throws IOException {
        Producer producer = new Producer();
        producer.generateMessgaes();
        System.out.println("$$$$$");
    }
}

我可以看到生产---和$$$$"打印.但是当我尝试消费时,我看不到轮询"打印消息..它在轮询(超时)时卡住了.

I can see "producing--- and $$$$ prints. But when i try to consume, i do not see "polling " print messages.. It got stuck at poll(timeout).

有什么线索吗?

消费者

package org.test;

import java.util.Arrays;
import java.util.List;
import java.util.Properties;
import org.apache.kafka.clients.consumer.ConsumerRecord;
import org.apache.kafka.clients.consumer.ConsumerRecords;
import org.apache.kafka.clients.consumer.KafkaConsumer;


public class Listener {

    public void start() throws CoreException {

        String topic = "MY_TOPIC";

        List<String> topics = Arrays.asList(topic);

        Properties props = new Properties();
        props.put("bootstrap.servers", "kafka.xx.com:9092");
        props.put("enable.auto.commit", true);
        props.put("receive.buffer.bytes", 262144);
        props.put("consumer.timeout.ms", 10000);
        props.put("session.timeout.ms", 7000);
        props.put("heartbeat.interval.ms", 1000);
        props.put("auto.offset.reset", "earliest");
        props.put("group.id", "test");
        props.put("fetch.min.bytes", 1);
        props.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");

        props.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");
        props.put("serializer.class", "org.apache.kafka.common.serialization.StringDeserializer");
        KafkaConsumer<String, String> consumer = new KafkaConsumer<String, String>(props);
        consumer.subscribe(topics);

        try {
            while (true) {

                ConsumerRecords<String, String> records = consumer.poll(100);
                System.out.println("polling msges : " + records.count());
                for (ConsumerRecord<String, String> record : records) {
    System.out.println("kafka record : " + record.value());
                }
            }
        } catch (Throwable e) {
            e.printStackTrace();
            System.out.println("eror in polling");
        } finally {
            consumer.close();
        }
    }

    public static void main(String args[]) throws CoreException {

        Listener listener = new Listener();
        listener.start();

    }
}

推荐答案

免责声明:我不知道 Kafka,但我知道消息传递.

Disclaimer: I don't know Kafka but I do know messaging.

关于主题的第一件事:默认情况下,订阅不是持久的,因此如果生产者向主题发送消息并且没有人在听,则消息将被丢弃.

First thing about topics: by default, subscriptions are not persistent, so if a producers sends messages to the topic and there's no one listening, the messages are dropped.

第二件事是轮询:你轮询了 100 毫秒,然后如果什么都没有,就会抛出一个异常,让你退出循环.

Second thing is the polling: you're polling for 100ms and then if there's nothing there an exception is thrown, dropping you out of the loop.

如果消费者启动时没有消息——因为,正如我所描述的,生产者的消息进入了比特桶——然后消费者失败了,因为没有什么可消费的.所以我想说一切都如你所料.

If there's no messages when the consumer starts - because, as I described, the producer's messages went to the bit bucket - and then the consumer failed because there was nothing to consume. So I would say everything is working as you should expect.

两个选项:- 添加更大的初始轮询,让消费者有机会看到消息(假设您知道生产者将在时间范围内生产)- 改变你的逻辑,让异常导致你停留在 while 循环中并继续消费,并想出一种不同的方式来阻止消费者.

Two options: -add a much larger initial polling to give the consumer a chance to see a message (assuming you know the producer is going to produce in the time frame) -change your logic such that an exception causes you to stay in the while loop and continue to consume, and figure out a different way to stop the consumer.

这篇关于如果我的生产者生产,那为什么消费者不能消费?它卡住了@ poll()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆