当前位置:   article > 正文

Kafka的配置文件详解及优化_kafka l调优配置

kafka l调优配置

Kafka 的配置文件详细描述

在 kafka/config / 目录下面有 3 个配置文件:

  • producer.properties
  • consumer.properties
  • server.properties

一、producer.properties: 生产端的配置文件

  1. #指定kafka节点列表,用于获取metadata,不必全部指定
  2. #需要kafka的服务器地址,来获取每一个topic的分片数等元数据信息。
  3. metadata.broker.list=kafka01:9092,kafka02:9092,kafka03:9092
  4. #生产者生产的消息被发送到哪个block,需要一个分组策略。
  5. #指定分区处理类。默认kafka.producer.DefaultPartitioner,表通过key哈希到对应分区
  6. #partitioner.class=kafka.producer.DefaultPartitioner
  7. #生产者生产的消息可以通过一定的压缩策略(或者说压缩算法)来压缩。消息被压缩后发送到broker集群,
  8. #而broker集群是不会进行解压缩的,broker集群只会把消息发送到消费者集群,然后由消费者来解压缩。
  9. #是否压缩,默认0表示不压缩,1表示用gzip压缩,2表示用snappy压缩。
  10. #压缩后消息中会有头来指明消息压缩类型,故在消费者端消息解压是透明的无需指定。
  11. #文本数据会以1比10或者更高的压缩比进行压缩。
  12. compression.codec=none
  13. #指定序列化处理类,消息在网络上传输就需要序列化,它有String、数组等许多种实现。
  14. serializer.class=kafka.serializer.DefaultEncoder
  15. #如果要压缩消息,这里指定哪些topic要压缩消息,默认empty,表示不压缩。
  16. #如果上面启用了压缩,那么这里就需要设置
  17. #compressed.topics=
  18. #这是消息的确认机制,默认值是0。在面试中常被问到。
  19. #producer有个ack参数,有三个值,分别代表:
  20. #(1)不在乎是否写入成功;
  21. #(2)写入leader成功;
  22. #(3)写入leader和所有副本都成功;
  23. #要求非常可靠的话可以牺牲性能设置成最后一种。
  24. #为了保证消息不丢失,至少要设置为1,也就
  25. #是说至少保证leader将消息保存成功。
  26. #设置发送数据是否需要服务端的反馈,有三个值0,1,-1,分别代表3种状态:
  27. #0: producer不会等待broker发送ack。生产者只要把消息发送给broker之后,就认为发送成功了,这是第1种情况;
  28. #1: 当leader接收到消息之后发送ack。生产者把消息发送到broker之后,并且消息被写入到本地文件,才认为发送成功,这是第二种情况;
  29. #-1: 当所有的follower都同步消息成功后发送ack。不仅是主的分区将消息保存成功了,
  30. #而且其所有的分区的副本数也都同步好了,才会被认为发动成功,这是第3种情况。
  31. request.required.acks=0
  32. #broker必须在该时间范围之内给出反馈,否则失败。
  33. #在向producer发送ack之前,broker允许等待的最大时间 ,如果超时,
  34. #broker将会向producer发送一个error ACK.意味着上一次消息因为某种原因
  35. #未能成功(比如follower未能同步成功)
  36. request.timeout.ms=10000
  37. #生产者将消息发送到broker,有两种方式,一种是同步,表示生产者发送一条,broker就接收一条;
  38. #还有一种是异步,表示生产者积累到一批的消息,装到一个池子里面缓存起来,再发送给broker,
  39. #这个池子不会无限缓存消息,在下面,它分别有一个时间限制(时间阈值)和一个数量限制(数量阈值)的参数供我们来设置。
  40. #一般我们会选择异步。
  41. #同步还是异步发送消息,默认“sync”表同步,"async"表异步。异步可以提高发送吞吐量,
  42. #也意味着消息将会在本地buffer中,并适时批量发送,但是也可能导致丢失未发送过去的消息
  43. producer.type=sync
  44. #在async模式下,当message被缓存的时间超过此值后,将会批量发送给broker,
  45. #默认为5000ms
  46. #此值和batch.num.messages协同工作.
  47. queue.buffering.max.ms = 5000
  48. #异步情况下,缓存中允许存放消息数量的大小。
  49. #在async模式下,producer端允许buffer的最大消息量
  50. #无论如何,producer都无法尽快的将消息发送给broker,从而导致消息在producer端大量沉积
  51. #此时,如果消息的条数达到阀值,将会导致producer端阻塞或者消息被抛弃,默认为10000条消息。
  52. queue.buffering.max.messages=20000
  53. #如果是异步,指定每次批量发送数据量,默认为200
  54. batch.num.messages=500
  55. #在生产端的缓冲池中,消息发送出去之后,在没有收到确认之前,该缓冲池中的消息是不能被删除的,
  56. #但是生产者一直在生产消息,这个时候缓冲池可能会被撑爆,所以这就需要有一个处理的策略。
  57. #有两种处理方式,一种是让生产者先别生产那么快,阻塞一下,等会再生产;另一种是将缓冲池中的消息清空。
  58. #当消息在producer端沉积的条数达到"queue.buffering.max.meesages"后阻塞一定时间后,
  59. #队列仍然没有enqueue(producer仍然没有发送出任何消息)
  60. #此时producer可以继续阻塞或者将消息抛弃,此timeout值用于控制"阻塞"的时间
  61. #-1: 不限制阻塞超时时间,让produce一直阻塞,这个时候消息就不会被抛弃
  62. #0: 立即清空队列,消息被抛弃
  63. queue.enqueue.timeout.ms=-1
  64. #当producer接收到error ACK,或者没有接收到ACK时,允许消息重发的次数
  65. #因为broker并没有完整的机制来避免消息重复,所以当网络异常时(比如ACK丢失)
  66. #有可能导致broker接收到重复的消息,默认值为3.
  67. message.send.max.retries=3
  68. #producer刷新topic metada的时间间隔,producer需要知道partition leader
  69. #的位置,以及当前topic的情况
  70. #因此producer需要一个机制来获取最新的metadata,当producer遇到特定错误时,
  71. #将会立即刷新
  72. #(比如topic失效,partition丢失,leader失效等),此外也可以通过此参数来配置
  73. #额外的刷新机制,默认值600000
  74. topic.metadata.refresh.interval.ms=60000

