* Clarify that Perf Standbys require Consul backend * Fixed for line length
3.6 KiB
layout | page_title | sidebar_current | description |
---|---|---|---|
guides | Performance Standby Nodes - Guides | guides-operations-performance-nodes | This guide will walk you through a simple Vault Highly Available (HA) cluster implementation. While this is not an exhaustive or prescriptive guide that can be used as a drop-in production example, it covers the basics enough to inform your own production setup. |
Performance Standby Nodes
~> Enterprise Only: Performance Standby Nodes feature is a part of Vault Enterprise.
In Vault High Availability guide, it was explained that only one Vault server will be active in a cluster and handles all requests (reads and writes). The rest of the servers become the standby nodes and simply forward requests to the active node.
If you are running Vault Enterprise 0.11 or later with the Consul storage backend, those standby nodes can handle most read-only requests. For example, performance standbys can handle encryption/decryption of data using transit keys, GET requests of key/value secrets and other requests that do not change underlying storage. This can provide considerable improvements in throughput for traffic of this type, resulting in aggregate performance increase linearly correlated to the number of performance standby nodes deployed in a cluster.
Reference Materials
- Performance Standby Nodes
- High Availability Mode
- Consul Storage Backend
- Vault Reference Architecture
Server Configuration
Performance standbys are enabled by default when the Vault Enterprise license
includes this feature. If you wish to disable the performance standbys, you can
do so by setting the
disable_performance_standby
flag to true
.
Since any of the nodes in a cluster can get elected as active, it is recommended to keep this setting consistent across all nodes in the cluster.
!> Consider a scenario where a node with performance standby disabled becomes the active node. The performance standby feature is disabled for the whole cluster although it is enabled on other nodes.
Enterprise Cluster
A highly available Vault Enterprise cluster consists of multiple servers, and there will be only one active node. The rest can serve as performance standby nodes handling read-only requests locally.
The number of performance standby nodes within a cluster depends on your Vault Enterprise license.
Consider the following scenario:
- A cluster contains five Vault servers
- Your Vault Enterprise license allows two performance standby nodes
In this scenario, the performance standby nodes running on VM 8 and VM 9 can process read-only requests. However, the standby nodes running on VM 6 and VM 10 simply forward all requests to the active node running on VM 7.
NOTE: The selection of performance standby node is determined by the active node. When a node is selected, it gets promoted to become a performance standby. This is a race condition that there is no configuration parameter to specify which nodes to become performance standbys.
Next steps
Read Production Hardening to learn best practices for a production hardening deployment of Vault.