As mentioned in 20.07 node MQTT, I use [[20.11 MQTT Broker#^35b724|https://test.mosquitto.org]] as MQTT broker. But what if you want your own?
Luckily mosquitto has an answer for us there.
Info
If you have outgrown this public server and would like your own, you have a few options.
- A.Host your own broker - this is fairly straightforward to do and will run on any general purpose cloud instance or local server.
- B.Use a hosted service - Cedalo offers managed hosted Mosquitto instances.
- C.Use a supported on-premise broker - Cedalo will support your use of Mosquitto, offer consulting for building your system or developing features to your requirements, and have premium features available for Mosquitto.
A.Host your own broker
Aedes I couldn’t get to work.
Mosquitto self host installation
- go to https://mosquitto.org/download/
- select the right download, I use
mosquitto-2.0.18-install-windows-x64.exe
- execute the .exe
- folstallation proces
- press Win and type “services”
- select the sytem app called “services”
look for mosquitto- look for “mosquitto Broker”
- status should not be running, so we follow the following steps:
- press Win and type “cmd”
select the system app called “command prompt”- select the system app called “command prompt”, run it as an administrator
- navigate to the folder where ytou installed mosquitto, in my case
cd "C:\Program Files\mosquitto"
- type
net start mosquitto
- if the message is
The Mosquitto Broker service was started successfully.
we can continue with the next steps go back to the services app to double check if the “mosquitto Broker” is running- go back to the services app to double check if the “mosquitto Broker” is running (don’t forget to press the refresh button at the top left)
- go back to command prompt and verify if it is running by typing:
netstat -a
127.0.0.1:1883
is the MQTT borker default port- change the url from
mqtt://test.mosquitto.org
tomqtt://localhost
in the code Figured it out thanks to this Youtube video.
You would need to enable port forwarding to be able to connect to this from other networks.
limits
To test the broker, I was spamming it with node worker threads and listening to all the messages. At first I received all messages. But after spamming it with messages. My spammer made X worker threads, and then all these threads send X messages.
Conditions: I used a spammer.js which makes X worker threads who all send X messages, and used the topicfinder.js to see if I received em all, these are the results:
- At 111 workers and 1000 messages per worker I started getting data loss. But then when I scale back down to 101w x 1000m I still have data loss, which I didn’t have beforehand.
- At 70w and 1000m seems to be fine again.
- At 1001w and 10m it had a strain on my pc, but it did the job. But 570w sent 20m instead of 10m, atleast the scanner thought so.
Conditions: I created a program to spam MQTT, and write down once it receives the messages, what delay, how many it received, and how many it missed. It uses worker threads. It is expected to lose a bit faster then the above method because it has logic, memory for dates etc. The above method had way less logic.
50w + 500m + 0d
= everythingalways
arrives in6s
,5s
average.50w + 750m + 0d
= most of the time everything arrives7s
, but sometimes it loses hundreds.50w + 1000m + 10d
= everythingalways
arrives in13s
,12s
average.50w + 2000m + 10d
= everythingalways
arrives in24s
,23s
average.50w + 3000m + 10d
= everythingalways
arrives in34s
,33s
average.50w + 10000m + 10d
= everythingalways
arrives in104s
,103.5s
average.100w + 1000m + 10d
= not even 1 worker has all their messages received. They all space out at above800m
.100w + 1000m + 20d
= not even 1 worker has all their messages received. They all space out at above900m
.100w + 1000m + 25d
= everythingalways
arrives in34s
,32.5s
average.100w + 1000m + 21d
= everythingalways
arrives in28s
,27.5s
average.100w + 2000m + 21d
= everythingalways
arrives in50s
,49s
average.100w + 3000m + 21d
= everythingalways
arrives in71s
,70s
average.
What I am understanding from this is:
- If you have devices that are constantly sending data, it will be able to handle 50 messages at once, as long as the next 50 messages is 10ms away. Meaning it takes between 0 and 10ms to handle 50 messages, by sending faster, eventually the queue will run out.
- By taking these measurements I can calculate that you can send somewhere around
3125m/s
,4166m/s
,4807m/s
,4285m/s
,4,081m/s
,3636m/s
. Calculation:W * M / S = M/S
.
The bigger the message being sent, the bigger the chance of losing messages.
100w + 1000m + 25d
had a chance of losing messages when I was sending279
characters instead of20
characters. This means that all the above testing will have different results with more than20
characters. Same testing as before, but with ±max characters per message:50w + 500m + 0d
= everythingalways
arrives in7s
,6s
average.adds 1s
50w + 750m + 0d
= most of the time everything arrives7s
, but sometimes it loses hundreds.same result
50w + 1000m + 10d
=Error [ERR_WORKER_OUT_OF_MEMORY]: Worker terminated due to reaching memory limit: JS heap out of memory
OOPS. This is probably caused because of the artificial delay. Same testing as before, but with 35108863 characters instead of 67108863:50w + 500m + 0d
= sometimes6s
, but sometimes it loses ±1500m.50w + 750m + 0d
= most of the time everything arrives7s
, but sometimes it loses hundreds.same result
50w + 1000m + 10d
= slow, because it loses a lot of memory. Because everything is done on my laptop. Which means inaccurate testing.
I found the following (default) limits in the dosc:
max_queued_messages
= 1000message_size_limit
= 268435455 bytesmax_inflight_messages
= 20 (messages it can handle at the same time) This is all changeable.
EMQX self host installation
You need docker to install it on windows.
limits
The Github says it can handle 1M messages per second
B.Use a hosted service
hosts
these are the top results I found.
- cedalo.com hosts the mosquitto broker online. There is a free trial. They have different pricing tiers.
hiveMQI think it is still local hosting? I need to download a zip folder. I’ll try later. Cause it needs contact info etc.vimexxis normal webhosting, IDK why it came up as MQTT broker.- cloudMQTT I don’t see a free trial
- MyQttHub.com has max messages per month limit per plan.
- stackhero has free tier.
C.Use a supported on-premise broker
This is just A.Host your own broker but then cedalo.com helps us with the installation and optimisation etc. But we would still run it ourselves.
MQTT Broker list
- mosquitto is public & self host
- aedes is self host. - didn’t work.
- emqx is self hosted. Said to be the most scalable. You can also let others host it for you, said to be free (but I haven’t tested because I had to login using phone number)
Summary
I currently only have installed mosquitto.
mosquitto has a speed limit of something between 4000m/s
and 5000m/s
. This can change depending on message size. And I can’t fully test the real limits because when I try, my laptop memory will make the results inaccurate.
You can host it on the cloud, "for free"
with emqx, but I haven’t tried because it requires a phone number. If this works, they say they can handle 1M messages per second. You can also deploy emqx with docker, but I don’t know how docker works. So before I start doing that, I want to know if mosquitto is enough.