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
When the primary instance goes down, I want to switch the follower instance to become the primary. The follower instance has a complete WAL and memtable, which can reduce the switchover time and improve user experience. However, it seems that this feature is not currently supported. Is there any plan to support this in the future?
The text was updated successfully, but these errors were encountered:
The former is not following the primary's memtable yet, the latter is trailing the primary's WAL to repopulate its own memtable. But either case, there is no near future plans to support upgrading a DBImplFollower instance or a DBImplSecondary instance to be a full-fledged primary instance.
Yes, this is a very useful feature. Ideally, a secondary instance can be upgraded to a primary instance. In a distributed DFS-based system, if the primary node crashes or needs maintenance, the primary node can be switched directly to a secondary instance with a complete memtable. This can reduce the write-off time and improve system availability.
When the primary instance goes down, I want to switch the follower instance to become the primary. The follower instance has a complete WAL and memtable, which can reduce the switchover time and improve user experience. However, it seems that this feature is not currently supported. Is there any plan to support this in the future?
The text was updated successfully, but these errors were encountered: