You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently postgresql is a SPOF. We can't reconfigure/resize/move/update it without putting the whole website offline for at least a few seconds.
We'd need either one of these:
having sqlalchemy sending write requests to a different DB connection than read requests.
having sqlalchemy being able to failover to a second (read-only) database in case the first one goes away.
In both cases, the app needs to be clever enough to gracefully handle the case where the (single) writeable database is gone. A sort of maintenance mode where everything is read-only, and the feedback to the user is unambiguous about it.
Currently postgresql is a SPOF. We can't reconfigure/resize/move/update it without putting the whole website offline for at least a few seconds.
We'd need either one of these:
In both cases, the app needs to be clever enough to gracefully handle the case where the (single) writeable database is gone. A sort of maintenance mode where everything is read-only, and the feedback to the user is unambiguous about it.
When discussing this with @tsauerwein this afternoon, he mentioned: camptocamp/c2cgeoportal#2223
The text was updated successfully, but these errors were encountered: