mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-22 20:43:35 +08:00
skip resource heavy commands from running on master nodes
This commit is contained in:
@@ -314,6 +314,10 @@ func processEachCmd(reg *regexp.Regexp, line string, commandEnv *shell.CommandEn
|
||||
|
||||
for _, c := range shell.Commands {
|
||||
if c.Name() == cmd {
|
||||
if c.HasTag(shell.ResourceHeavy) {
|
||||
glog.Warningf("%s is resource heavy and should not run on master", cmd)
|
||||
continue
|
||||
}
|
||||
glog.V(0).Infof("executing: %s %v", cmd, args)
|
||||
if err := c.Do(args, commandEnv, os.Stdout); err != nil {
|
||||
glog.V(0).Infof("error: %v", err)
|
||||
|
Reference in New Issue
Block a user