二、consumer.properties: 消费端的配置文件

  1. #消费者集群通过连接Zookeeper来找到broker。
  2. #zookeeper连接服务器地址
  3. zookeeper.connect=zk01:2181,zk02:2181,zk03:2181
  4. #zookeeper的session过期时间,默认5000ms,用于检测消费者是否挂掉
  5. zookeeper.session.timeout.ms=5000
  6. #当消费者挂掉,其他消费者要等该指定时间才能检查到并且触发重新负载均衡
  7. zookeeper.connection.timeout.ms=10000
  8. #这是一个时间阈值。
  9. #指定多久消费者更新offset到zookeeper中。
  10. #注意offset更新时基于time而不是每次获得的消息。
  11. #一旦在更新zookeeper发生异常并重启,将可能拿到已拿到过的消息
  12. zookeeper.sync.time.ms=2000
  13. #指定消费
  14. group.id=xxxxx
  15. #这是一个数量阈值,经测试是500条。
  16. #当consumer消费一定量的消息之后,将会自动向zookeeper提交offset信息#注意offset信息并不是每消费一次消息就向zk提交
  17. #一次,而是现在本地保存(内存),并定期提交,默认为true
  18. auto.commit.enable=true
  19. # 自动更新时间。默认60 * 1000
  20. auto.commit.interval.ms=1000
  21. # 当前consumer的标识,可以设定,也可以有系统生成,
  22. #主要用来跟踪消息消费情况,便于观察
  23. conusmer.id=xxx
  24. # 消费者客户端编号,用于区分不同客户端,默认客户端程序自动产生
  25. client.id=xxxx
  26. # 最大取多少块缓存到消费者(默认10)
  27. queued.max.message.chunks=50
  28. # 当有新的consumer加入到group时,将会reblance,此后将会
  29. #有partitions的消费端迁移到新 的consumer上,如果一个
  30. #consumer获得了某个partition的消费权限,那么它将会向zk
  31. #注册 "Partition Owner registry"节点信息,但是有可能
  32. #此时旧的consumer尚没有释放此节点, 此值用于控制,
  33. #注册节点的重试次数.
  34. rebalance.max.retries=5
  35. #每拉取一批消息的最大字节数
  36. #获取消息的最大尺寸,broker不会像consumer输出大于
  37. #此值的消息chunk 每次feth将得到多条消息,此值为总大小,
  38. #提升此值,将会消耗更多的consumer端内存
  39. fetch.min.bytes=6553600
  40. #当消息的尺寸不足时,server阻塞的时间,如果超时,
  41. #消息将立即发送给consumer
  42. #数据一批一批到达,如果每一批是10条消息,如果某一批还
  43. #不到10条,但是超时了,也会立即发送给consumer。
  44. fetch.wait.max.ms=5000
  45. socket.receive.buffer.bytes=655360
  46. # 如果zookeeper没有offset值或offset值超出范围。
  47. #那么就给个初始的offset。有smallest、largest、
  48. #anything可选,分别表示给当前最小的offset
  49. #当前最大的offset、抛异常。默认largest
  50. auto.offset.reset=smallest
  51. # 指定序列化处理类
  52. derializer.class=kafka.serializer.DefaultDecoder

