kafka producer java api没有将消息分发到所有主题分区

u4vypkhs  于 2021-06-07  发布在  Kafka
关注(0)|答案(1)|浏览(351)

我对kafka非常陌生,今天我尝试创建java producer,以便在不同分区上生成关于kafka主题的消息。
首先我创建了一个包 raggieKafka 我在其中创建了两个类: TestProducer 以及 SimplePartitioner .
testproducer类具有以下代码:

package raggieKafka;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
import kafka.javaapi.producer.Producer;
import kafka.producer.KeyedMessage;
import kafka.producer.ProducerConfig;

public class TestProducer{

    public static void main(String args[]) throws Exception
    {
        long events = 0;

        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        events = Integer.parseInt(reader.readLine());
        Random rnd = new Random();

        Properties props = new Properties();
        props.put("metadata.broker.list", "localhost:9092");
        props.put("topic.metadata.refresh.interval.ms", "1");
        props.put("serializer.class", "kafka.serializer.StringEncoder");
        props.put("partitioner.class", "raggieKafka.SimplePartitioner");
        props.put("request.required.acks", "1");

        ProducerConfig config = new ProducerConfig(props);
        Producer<String, String> prod = new Producer<String, String>(config);

        for(long i = 0; i < events; i++)
        {
            long runtime = new Date().getTime();
            String ip = "192.168.2." + rnd.nextInt(255);
            String msg = runtime + ",www.example.com, " + ip;
            KeyedMessage<String,String> data = new KeyedMessage<String, String>("page_visits", ip, msg);
            prod.send(data);
        }
        prod.close();
    }
}

simplepartitioner类具有以下代码:

package raggieKafka;

import kafka.producer.Partitioner;
import kafka.utils.VerifiableProperties;

public class SimplePartitioner implements Partitioner{

    public SimplePartitioner(VerifiableProperties props)
    {

    }

    public int partition(Object Key, int a_numPartitions)
    {
        int partition = 0;
        String stringKey = (String) Key;
        int offset = stringKey.indexOf(stringKey);

        if(offset > 0)
        {
            partition = Integer.parseInt(stringKey.substring(offset+1)) % a_numPartitions;
        }
        return partition;
    }   
}

在编译这些java程序之前,我在kafka broker上创建了一个主题:

C:\kafka_2.11-0.9.0.1>.\bin\windows\kafka-topics.bat --create --topic page_visit
s --zookeeper localhost:2181 --partitions 5 --replication-factor 1
WARNING: Due to limitations in metric names, topics with a period ('.') or under
score ('_') could collide. To avoid issues it is best to use either, but not bot
h.
Created topic "page_visits".

现在,当我编译java程序时,它只将所有消息放在一个分区上,即pageu-0,所有消息都在这个分区下发布,而其余所有分区都保持为空。
有人能告诉我为什么我的java生产者没有将我所有的消息分发给其他分区吗?
事实上,我查看了谷歌,然后又添加了一个属性:

props.put("topic.metadata.refresh.interval.ms", "1");

但制作人并不是对所有的主题都提供消息。
请帮忙。

rryofs0p

rryofs0p1#

您的simplepartitioner代码在下面一行中有bug

int offset = stringKey.indexOf(stringKey);

它总是回来 0 所以你的偏移量总是等于 0 因为它永远不会大于0,所以不会执行if块。最后它总是返回给你 0 .
解决方案:由于您的密钥是ip地址,下面的更改可以按预期工作。

int offset = stringKey.lastIndexOf('.');

希望这有帮助!

相关问题