I am contemplating using Redis in my app, and my basic usage needs are high availability, eventual consistency and fast reads/ writes.
My usage pattern is something like:
- Dashboard: Reads & writes to master redis instance.
- Multiple instances of another app (each running redis clients) and they only read from Redis.
My concerns:
- What happens if Master goes down?
- How can I remove that bottle-neck and make it more fault tolerant ?
- Can I configure a client to look for multiple masters (in some order), so if one is down, it can still use another one as master ?
Any input is welcome!