三、server.properties: 服务端的配置文件

  1. #broker的全局唯一编号,不能重复
  2. broker.id=0
  3. #用来监听链接的端口,producer或consumer将在此端口建立连接
  4. port=9092
  5. #处理网络请求的线程数量,也就是接收消息的线程数。
  6. #接收线程会将接收到的消息放到内存中,然后再从内存中写入磁盘。
  7. num.network.threads=3
  8. #消息从内存中写入磁盘是时候使用的线程数量。
  9. #用来处理磁盘IO的线程数量
  10. num.io.threads=8
  11. #发送套接字的缓冲区大小
  12. socket.send.buffer.bytes=102400
  13. #接受套接字的缓冲区大小
  14. socket.receive.buffer.bytes=102400
  15. #请求套接字的缓冲区大小
  16. socket.request.max.bytes=104857600
  17. #kafka运行日志存放的路径
  18. log.dirs=/export/servers/logs/kafka
  19. #topic在当前broker上的分片个数
  20. num.partitions=2
  21. #我们知道segment文件默认会被保留7天的时间,超时的话就
  22. #会被清理,那么清理这件事情就需要有一些线程来做。这里就是
  23. #用来设置恢复和清理data下数据的线程数量
  24. num.recovery.threads.per.data.dir=1
  25. #segment文件保留的最长时间,默认保留7天(168小时),
  26. #超时将被删除,也就是说7天之前的数据将被清理掉。
  27. log.retention.hours=168
  28. #滚动生成新的segment文件的最大时间
  29. log.roll.hours=168
  30. #日志文件中每个segment的大小,默认为1G
  31. log.segment.bytes=1073741824
  32. #上面的参数设置了每一个segment文件的大小是1G,那么
  33. #就需要有一个东西去定期检查segment文件有没有达到1G,
  34. #多长时间去检查一次,就需要设置一个周期性检查文件大小
  35. #的时间(单位是毫秒)。
  36. log.retention.check.interval.ms=300000
  37. #日志清理是否打开
  38. log.cleaner.enable=true
  39. #broker需要使用zookeeper保存meta数据
  40. zookeeper.connect=zk01:2181,zk02:2181,zk03:2181
  41. #zookeeper链接超时时间
  42. zookeeper.connection.timeout.ms=6000
  43. #上面我们说过接收线程会将接收到的消息放到内存中,然后再从内存
  44. #写到磁盘上,那么什么时候将消息从内存中写入磁盘,就有一个
  45. #时间限制(时间阈值)和一个数量限制(数量阈值),这里设置的是
  46. #数量阈值,下一个参数设置的则是时间阈值。
  47. #partion buffer中,消息的条数达到阈值,将触发flush到磁盘。
  48. log.flush.interval.messages=10000
  49. #消息buffer的时间,达到阈值,将触发将消息从内存flush到磁盘,
  50. #单位是毫秒。
  51. log.flush.interval.ms=3000
  52. #删除topic需要server.properties中设置delete.topic.enable=true否则只是标记删除
  53. delete.topic.enable=true
  54. #此处的host.name为本机IP(重要),如果不改,则客户端会抛出:
  55. #Producer connection to localhost:9092 unsuccessful 错误!
  56. host.name=kafka01
  57. advertised.host.name=192.168.239.128

