Max 100 messages pubished #701
-
I use I have no idea why this happens. I tried to create a minimal reproduction with 500 loops (using I start the MQTT servers like so: const aedes = aedes.Server({queueLimit: 200})
const server = aedesServerFactory.createServer(aedes, {ws: true}) // ws
const server = net.createServer(aedes.handle) // mqtt
server.listen(port, () => console.log(`MQTT server started and listening on ${port}.`)) I also configure Could anyone give me a clue why it does not work? I am using |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Could this be caused because I publish a message every second (using Do I need to change some configuration to make it work like this? |
Beta Was this translation helpful? Give feedback.
-
I think this is sort of related to #666. For testing purposes, I subscribe to everything (using |
Beta Was this translation helpful? Give feedback.
-
When I set |
Beta Was this translation helpful? Give feedback.
Could this be caused because I publish a message every second (using
cron
) in every topic (currently, I have 60+ topics), therefore there are 60+ messages published every second.Do I need to change some configuration to make it work like this?