I am deploying redash in Openshift and the single instance mode works well.
But I would like to make it multi instance and highly available so that it can overcome pod removals which can be caused by node draining etc.
Has any one done a HA version of redash?
1 Like
Iām also looking for HA redash.
any updates? were you able to get it working?
I tried it last year.
1.Configure multiple docker-compose.yml configuration files to start multiple Redash instances on different servers or on different ports on the same server
2.By change the config of nginx, then nginx service load-balanced and forwarded all requests to different instances of the Redash service.
But there are two problems I havenāt solvedļ¼
- When A query is being executed on instance A, the client will continue to send requests to the nginx service to get the result of the query. If the request is forwarded to instance B by nginx, the client will display āquery in queueāļ¼It may be confusing for usersļ¼.
2.Iāve only tested the PG database cluster, but it hasnāt actually been used in production. High availability may not be dependent on a single database instanceć