skip resource heavy commands from running on master nodes

This commit is contained in:
chrislu
2024-09-29 10:51:17 -07:00
parent ec30a504ba
commit 6564ceda91
4 changed files with 10 additions and 6 deletions

View File

@@ -48,8 +48,8 @@ func (c *commandVolumeCheckDisk) Help() string {
`
}
func (c *commandVolumeCheckDisk) HasTag(CommandTag) bool {
return false
func (c *commandVolumeCheckDisk) HasTag(tag CommandTag) bool {
return tag == ResourceHeavy
}
func (c *commandVolumeCheckDisk) getVolumeStatusFileCount(vid uint32, dn *master_pb.DataNodeInfo) (totalFileCount, deletedFileCount uint64) {