Page History
Table of Contents |
---|
Introduction
The JS7 offers witness-based clustering.
Cluster Roles
Roles include the Active Controller, the Standby Controller and the Witness.
Graphviz |
---|
digraph structs {
# compound=true;
rankdir=LR;
node[shape="record"];
ActiveWitness [label="<f0>Primary Witness\n Active ",shape="rectangle",style="filled",fillcolor="limegreen",fontname="Arial",fontsize="12pt"]
node[shape="record"];
ActiveController [label="<f1>Primary Controller\n Active ",shape="rectangle",style="filled",fillcolor="lightskyblue",fontname="Arial",fontsize="12pt"]
node[shape="record"];
StandbyController[label="<f2>SecondaryController\n Standby ",shape="rectangle",style="filled",fillcolor="lightgrey",fontname="Arial",fontsize="12pt"]
subgraph normal_operation {
fontname="Arial";
fontsize="12pt";
ActiveWitness:f0 -> ActiveController [label=" hold connection ",fontname="Arial",fontsize="10pt"]
ActiveWitness:f0 -> StandbyController [label=" hold connection ",fontname="Arial",fontsize="10pt"]
ActiveController:f1 -> StandbyController [label=" hold connection ",fontname="Arial",fontsize="10pt"]
StandbyController:f2 -> ActiveController [label=" hold connection ",fontname="Arial",fontsize="10pt"]
}
} |
xx
Flowchart |
---|
ActiveController [label=" Primary Controller \n Active ",fillcolor="lightskyblue"]
StandbyController[label=" Secondary Controller \n Standby ",fillcolor="orange"]
ActiveWitness [label=" Primary Witness \n Active; ",fillcolor="limegreen"]
ActiveWitness -> ActiveController [label=" hold connection "]
ActiveWitness -> StandbyController [label=" hold connection "]
ActiveController -> StandbyController [label=" hold connection "]
StandbyController -> ActiveController [label=" hold connection "] |
Overview
Content Tools