Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add doc for backend's options #1353

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/user-guide/deployments/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,11 @@ use_memory_store = false
## - Using Remote WAL
## - Using shared storage (e.g., s3).
enable_region_failover = false
# The datastore for meta server.
# The datastore for metasrv.
## Available datastore:
## - "EtcdStore" (default)
## - "MemoryStore" (In memory metadata storage - only used for testing.)
## - "PostgresStore"
backend = "EtcdStore"

## Procedure storage options.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,6 +626,10 @@ use_memory_store = false
## - 使用共享存储(例如 s3)。
enable_region_failover = false
# metasrv 的数据库类型.
## 可选项:
## - "EtcdStore" (默认值)
## - "MemoryStore" (纯内存存储 - 仅用于测试)
## - "PostgresStore"
backend = "EtcdStore"

## Procedure 选项
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,10 @@ use_memory_store = false
## - 使用共享存储(例如 s3)。
enable_region_failover = false
# metasrv 的数据库类型.
## 可选项:
## - "EtcdStore" (默认值)
## - "MemoryStore" (纯内存存储 - 仅用于测试)
## - "PostgresStore"
backend = "EtcdStore"

## Procedure 选项
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,11 @@ use_memory_store = false
## - Using Remote WAL
## - Using shared storage (e.g., s3).
enable_region_failover = false
# The datastore for meta server.
# The datastore for metasrv.
## Available datastore:
## - "EtcdStore" (default)
## - "MemoryStore" (In memory metadata storage - only used for testing.)
## - "PostgresStore"
backend = "EtcdStore"

## Procedure storage options.
Expand Down
Loading