Skip to content

Commit

Permalink
docs: add doc for backend's options (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjiachun authored Dec 5, 2024
1 parent 31b3374 commit 0ed478a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
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

0 comments on commit 0ed478a

Please sign in to comment.