【发布时间】:2019-01-16 23:16:31
【问题描述】:
我想从生产者向 Kafka 发送一条大消息,所以我更改了以下属性。
代理(server.properties)
replica.fetch.max.bytes=317344026
message.max.bytes=317344026
max.message.bytes=317344026
max.request.size=317344026
生产者(producer.properties)
max.request.size=3173440261
消费者(consumer.properties)
max.partition.fetch.bytes=327344026
fetch.message.max.bytes=317344026
当我使用 python Popen 和 kafta 的 cli 命令运行生产者时,仍然出现如下错误。
代码:
def producer(topic_name, content):
p = subprocess.Popen(['/opt/kafka/kafka_2.11-0.9.0.0/bin/kafka-console-producer.sh', '--broker-list', 'localhost:9092', '--topic', 'Hello-Kafka'], stdout=subprocess.PIPE, stdin=subprocess.PIPE)
p.stdin.write(content)
out, err = p.communicate()
print out
错误:
ERROR Error when sending message to topic Hello-Kafka with key: null, value: 1677562 bytes with error: The message is 1677588 bytes when serialized which is larger than the maximum request size you have configured with the max.request.size configuration. (org.apache.kafka.clients.producer.internals.ErrorLoggingCallback)
当我为 kafka 使用 python 模块时出现以下错误 (https://github.com/dpkp/kafka-python)
代码:
def producer(topic_name, content):
p = KafkaProducer(bootstrap_servers='localhost:9092')
a = p.send(topic_name, content).get()
print a
p.flush()
p.close()
错误:
kafka.errors.MessageSizeTooLargeError: [Error 10] MessageSizeTooLargeError: The message is 217344026 bytes when serialized which is larger than the maximum request size you have configured with the max_request_size configuration
我成功尝试过的一件事是将内容分成块,但如果有人有任何解决方案可以在不分割内容的情况下做到这一点。
【问题讨论】:
-
你用的是什么序列化?
-
Kafka 代理并非设计用于处理 300MB 的消息。除非您拥有大量可用内存并且是 Linux/Java 内存管理方面的专家,否则您会发现自己的性能很差。最好的策略是打破它。也就是说,在您的示例中,您没有将生产者属性文件传递给控制台生产者,因此您没有设置配置(至少按照书面规定)。
-
@AbhishekN,当我从文件中读取它时,我直接在字符串中发送它。
-
@dawsaw,“你没有将生产者属性文件传递给控制台生产者”是什么意思 - 我该怎么做?你能提供任何参考吗?
标签: python-2.7 apache-kafka max kafka-producer-api kafka-python