四、优化

4.1、kafka 的 Java heap space 配置

     Kafka :Java heap space 原先配置是 512M, 先改为 2G.

    消费的数据量过大时,很容易出现下面的问题。导致消费的数据发送不到本地 kafka。

4.2、 远程生产或者消费社区版 kafka 需要配置:0.9.0.0

listeners=PLAINTEXT://0.0.0.0:9092

默认的配置是 listeners=PLAINTEXT://localhost:9092,导致其他机器不能同 9092 端口,需要配置 0.0.0.0 去放通 9092 端口。

4.3、Kafka 集群优化设置的参数
num.network.threads=9 (CPU数+1)默认是3
num.io.threads=16 (CPU数2到3倍)默认是8
# 每当producer写入10000条消息时,刷数据到磁盘
log.flush.interval.messages=10000
# 每间隔1秒钟时间,刷数据到磁盘
log.flush.interval.ms=1000
#默认是16384,有点小
batch.size = 100000
#加快备份的复制速度
num.replica.fetchers=4

Linux 系统:

/etc/sysctl.conf

vm.swappiness = 1
vm.dirty_background_ratio = 5
vm.dirty_ratio = 60   # cat /proc/vmstat |grep nr_writeback
net.core.rmem_default = 256960
net.core.rmem_max = 513920
net.core.wmem_default = 256960
net.core.wmem_max = 513920
net.ipv4.tcp_mem = 131072  262144  524288
net.ipv4.tcp_rmem = 8760  256960  4088000
net.ipv4.tcp_wmem = 8760  256960  4088000

使用命令 "sysctl –p" 使之立即生效。

Java:

vim /root/.bash_profile

export KAFKA_JVM_PERFORMANCE_OPTS="-server -XX:+UseG1GC -XX:MaxGCPauseMillis=20 -XX:InitiatingHeapOccupancyPercent=35 -XX:+DisableExplicitGC -Djava.awt.headless=true"
source /root/.bash_profile

主要参考一下两篇文章:

Kafka集群调优 – 过往记忆

Linux之TCPIP内核参数优化 - 最初的幸福ever - 博客园

4.4、使用 Jconsole 监控 kafka

cdh  安装的 kafka 默认是开启 jmx 功能,配置的端口是 9393

使用 Java 自带的工具 JConsole 可以查看 kafka 相关性能参数

