当前位置:   article > 正文

Kafka默认topic最大长度(通过测试试出来的)_topic 一个分区消息最多可以添加到多大的数值

topic 一个分区消息最多可以添加到多大的数值

1 参考官网描述信息

Each sharded partition log is placed into its own folder under the Kafka log directory. The name of such folders consists of the topic name, appended by a dash (-) and the partition id. Since a typical folder name can not be over 255 characters long, there will be a limitation on the length of topic names. We assume the number of partitions will not ever be above 100,000. Therefore, topic names cannot be longer than 249 characters. This leaves just enough room in the folder name for a dash and a potentially 5 digit long partition id.
  • 1

每个分片的分区日志被放置到Kafka日志目录下自己的文件夹中。这些文件夹的名称由主题名(后面加一个破折号(-))和分区id组成。因为一个典型的文件夹名称不能超过255个字符,所以主题名称的长度会有限制。我们假设分区的数量永远不会超过100,000。因此,主题名称的长度不能超过249个字符。这就在文件夹名中留下了足够的空间,可以使用破折号和一个可能的5位长的分区id。

2 遇到问题

在这里插入图片描述
经过从10万到100之间的测试,发现最大支持250,超过则报错

3 消息限制大小 默认1M,可修改

在这里插入图片描述
参考:https://kafka.apache.org/documentation/#producerconfigs

修改步骤,下图为截图:
参考:https://my.oschina.net/objcoding/blog/3124509
在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号