第二章 kafka生产者

1 console形式的消费者api

1.1,同步写入

bin/kafka-console-producer.sh --topic test1 --bootstrap-server localhost:9092

1.2,异步写入

bin/kafka-console-producer.sh --topic test1 --bootstrap-server localhost:9092 --sync         

1.3 其他特性   

顺序保证、重试、超时、压缩算法

➜ kafka_2.13-3.0.0 bin/kafka-console-producer.sh

#一个批次发送的消息数量

--batch-size <Integer: size>              Number of messages to send in a single batch if they are not being sent synchronously. (default: 200)

#链接的broker地址

--bootstrap-server <String: server to REQUIRED unless --broker-list connect to> (deprecated) is specified. The server (s) to connect to. The broker list string in the form HOST1:PORT1,HOST2: PORT2.

#链接的broker地址

--broker-list <String: broker-list> DEPRECATED, use --bootstrap-server instead; ignored if --bootstrap- server is specified. The broker list string in the form HOST1:PORT1, HOST2:PORT2.

#压缩算法

--compression-codec [String: The compression codec: either 'none', compression-codec] 'gzip', 'snappy', 'lz4', or 'zstd'. If specified without value, then it defaults to 'gzip' --help Print usage information.

--line-reader <String: reader_class> The class name of the class to use for reading lines from standard in. By default each line is read as a separate message. (default: kafka. tools. ConsoleProducer$LineMessageReader)


--max-block-ms <Long: max block on The max time that the producer will send> block for during a send request (default: 60000)

--max-memory-bytes <Long: total memory The total memory used by the producer in bytes> to buffer records waiting to be sent to the server. (default: 33554432)

--max-partition-memory-bytes <Long: The buffer size allocated for a memory in bytes per partition> partition. When records are received which are smaller than this size the producer will attempt to optimistically group them together until this size is reached. (default: 16384)

--message-send-max-retries <Integer> Brokers can fail receiving the message for multiple reasons, and being unavailable transiently is just one of them. This property specifies the number of retries before the producer give up and drop this message. (default: 3)

--metadata-expiry-ms <Long: metadata The period of time in milliseconds expiration interval> after which we force a refresh of metadata even if we haven't seen any leadership changes. (default: 300000)

--producer-property <String: A mechanism to pass user-defined producer_prop> properties in the form key=value to the producer.

--producer.config <String: config file> Producer config properties file. Note that [producer-property] takes precedence over this config.

--property <String: prop> A mechanism to pass user-defined properties in the form key=value to the message reader. This allows custom configuration for a user- defined message reader. Default properties include: parse.key=true|false key.separator=<key.separator> ignore.error=true|false

--request-required-acks <String: The required acks of the producer request required acks> requests (default: 1)

--request-timeout-ms <Integer: request The ack timeout of the producer timeout ms> requests. Value must be non-negative and non-zero (default: 1500)

--retry-backoff-ms <Integer> Before each retry, the producer refreshes the metadata of relevant topics. Since leader election takes a bit of time, this property specifies the amount of time that the producer waits before refreshing the metadata. (default: 100)

--socket-buffer-size <Integer: size> The size of the tcp RECV size. (default: 102400)

--sync If set message send requests to the brokers are synchronously, one at a time as they arrive.

--timeout <Integer: timeout_ms> If set and the producer is running in asynchronous mode, this gives the maximum amount of time a message will queue awaiting sufficient batch size. The value is given in ms. (default: 1000)

--topic <String: topic> REQUIRED: The topic id to produce messages to.

--version Display Kafka version.

2,golang的消费者client

```golang

package main

import "fmt"

import "github.com/Shopify/sarama"

func main() {

config :=sarama.NewConfig()

config.Producer.RequiredAcks =sarama.WaitForAll          //赋值为-1:这意味着producer在follower副本确认接收到数据后才算一次发送完成。

  config.Producer.Partitioner =sarama.NewRandomPartitioner //写到随机分区中,默认设置8个分区

  config.Producer.Return.Successes =true

  //生产者结构体

  msg := &sarama.ProducerMessage{}

msg.Topic =`nginx_log`

  msg.Value =sarama.StringEncoder("this is a good test")

client, err :=sarama.NewSyncProducer([]string{"47.92.71.173:9092"}, config)

if err !=nil {

fmt.Println("producer close err, ", err)

return

  }

defer client.Close()

pid, offset, err := client.SendMessage(msg)

if err !=nil {

fmt.Println("send message failed, ", err)

return

  }

fmt.Printf("分区ID:%v, offset:%v \n", pid, offset)

}

```

思考:

1,如何保证消息100%投递?

--生产者

--消费者

2,如何保证消息的顺序性?

kafka同一个分区可以保证顺序性,因此只需要将需要保证顺序性的消息放到同一个分区即可(要么只用一个分区,要么用hash分区)。

3,如何保证消息不重复?

消息是有可能重复的,但是我们要保证消费了重复的消息也不出问题,就是要保证消息的幂等性

4,如何单播、多播?

通过消费者组来实现。一个主题可以设置0或者多个消费者组,在同一个消费者组内,不同消费者消费的内容是互斥的。注意,同一个消费者组内的消费者个数不能大于分区数量,否则多余的消费者不会分配到分区将处于阻塞状态

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容