Appboard/2.4/admin/clustering and failover: Difference between revisions

imported>Jason.nicholls
(Created page with '{{DISPLAYTITLE:Scaling & High Availability}} Category:AppBoard 2.4 == Overview == AppBoard is implemented using a highly scalable web application architecture. As a Java app…')
 
imported>Jason.nicholls
No edit summary
Line 9: Line 9:
#<b>Failover</b>: A two-node configuration with both nodes running but all traffic is routed to the primary node unless it is detected to be down. At this point the load balancer re-directs traffic to the secondary node.
#<b>Failover</b>: A two-node configuration with both nodes running but all traffic is routed to the primary node unless it is detected to be down. At this point the load balancer re-directs traffic to the secondary node.
#<b>Cold Standby</b>: A two-node configuration where the secondary node is offline in normal operation. If the primary node is detected to be down the secondary node is brought online and traffic re-directed.
#<b>Cold Standby</b>: A two-node configuration where the secondary node is offline in normal operation. If the primary node is detected to be down the secondary node is brought online and traffic re-directed.
== Architecture & Licensing ==
[[File:Simple_Cluster.png|frame|center|Two Node Cluster Architecture]]
Whether running a load-balanced, failover, or cold-standby configuration the following components are required:
* AppBoard installation per node, this includes a separate license for each node.
* External (shared) configuration database. This database is not provided by Edge and is recommended to reside on a different host to the AppBoard servers. Also, in high availability environments it's recommended the configuration database itself is also high-availability. See the [[appboard/2.4/system_requirements|System Requirements]] for supported external configuration databases.
* Load Balancer. This component is not provided by AppBoard or Edge, but is required in cluster configurations.

Revision as of 12:25, 21 July 2014

Overview

AppBoard is implemented using a highly scalable web application architecture. As a Java application running inside an Apache Tomcat server, AppBoard is able to make use of multi-core and multi-processor systems with large amounts of RAM on 64-bit operating systems. In addition to scaling vertically on a single system, AppBoard supports horizontal scaling to handle even greater loads and/or to provide for high availability environments through the use of a shared configuration database. AppBoard can be used in the following configurations:

  1. Load Balanced: Two or more nodes are fully operational at all times. The load balancer directs traffic to nodes based on standard load balancing techniques such as round-robin, fewest sessions, smallest load, etc... If a server is detected as down it is removed from the active pool.
  2. Failover: A two-node configuration with both nodes running but all traffic is routed to the primary node unless it is detected to be down. At this point the load balancer re-directs traffic to the secondary node.
  3. Cold Standby: A two-node configuration where the secondary node is offline in normal operation. If the primary node is detected to be down the secondary node is brought online and traffic re-directed.

Architecture & Licensing

Two Node Cluster Architecture

Whether running a load-balanced, failover, or cold-standby configuration the following components are required:

  • AppBoard installation per node, this includes a separate license for each node.
  • External (shared) configuration database. This database is not provided by Edge and is recommended to reside on a different host to the AppBoard servers. Also, in high availability environments it's recommended the configuration database itself is also high-availability. See the System Requirements for supported external configuration databases.
  • Load Balancer. This component is not provided by AppBoard or Edge, but is required in cluster configurations.