五、动态配置

  1. have no name!@kafka-0:/$ /opt/bitnami/kafka/bin/kafka-configs.sh --help
  2. This tool helps to manipulate and describe entity config for a topic, client, user, broker or ip
  3. Option Description
  4. ------ -----------
  5. --add-config <String> Key Value pairs of configs to add.
  6. Square brackets can be used to group
  7. values which contain commas: 'k1=v1,
  8. k2=[v1,v2,v2],k3=v3'. The following
  9. is a list of valid configurations:
  10. For entity-type 'topics':
  11. cleanup.policy
  12. compression.type
  13. delete.retention.ms
  14. file.delete.delay.ms
  15. flush.messages
  16. flush.ms
  17. follower.replication.throttled.
  18. replicas
  19. index.interval.bytes
  20. leader.replication.throttled.replicas
  21. local.retention.bytes
  22. local.retention.ms
  23. max.compaction.lag.ms
  24. max.message.bytes
  25. message.downconversion.enable
  26. message.format.version
  27. message.timestamp.difference.max.ms
  28. message.timestamp.type
  29. min.cleanable.dirty.ratio
  30. min.compaction.lag.ms
  31. min.insync.replicas
  32. preallocate
  33. remote.storage.enable
  34. retention.bytes
  35. retention.ms
  36. segment.bytes
  37. segment.index.bytes
  38. segment.jitter.ms
  39. segment.ms
  40. unclean.leader.election.enable
  41. For entity-type 'brokers':
  42. advertised.listeners
  43. background.threads
  44. compression.type
  45. follower.replication.throttled.rate
  46. leader.replication.throttled.rate
  47. listener.security.protocol.map
  48. listeners
  49. log.cleaner.backoff.ms
  50. log.cleaner.dedupe.buffer.size
  51. log.cleaner.delete.retention.ms
  52. log.cleaner.io.buffer.load.factor
  53. log.cleaner.io.buffer.size
  54. log.cleaner.io.max.bytes.per.second
  55. log.cleaner.max.compaction.lag.ms
  56. log.cleaner.min.cleanable.ratio
  57. log.cleaner.min.compaction.lag.ms
  58. log.cleaner.threads
  59. log.cleanup.policy
  60. log.flush.interval.messages
  61. log.flush.interval.ms
  62. log.index.interval.bytes
  63. log.index.size.max.bytes
  64. log.message.downconversion.enable
  65. log.message.timestamp.difference.max.
  66. ms
  67. log.message.timestamp.type
  68. log.preallocate
  69. log.retention.bytes
  70. log.retention.ms
  71. log.roll.jitter.ms
  72. log.roll.ms
  73. log.segment.bytes
  74. log.segment.delete.delay.ms
  75. max.connection.creation.rate
  76. max.connections
  77. max.connections.per.ip
  78. max.connections.per.ip.overrides
  79. message.max.bytes
  80. metric.reporters
  81. min.insync.replicas
  82. num.io.threads
  83. num.network.threads
  84. num.recovery.threads.per.data.dir
  85. num.replica.fetchers
  86. principal.builder.class
  87. replica.alter.log.dirs.io.max.bytes.
  88. per.second
  89. sasl.enabled.mechanisms
  90. sasl.jaas.config
  91. sasl.kerberos.kinit.cmd
  92. sasl.kerberos.min.time.before.relogin
  93. sasl.kerberos.principal.to.local.rules
  94. sasl.kerberos.service.name
  95. sasl.kerberos.ticket.renew.jitter
  96. sasl.kerberos.ticket.renew.window.
  97. factor
  98. sasl.login.refresh.buffer.seconds
  99. sasl.login.refresh.min.period.seconds
  100. sasl.login.refresh.window.factor
  101. sasl.login.refresh.window.jitter
  102. sasl.mechanism.inter.broker.protocol
  103. ssl.cipher.suites
  104. ssl.client.auth
  105. ssl.enabled.protocols
  106. ssl.endpoint.identification.algorithm
  107. ssl.engine.factory.class
  108. ssl.key.password
  109. ssl.keymanager.algorithm
  110. ssl.keystore.certificate.chain
  111. ssl.keystore.key
  112. ssl.keystore.location
  113. ssl.keystore.password
  114. ssl.keystore.type
  115. ssl.protocol
  116. ssl.provider
  117. ssl.secure.random.implementation
  118. ssl.trustmanager.algorithm
  119. ssl.truststore.certificates
  120. ssl.truststore.location
  121. ssl.truststore.password
  122. ssl.truststore.type
  123. unclean.leader.election.enable
  124. For entity-type 'users':
  125. SCRAM-SHA-256
  126. SCRAM-SHA-512
  127. consumer_byte_rate
  128. controller_mutation_rate
  129. producer_byte_rate
  130. request_percentage
  131. For entity-type 'clients':
  132. consumer_byte_rate
  133. controller_mutation_rate
  134. producer_byte_rate
  135. request_percentage
  136. For entity-type 'ips':
  137. connection_creation_rate
  138. Entity types 'users' and 'clients' may
  139. be specified together to update
  140. config for clients of a specific
  141. user.
  142. --add-config-file <String> Path to a properties file with configs
  143. to add. See add-config for a list of
  144. valid configurations.
  145. --all List all configs for the given topic,
  146. broker, or broker-logger entity
  147. (includes static configuration when
  148. the entity type is brokers)
  149. --alter Alter the configuration for the entity.
  150. --bootstrap-server <String: server to The Kafka server to connect to. This
  151. connect to> is required for describing and
  152. altering broker configs.
  153. --broker <String> The broker's ID.
  154. --broker-defaults The config defaults for all brokers.
  155. --broker-logger <String> The broker's ID for its logger config.
  156. --client <String> The client's ID.
  157. --client-defaults The config defaults for all clients.
  158. --command-config <String: command Property file containing configs to be
  159. config property file> passed to Admin Client. This is used
  160. only with --bootstrap-server option
  161. for describing and altering broker
  162. configs.
  163. --delete-config <String> config keys to remove 'k1,k2'
  164. --describe List configs for the given entity.
  165. --entity-default Default entity name for
  166. clients/users/brokers/ips (applies
  167. to corresponding entity type in
  168. command line)
  169. --entity-name <String> Name of entity (topic name/client
  170. id/user principal name/broker id/ip)
  171. --entity-type <String> Type of entity
  172. (topics/clients/users/brokers/broker-
  173. loggers/ips)
  174. --force Suppress console prompts
  175. --help Print usage information.
  176. --ip <String> The IP address.
  177. --ip-defaults The config defaults for all IPs.
  178. --topic <String> The topic's name.
  179. --user <String> The user's principal name.
  180. --user-defaults The config defaults for all users.
  181. --version Display Kafka version.
  182. --zk-tls-config-file <String: Identifies the file where ZooKeeper
  183. ZooKeeper TLS configuration> client TLS connectivity properties
  184. are defined. Any properties other
  185. than zookeeper.clientCnxnSocket,
  186. zookeeper.ssl.cipher.suites,
  187. zookeeper.ssl.client.enable,
  188. zookeeper.ssl.crl.enable, zookeeper.
  189. ssl.enabled.protocols, zookeeper.ssl.
  190. endpoint.identification.algorithm,
  191. zookeeper.ssl.keystore.location,
  192. zookeeper.ssl.keystore.password,
  193. zookeeper.ssl.keystore.type,
  194. zookeeper.ssl.ocsp.enable, zookeeper.
  195. ssl.protocol, zookeeper.ssl.
  196. truststore.location, zookeeper.ssl.
  197. truststore.password, zookeeper.ssl.
  198. truststore.type are ignored.
  199. --zookeeper <String: urls> DEPRECATED. The connection string for
  200. the zookeeper connection in the form
  201. host:port. Multiple URLS can be
  202. given to allow fail-over. Required
  203. when configuring SCRAM credentials
  204. for users or dynamic broker configs
  205. when the relevant broker(s) are
  206. down. Not allowed otherwise.
