mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-18 09:11:27 +01:00
docs: Change sidebar labeling to use Integrated Storage (#10002)
I changed some verbiage in the page as well.
This commit is contained in:
parent
f27f19bbe8
commit
d452997c5d
@ -1,27 +1,27 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
page_title: Raft - Storage Backends - Configuration
|
page_title: Integrated Storage - Storage Backends - Configuration
|
||||||
sidebar_title: Raft
|
sidebar_title: Integrated Storage (Raft)
|
||||||
description: |-
|
description: |-
|
||||||
|
|
||||||
The Raft storage backend is used to persist Vault's data. Unlike all the other
|
The Integrated Storage (Raft) backend is used to persist Vault's data. Unlike all the other
|
||||||
storage backends, this backend does not operate from a single source for the
|
storage backends, this backend does not operate from a single source for the
|
||||||
data. Instead all the nodes in a Vault cluster will have a replicated copy of
|
data. Instead all the nodes in a Vault cluster will have a replicated copy of
|
||||||
the entire data. The data is replicated across the nodes using the Raft
|
the entire data. The data is replicated across the nodes using the Raft
|
||||||
Consensus Algorithm.
|
Consensus Algorithm.
|
||||||
---
|
---
|
||||||
|
|
||||||
# Raft Storage Backend
|
# Integrated Storage (Raft) Backend
|
||||||
|
|
||||||
The Raft storage backend is used to persist Vault's data. Unlike other storage
|
The Integrated Storage backend is used to persist Vault's data. Unlike other storage
|
||||||
backends, Raft storage does not operate from a single source of data. Instead
|
backends, Integrated Storage does not operate from a single source of data. Instead
|
||||||
all the nodes in a Vault cluster will have a replicated copy of Vault's data.
|
all the nodes in a Vault cluster will have a replicated copy of Vault's data.
|
||||||
Data gets replicated across the all the nodes via the [Raft Consensus
|
Data gets replicated across the all the nodes via the [Raft Consensus
|
||||||
Algorithm][raft].
|
Algorithm][raft].
|
||||||
|
|
||||||
- **High Availability** – the Raft storage backend supports high availability.
|
- **High Availability** – the Integrated Storage backend supports high availability.
|
||||||
|
|
||||||
- **HashiCorp Supported** – the Raft storage backend is officially supported
|
- **HashiCorp Supported** – the Integrated Storage backend is officially supported
|
||||||
by HashiCorp.
|
by HashiCorp.
|
||||||
|
|
||||||
```hcl
|
```hcl
|
||||||
@ -32,14 +32,14 @@ storage "raft" {
|
|||||||
cluster_addr = "http://127.0.0.1:8201"
|
cluster_addr = "http://127.0.0.1:8201"
|
||||||
```
|
```
|
||||||
|
|
||||||
~> **Note:** When using the Raft storage backend, it is required to provide
|
~> **Note:** When using the Integrated Storage backend, it is required to provide
|
||||||
`cluster_addr` to indicate the address and port to be used for communication
|
`cluster_addr` to indicate the address and port to be used for communication
|
||||||
between the nodes in the Raft cluster.
|
between the nodes in the Raft cluster.
|
||||||
|
|
||||||
~> **Note:** When using the Raft storage backend, a separate `ha_storage`
|
~> **Note:** When using the Integrated Storage backend, a separate `ha_storage`
|
||||||
backend cannot be declared.
|
backend cannot be declared.
|
||||||
|
|
||||||
~> **Note:** When using the Raft storage backend, it is strongly recommended to
|
~> **Note:** When using the Integrated Storage backend, it is strongly recommended to
|
||||||
set `disable_mlock` to `true`, and to disable memory swapping on the system.
|
set `disable_mlock` to `true`, and to disable memory swapping on the system.
|
||||||
|
|
||||||
## `raft` Parameters
|
## `raft` Parameters
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user