无法重置max.request.size

92vpleto  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(592)

在confluent-5.5.0中,我无法更改max.request.size,它在producerconfig中总是默认为max.request.size=1048576。
以下是我已经用noluck尝试过的参数:
合流-5.5.0/etc/kafka/producer.properties

max.request.size=15728640
  producer.max.request.size=15728640

合流-5.5.0/etc/kafka/server.properties

message.max.bytes=15728640
  replica.fetch.max.bytes=15728640
  max.request.size=15728640
  fetch.message.max.bytes=15728640

/数据/汇合-5.5.0/etc/kafka/consumer.properties

max.partition.fetch.bytes=15728640

合流-5.5.0/etc/kafka-rest/kafka-rest.properties

max.request.size=15728640

注意:connect.log中没有更新这些值
我已经停止/启动了confluent-5.5.0,甚至销毁了以前的映像并重新启动。
我错过什么了吗?
以下我也试过从评论中得到的信息:
/数据/confluent-5.5.0/etc/kafka/connect-standalone.properties
producer.override.max.request.size=15728640 consumer.override.max.partition.fetch.bytes=15728640
/data/confluent-5.5.0/etc/kafka/connect-distributed.properties文件
producer.override.max.request.size=15728640 consumer.override.max.partition.fetch.bytes=15728640
仍在最大请求中。大小未更改。
(已解决)基于输入:
我在connect或configuration中添加了上述配置。同时也将政策从“无”改为“全部”。正确应用了配置更改。

kt06eoxx

kt06eoxx1#

连接未使用这些文件。 server 仅适用于apache kafka代理 consumer|producer 是为了 kafka-console 公用事业 kafka-rest 仅适用于汇合rest代理
你需要使用 connect-distributed.properties 或者 connect-standalone.properties 请注意,还需要使用前缀正确设置属性

相关问题