204 lines
8.2 KiB
Go
204 lines
8.2 KiB
Go
package cmd
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/paypal/gorealis/v2/gen-go/apache/aurora"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(startCmd)
|
|
|
|
// Sub-commands
|
|
startCmd.AddCommand(startDrainCmd.cmd)
|
|
startDrainCmd.cmd.Run = drain
|
|
|
|
// Maintenance specific flags
|
|
startDrainCmd.cmd.Flags().DurationVar(&startDrainCmd.monitorInterval, "interval", time.Second*5, "Interval at which to poll scheduler.")
|
|
startDrainCmd.cmd.Flags().DurationVar(&startDrainCmd.monitorTimeout, "timeout", time.Minute*10, "Time after which the monitor will stop polling and throw an error.")
|
|
|
|
startCmd.AddCommand(startSLADrainCmd)
|
|
|
|
/* SLA Aware commands */
|
|
startSLADrainCmd.AddCommand(startSLACountDrainCmd.cmd)
|
|
startSLACountDrainCmd.cmd.Run = SLACountDrain
|
|
|
|
// SLA Maintenance specific flags
|
|
startSLACountDrainCmd.cmd.Flags().DurationVar(&startSLACountDrainCmd.monitorInterval, "interval", time.Second*10, "Interval at which to poll scheduler.")
|
|
startSLACountDrainCmd.cmd.Flags().DurationVar(&startSLACountDrainCmd.monitorTimeout, "timeout", time.Minute*20, "Time after which the monitor will stop polling and throw an error.")
|
|
startSLACountDrainCmd.cmd.Flags().Int64Var(&count, "count", 5, "Instances count that should be running to meet SLA.")
|
|
startSLACountDrainCmd.cmd.Flags().DurationVar(&duration, "duration", time.Second*45, "Minimum time duration a task needs to be `RUNNING` to be treated as active.")
|
|
startSLACountDrainCmd.cmd.Flags().DurationVar(&forceDrainTimeout, "sla-limit", time.Minute*60, "Time limit after which SLA-Aware drain sheds SLA Awareness.")
|
|
|
|
startSLADrainCmd.AddCommand(startSLAPercentageDrainCmd.cmd)
|
|
startSLAPercentageDrainCmd.cmd.Run = SLAPercentageDrain
|
|
|
|
// SLA Maintenance specific flags
|
|
startSLAPercentageDrainCmd.cmd.Flags().DurationVar(&startSLACountDrainCmd.monitorInterval, "interval", time.Second*10, "Interval at which to poll scheduler.")
|
|
startSLAPercentageDrainCmd.cmd.Flags().DurationVar(&startSLACountDrainCmd.monitorTimeout, "timeout", time.Minute*20, "Time after which the monitor will stop polling and throw an error.")
|
|
startSLAPercentageDrainCmd.cmd.Flags().Float64Var(&percent, "percent", 75.0, "Percentage of instances that should be running to meet SLA.")
|
|
startSLAPercentageDrainCmd.cmd.Flags().DurationVar(&duration, "duration", time.Second*45, "Minimum time duration a task needs to be `RUNNING` to be treated as active.")
|
|
startSLAPercentageDrainCmd.cmd.Flags().DurationVar(&forceDrainTimeout, "sla-limit", time.Minute*60, "Time limit after which SLA-Aware drain sheds SLA Awareness.")
|
|
|
|
startCmd.AddCommand(startMaintenanceCmd.cmd)
|
|
startMaintenanceCmd.cmd.Run = maintenance
|
|
|
|
// SLA Maintenance specific flags
|
|
startMaintenanceCmd.cmd.Flags().DurationVar(&startMaintenanceCmd.monitorInterval, "interval", time.Second*5, "Interval at which to poll scheduler.")
|
|
startMaintenanceCmd.cmd.Flags().DurationVar(&startMaintenanceCmd.monitorTimeout, "timeout", time.Minute*10, "Time after which the monitor will stop polling and throw an error.")
|
|
}
|
|
|
|
var startCmd = &cobra.Command{
|
|
Use: "start",
|
|
Short: "Start a service, maintenance on a host (DRAIN), a snapshot, or a backup.",
|
|
}
|
|
|
|
var startDrainCmd = MonitorCmdConfig{
|
|
cmd: &cobra.Command{
|
|
Use: "drain [space separated host list]",
|
|
Short: "Place a list of space separated Mesos Agents into draining mode.",
|
|
Long: `Adds a Mesos Agent to Aurora's Drain list. Agents in this list
|
|
are not allowed to schedule new tasks and any tasks already running on this Agent
|
|
are killed and rescheduled in an Agent that is not in maintenance mode. Command
|
|
expects a space separated list of hosts to place into maintenance mode.`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
},
|
|
}
|
|
|
|
var startSLADrainCmd = &cobra.Command{
|
|
Use: "sla-drain",
|
|
Short: "Place a list of space separated Mesos Agents into maintenance mode using SLA aware strategies.",
|
|
Long: `Adds a Mesos Agent to Aurora's Drain list. Agents in this list
|
|
are not allowed to schedule new tasks and any tasks already running on this Agent
|
|
are killed and rescheduled in an Agent that is not in maintenance mode. Command
|
|
expects a space separated list of hosts to place into maintenance mode.`,
|
|
}
|
|
|
|
var startSLACountDrainCmd = MonitorCmdConfig{
|
|
cmd: &cobra.Command{
|
|
Use: "count [space separated host list]",
|
|
Short: "Place a list of space separated Mesos Agents into maintenance mode using the count SLA aware policy as a fallback.",
|
|
Long: `Adds a Mesos Agent to Aurora's Drain list. Tasks will be drained using the count SLA policy as a fallback
|
|
when a Job does not have a defined SLA policy.`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
},
|
|
}
|
|
|
|
var startSLAPercentageDrainCmd = MonitorCmdConfig{
|
|
cmd: &cobra.Command{
|
|
Use: "percentage [space separated host list]",
|
|
Short: "Place a list of space separated Mesos Agents into maintenance mode using the percentage SLA aware policy as a fallback.",
|
|
Long: `Adds a Mesos Agent to Aurora's Drain list. Tasks will be drained using the percentage SLA policy as a fallback
|
|
when a Job does not have a defined SLA policy.`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
},
|
|
}
|
|
|
|
var startMaintenanceCmd = MonitorCmdConfig{
|
|
cmd: &cobra.Command{
|
|
Use: "maintenance [space separated host list]",
|
|
Short: "Place a list of space separated Mesos Agents into maintenance mode.",
|
|
Long: `Places Mesos Agent into Maintenance mode. Agents in this list
|
|
are de-prioritized for scheduling a task. Command
|
|
expects a space separated list of hosts to place into maintenance mode.`,
|
|
Args: cobra.MinimumNArgs(1),
|
|
},
|
|
}
|
|
|
|
func drain(cmd *cobra.Command, args []string) {
|
|
log.Infoln("Setting hosts to DRAINING")
|
|
log.Infoln(args)
|
|
result, err := client.DrainHosts(args...)
|
|
if err != nil {
|
|
log.Fatalf("error: %+v\n", err)
|
|
}
|
|
|
|
log.Debugln(result)
|
|
|
|
log.Infof("Monitoring for %v at %v intervals", monitorHostCmd.monitorTimeout, monitorHostCmd.monitorInterval)
|
|
// Monitor change to DRAINING and DRAINED mode
|
|
hostResult, err := client.HostMaintenanceMonitor(
|
|
args,
|
|
[]aurora.MaintenanceMode{aurora.MaintenanceMode_DRAINED},
|
|
startDrainCmd.monitorInterval,
|
|
startDrainCmd.monitorTimeout)
|
|
|
|
maintenanceMonitorPrint(hostResult, []aurora.MaintenanceMode{aurora.MaintenanceMode_DRAINED})
|
|
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|
|
|
|
func slaDrain(policy *aurora.SlaPolicy, interval, timeout time.Duration, hosts ...string) {
|
|
|
|
result, err := client.SLADrainHosts(policy, int64(forceDrainTimeout.Seconds()), hosts...)
|
|
if err != nil {
|
|
log.Fatalf("error: %+v\n", err)
|
|
}
|
|
|
|
log.Debugln(result)
|
|
|
|
log.Infof("Monitoring for %v at %v intervals", monitorHostCmd.monitorTimeout, monitorHostCmd.monitorInterval)
|
|
// Monitor change to DRAINING and DRAINED mode
|
|
hostResult, err := client.HostMaintenanceMonitor(
|
|
hosts,
|
|
[]aurora.MaintenanceMode{aurora.MaintenanceMode_DRAINED},
|
|
interval,
|
|
timeout)
|
|
|
|
maintenanceMonitorPrint(hostResult, []aurora.MaintenanceMode{aurora.MaintenanceMode_DRAINED})
|
|
|
|
if err != nil {
|
|
log.Fatalf("error: %+v", err)
|
|
}
|
|
}
|
|
|
|
func SLACountDrain(cmd *cobra.Command, args []string) {
|
|
log.Infoln("Setting hosts to DRAINING with the Count SLA policy.")
|
|
log.Infoln(args)
|
|
|
|
slaDrain(&aurora.SlaPolicy{
|
|
CountSlaPolicy: &aurora.CountSlaPolicy{Count: count, DurationSecs: int64(duration.Seconds())}},
|
|
startSLACountDrainCmd.monitorInterval,
|
|
startSLACountDrainCmd.monitorTimeout,
|
|
args...)
|
|
}
|
|
|
|
func SLAPercentageDrain(cmd *cobra.Command, args []string) {
|
|
log.Infoln("Setting hosts to DRAINING with the Percentage SLA policy.")
|
|
log.Infoln(args)
|
|
|
|
slaDrain(&aurora.SlaPolicy{
|
|
PercentageSlaPolicy: &aurora.PercentageSlaPolicy{Percentage: percent, DurationSecs: int64(duration.Seconds())}},
|
|
startSLAPercentageDrainCmd.monitorInterval,
|
|
startSLAPercentageDrainCmd.monitorTimeout,
|
|
args...)
|
|
}
|
|
|
|
func maintenance(cmd *cobra.Command, args []string) {
|
|
log.Infoln("Setting hosts to Maintenance mode")
|
|
log.Infoln(args)
|
|
result, err := client.StartMaintenance(args...)
|
|
if err != nil {
|
|
log.Fatalf("error: %+v\n", err)
|
|
}
|
|
|
|
log.Debugln(result)
|
|
|
|
log.Infof("Monitoring for %v at %v intervals", monitorHostCmd.monitorTimeout, monitorHostCmd.monitorInterval)
|
|
|
|
// Monitor change to DRAINING and DRAINED mode
|
|
hostResult, err := client.HostMaintenanceMonitor(
|
|
args,
|
|
[]aurora.MaintenanceMode{aurora.MaintenanceMode_SCHEDULED},
|
|
startMaintenanceCmd.monitorInterval,
|
|
startMaintenanceCmd.monitorTimeout)
|
|
|
|
maintenanceMonitorPrint(hostResult, []aurora.MaintenanceMode{aurora.MaintenanceMode_SCHEDULED})
|
|
|
|
if err != nil {
|
|
log.Fatalln("error: %+v", err)
|
|
}
|
|
}
|