Skip to content
Open
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
4 changes: 4 additions & 0 deletions docs/admin/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ Refer to the example configuration file
[daos\_server.yml](https://github.com/daos-stack/daos/blob/master/utils/config/daos_server.yml)
for latest information and examples.

When intentionally running DAOS without bdevs/NVMe, administrators should also set
`disable_hugepages: true` in the server configuration file to avoid allocating unnecessary
hugepages, as hugepages are required for SPDK NVMe device access.

#### MD-on-SSD Configuration

To enable MD-on-SSD, the Control-Plane-Metadata (`control_metadata`) global section of the
Expand Down
2 changes: 1 addition & 1 deletion src/control/server/config/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const (

// ScanMinHugepageCount is the minimum number of hugepages to allocate in order to satisfy
// SPDK memory requirements when performing a NVMe device scan.
ScanMinHugepageCount = 128
ScanMinHugepageCount = 1024

msgAPsMSReps = "access_points is deprecated; please use mgmt_svc_replicas instead"
)
Expand Down
Loading