Added an important point on failover
Honestly, active-passive stateful systems are terrible. Never have found one that worked, there's always too much data incongruency or other random errors. Stateless applications, like routers, are great. But not your Jenkins master.pull/417/head
parent
449dc27f33
commit
8e4b0ea3bf
|
@ -518,6 +518,7 @@ Active-active failover can also be referred to as master-master failover.
|
||||||
|
|
||||||
* Fail-over adds more hardware and additional complexity.
|
* Fail-over adds more hardware and additional complexity.
|
||||||
* There is a potential for loss of data if the active system fails before any newly written data can be replicated to the passive.
|
* There is a potential for loss of data if the active system fails before any newly written data can be replicated to the passive.
|
||||||
|
* A stateful system that does not have built-in support for Active-Passive failover will usually not work as expected if an external tool is used to facilitate failover.
|
||||||
|
|
||||||
### Replication
|
### Replication
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue