Re: cloud cluster

2020-02-16 Thread M. Manna
We are also using redis based option. On Sun, 16 Feb 2020 at 17:32, Jonathan S. Fisher wrote: > We're doing the second: sessions stored in a Redis cluster with > sticky sessions. This topology is simple and it scales pretty easily until > it doesn't anymore [couple thousand simultaneous users].

Re: cloud cluster

2020-02-16 Thread Jonathan S. Fisher
We're doing the second: sessions stored in a Redis cluster with sticky sessions. This topology is simple and it scales pretty easily until it doesn't anymore [couple thousand simultaneous users]. You'll need to judiciously use your debugger and unix tools to find bottlenecks, as they're often hidde

cloud cluster

2020-02-16 Thread Jonathan Yom-Tov
hi, What kind of configuration do people usually use when deploying on a public cloud (e.g. AWS)? An auto-scaling cluster with session replication? A auto-scaling cluster with all sessions stored in an external cache? Jon.