kafka_2.11-0.10.0.1生产者producer的Java实现
转载自:http://blog.csdn.net/qq_26479655/article/details/52555283
首先导入包
- 将kafka目录下的
libs中的jar包导入 - 用maven建立
- <dependency>
- <groupId>org.apache.kafka</groupId>
- <artifactId>kafka-clients</artifactId>
- <version>0.10.0.1</version>
- </dependency>
写好properties配置文件
一下为项目结构
- #kafka集群地址
- bootstrap.servers = 192.168.168.200:9092
- client.id = testProducer
- key.serializer = org.apache.kafka.common.serialization.IntegerSerializer
- value.serializer = org.apache.kafka.common.serialization.StringSerializer
然后上代码
- package kafka.producer;
- import java.io.IOException;
- import java.util.Properties;
- import java.util.concurrent.ExecutionException;
- import org.apache.kafka.clients.producer.Callback;
- import org.apache.kafka.clients.producer.KafkaProducer;
- import org.apache.kafka.clients.producer.ProducerRecord;
- import org.apache.kafka.clients.producer.RecordMetadata;
- public class ProducerTest extends Thread{
- private final KafkaProducer<Integer, String> producer;
- private final String topic;
- private final Boolean isAsync;
- /*isAsync同步、异步*/
- public ProducerTest(String topic, Boolean isAsync) {
- Properties properties = new Properties();
- /*加载配置文件*/
- try {
- properties.load(ProducerTest.class.getClassLoader().getResourceAsStream("conf/kafka.producer.properties"));
- } catch (IOException e) {
- e.printStackTrace();
- }
- producer = new KafkaProducer<>(properties);
- this.topic = topic;
- this.isAsync = isAsync;
- }
- public void run() {
- int messageNo = 1;
- while (true) {
- String messageStr = "Message_" + messageNo;
- long startTime = System.currentTimeMillis();
- if (isAsync) { // Send asynchronously
- producer.send(new ProducerRecord<>(topic,
- messageNo,
- messageStr), new DemoCallBack(startTime, messageNo, messageStr));
- } else { // Send synchronously
- try {
- producer.send(new ProducerRecord<>(topic,
- messageNo,
- messageStr)).get();
- System.out.println("Sent message: (" + messageNo + ", " + messageStr + ")");
- } catch (InterruptedException | ExecutionException e) {
- e.printStackTrace();
- }
- }
- ++messageNo;
- }
- }
- }
- class DemoCallBack implements Callback {
- private final long startTime;
- private final int key;
- private final String message;
- public DemoCallBack(long startTime, int key, String message) {
- this.startTime = startTime;
- this.key = key;
- this.message = message;
- }
- /**
- * @param metadata The metadata for the record that was sent (i.e. the partition and offset). Null if an error
- * occurred.
- * @param exception The exception thrown during processing of this record. Null if no error occurred.
- */
- public void onCompletion(RecordMetadata metadata, Exception exception) {
- long elapsedTime = System.currentTimeMillis() - startTime;
- if (metadata != null) {
- System.out.println(
- "message(" + key + ", " + message + ") sent to partition(" + metadata.partition() +
- "), " +
- "offset(" + metadata.offset() + ") in " + elapsedTime + " ms");
- } else {
- exception.printStackTrace();
- }
- }
- }
测试代码
- package kafka.producer;
- public class Main {
- public static void main(String[] args) {
- ProducerTest test = new ProducerTest("TestTopic", true);
- test.start();
- }
- }
运行结果
- message(51215, Message_51215) sent to partition(0), offset(161830) in 3497 ms
- message(51216, Message_51216) sent to partition(0), offset(161831) in 3497 ms
- message(51217, Message_51217) sent to partition(0), offset(161832) in 3497 ms
- message(51218, Message_51218) sent to partition(0), offset(161833) in 3497 ms
- message(51219, Message_51219) sent to partition(0), offset(161834) in 3497 ms
- message(51220, Message_51220) sent to partition(0), offset(161835) in 3497 ms
- message(51221, Message_51221) sent to partition(0), offset(161836) in 3497 ms
- message(51222, Message_51222) sent to partition(0), offset(161837) in 3497 ms
- message(51223, Message_51223) sent to partition(0), offset(161838) in 3497 ms
- message(51224, Message_51224) sent to partition(0), offset(161839) in 3497 ms
- message(51225, Message_51225) sent to partition(0), offset(161840) in 3497 ms
- message(51226, Message_51226) sent to partition(0), offset(161841) in 3497 ms
- message(51227, Message_51227) sent to partition(0), offset(161842) in 3497 ms
- message(51228, Message_51228) sent to partition(0), offset(161843) in 3497 ms
- .............
kafka_2.11-0.10.0.1生产者producer的Java实现的更多相关文章
- kafka 0.10.2 消息生产者(producer)
package cn.xiaojf.kafka.producer; import org.apache.kafka.clients.producer.*; import org.apache.kafk ...
- Kafka: Producer (0.10.0.0)
转自:http://www.cnblogs.com/f1194361820/p/6048429.html 通过前面的架构简述,知道了Producer是用来产生消息记录,并将消息以异步的方式发送给指定的 ...
- kafka0.9.0及0.10.0配置属性
问题导读1.borker包含哪些属性?2.Producer包含哪些属性?3.Consumer如何配置?borker(0.9.0及0.10.0)配置Kafka日志本身是由多个日志段组成(log segm ...
- kafka_2.11-0.8.2.1生产者producer的Java实现
转载自:http://blog.csdn.net/ch717828/article/details/50818261 1. 开启Kafka Consumer 首先选择集群的一台机器,打开kafka c ...
- Kafka版本升级 ( 0.10.0 -> 0.10.2 )
升级Kafka集群的版本其实很简单,核心步骤只需要4步,但是我们需要在升级的过程中确保每一步操作都不会“打扰”到producer和consumer的正常运转.为此,笔者在本机搭了一个测试环境进行实际的 ...
- Kafka 0.10.0
2.1 Producer API We encourage all new development to use the new Java producer. This client is produ ...
- kafka 0.8.2 消息生产者 producer
package com.hashleaf.kafka; import java.util.Properties; import kafka.javaapi.producer.Producer; imp ...
- hive 0.10 0.11新增特性综述
我们的hive版本升迁经历了0.7.1 -> 0.8.1 -> 0.9.0,并且线上shark所依赖的hive版本也停留在0.9.0上,在这些版本上有我们自己的bug fix patch和 ...
- kafka 0.10.2 消息生产者
package cn.xiaojf.kafka.producer; import org.apache.kafka.clients.producer.KafkaProducer; import org ...
随机推荐
- ubantu安装python3虚拟环境
Ubuntu安装python3虚拟环境 安装虚拟环境 步骤: 打开Linux终端(快捷键Ctrl+Alt+T),输入命令: sudo apt install python-virtualenv sud ...
- python 爬虫时间数据-时间格式转换
1 import time,datetime 2 3 time_original = '17/Sep/2012:11:40:00' 4 time_format = datetime.datetime. ...
- 2019-02-28-day001-python介绍
今日内容大纲: 01 cpu 内存 硬盘 操作系统 CPU:中央处理器,相当于人大脑.---------飞机 内存:临时存储数据. 8g,16g,-----------高铁 1,成本高. 2,断电即消 ...
- DHCP服务配置
DHCP(Dynamic Host Configuration Protocol)动态主机配置协议 -->是由Internet工作任务小组设计开发的,专用于对TCP/IP网络中的计算机自定分配T ...
- Centos7 Tomcat9随机启动
环境: Centos7.JDK 1.8.Tomcat9 安装好JDK跟Tomcat后在/usr/lib/systemd/system/目录下新建文件tomcat.service,内容如下,对应的位置替 ...
- HDU 2147 kiki's game(博弈经典题)
题目传送:http://acm.hdu.edu.cn/showproblem.php?pid=2147 Problem Description Recently kiki has nothing to ...
- 【转载】 火爆的996.ICU项目正在酝酿开源许可证 禁止996公司使用
原文地址: https://www.cnbeta.com/articles/tech/832449.htm ---------------------------------------------- ...
- ZOJ5833 Tournament(递归打表)
题目链接:传送门 假思路: 根据题意要求,只能按字典序最小的方法安排比赛. 所以第一场必定是1和2比,3和4比.... 选手:1 2 对手:2 1 根据要求如果1与2比过赛了,1再与其它的人(不妨设为 ...
- python开发day03
一.常见的数据类型 1. int ==> 整数. 主要⽤用来进⾏行行数学运算 \ (常见的操作有+-*%) a.bit_length() a= # 10进制 二进制 100 print(a.b ...
- 原生的js轮播图
图片会照常循环播放,当然也可以通过按钮来进行切换,当切出当前的页面时,等到你在回到当前页面时该轮播的图片还是停留在你之前所切出去的的那张图片的状态. HTML部分: <html> < ...