Kafka Producer Java API不会将消息分发到所有主题分区

时间:2016-06-14 14:22:15

标签: apache-kafka kafka-producer-api

我是Kafka的新手,今天我尝试创建Java Producer,以便在不同分区上的Kafka主题上生成消息。

首先,我创建了一个包raggieKafka,在其中我创建了两个类:TestProducerSimplePartitioner

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程序时,它将所有消息放入仅1个分区,即page_visits-0,其中所有消息都被发布,但是所有其他分区都保持为空。

有人可以告诉我为什么我的Java生产者不会将我的所有消息分发给其他分区吗?

事实上,我查看谷歌,然后又添加了一个属性:

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

但仍然生产者不会向所有主题发送消息。

请帮助。

1 个答案:

答案 0 :(得分:3)

您的SimplePartitioner代码在以下行中有错误

int offset = stringKey.indexOf(stringKey);

它始终返回0,因此您的偏移始终等于0,并且从不大于0,您的if块将不会被执行。最后它总是返回分区0

解决方案:由于您的密钥是IP地址,因此以下更改可能会按预期工作。

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

希望这有帮助!