2020-01-03 10:13:16 +08:00
|
|
|
// Copyright 2020 Kentaro Hibino. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-12-27 22:48:56 +08:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/go-redis/redis/v7"
|
|
|
|
"github.com/hibiken/asynq/internal/rdb"
|
|
|
|
"github.com/spf13/cobra"
|
2020-01-20 00:40:51 +08:00
|
|
|
"github.com/spf13/viper"
|
2019-12-27 22:48:56 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
var killallValidArgs = []string{"scheduled", "retry"}
|
|
|
|
|
|
|
|
// killallCmd represents the killall command
|
|
|
|
var killallCmd = &cobra.Command{
|
2020-01-20 07:21:51 +08:00
|
|
|
Use: "killall [state]",
|
2020-02-04 22:16:29 +08:00
|
|
|
Short: "Kills all tasks in the specified state",
|
2020-01-20 07:21:51 +08:00
|
|
|
Long: `Killall (asynqmon killall) will update all tasks from the specified state to dead state.
|
2019-12-27 22:48:56 +08:00
|
|
|
|
|
|
|
The argument should be either "scheduled" or "retry".
|
|
|
|
|
2020-01-20 07:21:51 +08:00
|
|
|
Example: asynqmon killall retry -> Update all retry tasks to dead tasks`,
|
2019-12-27 22:48:56 +08:00
|
|
|
ValidArgs: killallValidArgs,
|
|
|
|
Args: cobra.ExactValidArgs(1),
|
|
|
|
Run: killall,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(killallCmd)
|
|
|
|
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
|
|
// and all subcommands, e.g.:
|
|
|
|
// killallCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
|
|
// is called directly, e.g.:
|
|
|
|
// killallCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
|
|
}
|
|
|
|
|
|
|
|
func killall(cmd *cobra.Command, args []string) {
|
|
|
|
c := redis.NewClient(&redis.Options{
|
2020-01-20 00:40:51 +08:00
|
|
|
Addr: viper.GetString("uri"),
|
|
|
|
DB: viper.GetInt("db"),
|
|
|
|
Password: viper.GetString("password"),
|
2019-12-27 22:48:56 +08:00
|
|
|
})
|
|
|
|
r := rdb.NewRDB(c)
|
|
|
|
var n int64
|
|
|
|
var err error
|
|
|
|
switch args[0] {
|
|
|
|
case "scheduled":
|
|
|
|
n, err = r.KillAllScheduledTasks()
|
|
|
|
case "retry":
|
|
|
|
n, err = r.KillAllRetryTasks()
|
|
|
|
default:
|
2020-01-20 07:21:51 +08:00
|
|
|
fmt.Printf("error: `asynqmon killall [state]` only accepts %v as the argument.\n", killallValidArgs)
|
2019-12-27 22:48:56 +08:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2020-01-20 07:21:51 +08:00
|
|
|
fmt.Printf("Successfully updated %d tasks to \"dead\" state\n", n)
|
2019-12-27 22:48:56 +08:00
|
|
|
}
|