I’ve seen Arduino forum threads and Raspberry Pi community projects where people push sensor updates via REST or MQTT, and even some discussions around bridging those streams into dashboards. In n8n, what nodes, triggers, or workflow designs work best for handling frequent small POST requests from multiple devices, while ensuring retries, rate‑limiting, and minimal latency?
hi,
I had a MQTT server in the past and it was good at handling data from various devices (iot or not, in my case it was arduinos over rs232 or nrf24)
in your case, or if it was mine today, i would have a MQTT server running alongside n8n so that you communicate with it for viewing, reporting, or send commands via n8n, and the MQTT server handle the high frequency traffic of your IOTs.