首页 > MQTT消息长度限制

MQTT消息长度限制

原文连接:

https://stackoverflow.com/questions/34522053/what-is-the-maximum-message-length-for-a-mqtt-broker

内容:

单条消息默认限制大小256MB,可以通过配置修改

It’s not entirely clear what you’re asking here, so I’ll answer both possibilities.

The length of the actual topic string is at most 65536 bytes. This is a limit imposed by the mqtt spec, you can’t change it. It is also worth noting that the topic is encoded with utf-8, so you may have less than 65536 characters available.

The payload of the message is limited to 268,435,456 bytes. Again, this is defined by the spec.

If you are routinely approaching either of these limits you should be thinking about whether what you are doing is sensible.

更多相关:

  • 转自:http://stackoverflow.com/questions/8377091/what-are-the-differences-between-cv-8u-and-cv-32f-and-what-should-i-worry-about CV_8U is unsigned 8bit/pixel - ie a pixel...