What is the maximum message length for a MQTT broker?
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 … Read more