Mohammad Jilani
Mohammad Jilani

Reputation: 71

maximum tcp connections for 1 instance on play framework

I'm using web sockets with play framework 2.6. What is the maximum number of connections that is possible concurrently on 1 instance.

Upvotes: 0

Views: 912

Answers (1)

James Roper
James Roper

Reputation: 12850

LinkedIn wrote a blog post on how they scaled their Play servers to scale to 100K connections per node:

https://engineering.linkedin.com/blog/2016/10/instant-messaging-at-linkedin--scaling-to-hundreds-of-thousands-

There is no hard limit, what you'll encounter beyond that is OS imposed restrictions as described in the comments, these restrictions apply to all servers. I am aware of one person that, using a custom compiled Linux kernel, was able in a very contrived test environment to make a million connections to a single Play server node.

Upvotes: 2

Related Questions