sfphh4
sfphh4
not really a problem with the library I think. What version of MQTT are you using? You may want to examine https://mosquitto.org/man/mosquitto-conf-5.html, specifically max_packet_size
Well you are not the only one with this use case. We had a similar use case and we developed a mongoDB based backend to store the messages and delete...
here is the algo we have used 1. wrapper library publish function will simply insert the MQTTMessage object into a python Queue object, say Queue1 2. another thread (blocking at...
I dont think we should focus on this issue due to the sunset of Python 2 https://www.python.org/doc/sunset-python-2/ There is already an issue for dropping support: https://github.com/eclipse/paho.mqtt.python/issues/279
so you have 5000 instances of mqtt client? And all of them are running their own managed thread?
at the rate you are getting the messages, you should not be doing this. You should only be adding the messages to message_buffer. Dont even bother doing the msg.payload or...