Pourquoi Discourse a-t-il commencé à exécuter son propre Redis au lieu d'utiliser Elasticache ?

Poursuivant la discussion depuis Meta migre vers le Cloud :cloud_with_lightning: :

Cela ressemble à une histoire vraiment intéressante. J’aimerais beaucoup l’entendre.

L’avez-vous déjà racontée ailleurs ?

Our main pain points were two.

1. Instance types

Elasticache didn’t allow you to run HA Redis without Cluster Mode on instance types below M4.large.

Support for cluster mode in Ruby Redis libraries is still being ironed out. MessageBus also does atomic operations on keys using LUA scripts and since that will span multiple servers it’s not allowed in cluster mode. We do host some BIG instances, so we may revisit using distributed writes for databases (Rails 6 is coming with that for PostgreSQL) but we aren’t needing this yet.

We do host sites which need instance types way larger than that. But also host a lot where a t3.small is more than enough.

Moving to running our own Redis allows us to pick and play with any instance types available in the target region.

2. Read only mode

Discourse can keep a connection open with read only nodes with both Discourse and Redis.

That allows people to keep reading on the site when masters go down.

Elasticache wasn’t very straightforward in providing endpoints for the replicas in the main cluster, that updated to current replicas in failover events.

Also … not to forget. This offers us significant cost savings.

When you use ElasticCache you pay for the instances plus a tax for the ElasticCache service. Additionally we get much better control on utilisation since we can run multiple redises if we wish on a single instance.

Salut Falco, après avoir lu tes points, il semble que l’Elasticache gratuit ne prenne pas en charge l’exigence de Redis pour Discourse. Par conséquent, si je veux découpler mon site Discourse, je dois trouver un serveur Redis ailleurs. Est-ce que ma compréhension est correcte ?

C’est faux. Elasticache fonctionne très bien pour Discourse, et depuis 2019, AWS a fait de bons progrès pour résoudre nos deux points faibles décrits ci-dessus. AWS vous permet de choisir des types d’instances plus petits et fournit désormais des points de terminaison de répliques.

Merci Falco, je vais essayer !