skip to Main Content

I’m building a Web Application that consumes data pushed from Server.

Each message is JSON and could be large, hundreds of kilobytes, and messages send couple times per minute, and the order doesn’t matter.

The Server should be able to persist not yet delivered messages, potentially storing couple of megabytes for client for couple of days, until client won’t get online. There’s a limit on the storage size for unsent messages, say 20mb per client, and old undelivered messages get deleted when this limit is exceeded.

Server should be able to handle around 1 thousand simultaneous connections. How it could be implemented simply?

Possible Solutions

I was thinking maybe store messages as files on disk and use Browser Pool for 1 sec, to check for new messages and serve it with NGinx or something like that? Is there some configs / modules for NGinx for such use cases?

Or maybe it’s better to use MQTT Server or some Message Queue like Rabbit MQ with some Browser Adapter?

2

Answers


  1. MQTT is most likely not what you are looking for. The protocol is meant to be lightweight and as the comments pointed out, the protocol specifies that there may only exist "Control Packets of size up to 268,435,455 (256 MB)" source. Clearly, this is much too small for your use case.

    Moreover, if a client isn’t connected (and subscribed on that particular topic) at the time of the message being published, the message will never be delivered. EDIT: As @Brits pointed out, this only applies to QoS 0 pubs/subs.

    Like JD Allen mentioned, you need a queuing service like Rabbit MQ or AMQ. There are countless other such services/libraries/packages in existence so please investigate more.

    If you want to role your own, it might be worth considering using AWS SQS and wrapping some of your own application logic around it. That’ll likely be a bit hacky though, so take that suggestion with a grain of salt.

    Login or Signup to reply.
  2. Actually, MQTT supports the concept of sessions that persist across client connections, but the client must first connect and request a "non-clean" session. After that, if the client is disconnected, the broker will hold all the QoS=1 or 2 messages destined for that client until it reconnects.

    With MQTT v3.x, technically, the server is supposed to hold all the messages for all these disconnected clients forever! Each messages maxes out at a 256MB payload, but the server is supposed to hold all that you give it. This created a big problem for servers that MQTT v5 came in to fix. And most real-world brokers have configurable settings around this.

    But MQTT shines if the connections are over unreliable networks (wireless, cell modems, etc) that may drop and reconnect unexpectedly.

    If the clients are connected over fairly reliable networks, AMQP with RabbitMQ is considerably more flexible, since clients can create and manage the individual queues. But the neat thing is that you can mix the two protocols using RabbitMQ, as it has an MQTT plugin. So, smaller clients on an unreliable network can connect via MQTT, and other clients can connect via AMQP, and they can all communicate with each other.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search