Can hasura-engine read-replicas all share a single metadata database? #8946
-
Context: Without using Hasura Cloud to still achieve postgres replica load-balancing, it's possible to run a separate, second To have Doing so you can load-balance graphql read-only operations such as live-subscriptions and queries against the hasura master and the single hasura read-replica. Problem: Above setup works well and now I'd like to increase the postgres read-replica to Questions: Can |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
As per the Hasura Docs: Hasura Cloud and Hasura Enterprise can load balance queries and subscriptions across read replicas while sending all mutations and metadata API calls to the primary. So, it will be a single metadata database (attached to primary) and will be shared across the Read Replicas. |
Beta Was this translation helpful? Give feedback.
As per the Hasura Docs:
Hasura Cloud and Hasura Enterprise can load balance queries and subscriptions across read replicas while sending all mutations and metadata API calls to the primary.
So, it will be a single metadata database (attached to primary) and will be shared across the Read Replicas.