应用:修改每条消息字节限制

1、修改:topic

/opt/bitnami/kafka/bin/kafka-configs.sh --bootstrap-server localhost:9092 --alter --entity-type topics --entity-name myTopics  --add-config 'max.message.bytes=2097152'

查看:

/opt/bitnami/kafka/bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type topics --entity-name myTopics --describe

2、修改:broker( 有几个修改几个)

/opt/bitnami/kafka/bin/kafka-configs.sh --bootstrap-server localhost:9092 --alter --entity-type brokers --entity-name 0 --add-config 'message.max.bytes=2097152'

查看:

/opt/bitnami/kafka/bin/kafka-configs.sh --bootstrap-server localhost:9092 --entity-type brokers --entity-name 0 --describe

3、代码修改

properties.put(ConsumerConfig.MAX_PARTITION_FETCH_BYTES_CONFIG, "2097152"  );
properties.put(ProducerConfig.MAX_REQUEST_SIZE_CONFIG, "2097152"  );

 

或者修改配置文件

broker
# the maximum size of a request in bytes
#max.request.size=1048576
max.request.size=2097152

consumer 
#max.partition.fetch.bytes=1048576
max.partition.fetch.bytes=2097152

broker
#max.partition.fetch.bytes=1048576
#max.request.size=1048576
#message.max.bytes=1000012
max.partition.fetch.bytes=2097152
max.request.size=2097152
message.max.bytes=2097152

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/825349
推荐阅读
相关标签
  

闽ICP备14008679号