Skip to content

Commit

Permalink
mds: increase max limit of mds active daemons
Browse files Browse the repository at this point in the history
The mds max daemons had been set arbitrarily to 10.
Allow more mds daemons for clusters that have a
scenario for large numbers of mds to manage the
filesystem metadata.

Signed-off-by: travisn <[email protected]>
  • Loading branch information
travisn committed Jan 11, 2024
1 parent 4203d9b commit 98816ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/charts/rook-ceph/templates/resources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7104,7 +7104,7 @@ spec:
activeCount:
description: The number of metadata servers that are active.
format: int32
maximum: 10
maximum: 50
minimum: 1
type: integer
activeStandby:
Expand Down
2 changes: 1 addition & 1 deletion deploy/examples/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7099,7 +7099,7 @@ spec:
activeCount:
description: The number of metadata servers that are active.
format: int32
maximum: 10
maximum: 50
minimum: 1
type: integer
activeStandby:
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/ceph.rook.io/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ type FilesystemSpec struct {
type MetadataServerSpec struct {
// The number of metadata servers that are active. The remaining servers in the cluster will be in standby mode.
// +kubebuilder:validation:Minimum=1
// +kubebuilder:validation:Maximum=10
// +kubebuilder:validation:Maximum=50
ActiveCount int32 `json:"activeCount"`

// Whether each active MDS instance will have an active standby with a warm metadata cache for faster failover.
Expand Down

0 comments on commit 98816ad

Please sign in to comment.