mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-14 19:38:49 +08:00
237 lines
6.2 KiB
Go
237 lines
6.2 KiB
Go
// 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.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
"text/tabwriter"
|
|
"time"
|
|
|
|
"github.com/go-redis/redis/v7"
|
|
"github.com/hibiken/asynq/internal/rdb"
|
|
"github.com/rs/xid"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var lsValidArgs = []string{"enqueued", "inprogress", "scheduled", "retry", "dead"}
|
|
|
|
// lsCmd represents the ls command
|
|
var lsCmd = &cobra.Command{
|
|
Use: "ls [state]",
|
|
Short: "Lists tasks in the specified state",
|
|
Long: `Ls (asynqmon ls) will list all tasks in the specified state in a table format.
|
|
|
|
The command takes one argument which specifies the state of tasks.
|
|
The argument value should be one of "enqueued", "inprogress", "scheduled",
|
|
"retry", or "dead".
|
|
|
|
Example:
|
|
asynqmon ls dead -> Lists all tasks in dead state
|
|
|
|
Enqueued tasks can optionally be filtered by providing queue names after ":"
|
|
Example:
|
|
asynqmon ls enqueued:critical -> List tasks from critical queue only
|
|
`,
|
|
Args: cobra.ExactValidArgs(1),
|
|
Run: ls,
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(lsCmd)
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
// and all subcommands, e.g.:
|
|
// lsCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
// is called directly, e.g.:
|
|
// lsCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
}
|
|
|
|
func ls(cmd *cobra.Command, args []string) {
|
|
c := redis.NewClient(&redis.Options{
|
|
Addr: viper.GetString("uri"),
|
|
DB: viper.GetInt("db"),
|
|
Password: viper.GetString("password"),
|
|
})
|
|
r := rdb.NewRDB(c)
|
|
parts := strings.Split(args[0], ":")
|
|
switch parts[0] {
|
|
case "enqueued":
|
|
listEnqueued(r, parts[1:]...)
|
|
case "inprogress":
|
|
listInProgress(r)
|
|
case "scheduled":
|
|
listScheduled(r)
|
|
case "retry":
|
|
listRetry(r)
|
|
case "dead":
|
|
listDead(r)
|
|
default:
|
|
fmt.Printf("error: `asynqmon ls [state]` only accepts %v as the argument.\n", lsValidArgs)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// queryID returns an identifier used for "enq" command.
|
|
// score is the zset score and queryType should be one
|
|
// of "s", "r" or "d" (scheduled, retry, dead respectively).
|
|
func queryID(id xid.ID, score int64, qtype string) string {
|
|
const format = "%v:%v:%v"
|
|
return fmt.Sprintf(format, qtype, score, id)
|
|
}
|
|
|
|
// parseQueryID is a reverse operation of queryID function.
|
|
// It takes a queryID and return each part of id with proper
|
|
// type if valid, otherwise it reports an error.
|
|
func parseQueryID(queryID string) (id xid.ID, score int64, qtype string, err error) {
|
|
parts := strings.Split(queryID, ":")
|
|
if len(parts) != 3 {
|
|
return xid.NilID(), 0, "", fmt.Errorf("invalid id")
|
|
}
|
|
id, err = xid.FromString(parts[2])
|
|
if err != nil {
|
|
return xid.NilID(), 0, "", fmt.Errorf("invalid id")
|
|
}
|
|
score, err = strconv.ParseInt(parts[1], 10, 64)
|
|
if err != nil {
|
|
return xid.NilID(), 0, "", fmt.Errorf("invalid id")
|
|
}
|
|
qtype = parts[0]
|
|
if len(qtype) != 1 || !strings.Contains("srd", qtype) {
|
|
return xid.NilID(), 0, "", fmt.Errorf("invalid id")
|
|
}
|
|
return id, score, qtype, nil
|
|
}
|
|
|
|
func listEnqueued(r *rdb.RDB, qnames ...string) {
|
|
tasks, err := r.ListEnqueued(qnames...)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
if len(tasks) == 0 {
|
|
msg := "No enqueued tasks"
|
|
if len(qnames) > 0 {
|
|
msg += " in"
|
|
for i, q := range qnames {
|
|
msg += fmt.Sprintf(" %q queue", q)
|
|
if i != len(qnames)-1 {
|
|
msg += ","
|
|
}
|
|
}
|
|
}
|
|
fmt.Println(msg)
|
|
return
|
|
}
|
|
cols := []string{"ID", "Type", "Payload", "Queue"}
|
|
printRows := func(w io.Writer, tmpl string) {
|
|
for _, t := range tasks {
|
|
fmt.Fprintf(w, tmpl, t.ID, t.Type, t.Payload, t.Queue)
|
|
}
|
|
}
|
|
printTable(cols, printRows)
|
|
}
|
|
|
|
func listInProgress(r *rdb.RDB) {
|
|
tasks, err := r.ListInProgress()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
if len(tasks) == 0 {
|
|
fmt.Println("No in-progress tasks")
|
|
return
|
|
}
|
|
cols := []string{"ID", "Type", "Payload"}
|
|
printRows := func(w io.Writer, tmpl string) {
|
|
for _, t := range tasks {
|
|
fmt.Fprintf(w, tmpl, t.ID, t.Type, t.Payload)
|
|
}
|
|
}
|
|
printTable(cols, printRows)
|
|
}
|
|
|
|
func listScheduled(r *rdb.RDB) {
|
|
tasks, err := r.ListScheduled()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
if len(tasks) == 0 {
|
|
fmt.Println("No scheduled tasks")
|
|
return
|
|
}
|
|
cols := []string{"ID", "Type", "Payload", "Process In", "Queue"}
|
|
printRows := func(w io.Writer, tmpl string) {
|
|
for _, t := range tasks {
|
|
processIn := fmt.Sprintf("%.0f seconds", t.ProcessAt.Sub(time.Now()).Seconds())
|
|
fmt.Fprintf(w, tmpl, queryID(t.ID, t.Score, "s"), t.Type, t.Payload, processIn, t.Queue)
|
|
}
|
|
}
|
|
printTable(cols, printRows)
|
|
}
|
|
|
|
func listRetry(r *rdb.RDB) {
|
|
tasks, err := r.ListRetry()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
if len(tasks) == 0 {
|
|
fmt.Println("No retry tasks")
|
|
return
|
|
}
|
|
cols := []string{"ID", "Type", "Payload", "Retry In", "Last Error", "Retried", "Max Retry", "Queue"}
|
|
printRows := func(w io.Writer, tmpl string) {
|
|
for _, t := range tasks {
|
|
retryIn := fmt.Sprintf("%.0f seconds", t.ProcessAt.Sub(time.Now()).Seconds())
|
|
fmt.Fprintf(w, tmpl, queryID(t.ID, t.Score, "r"), t.Type, t.Payload, retryIn, t.ErrorMsg, t.Retried, t.Retry, t.Queue)
|
|
}
|
|
}
|
|
printTable(cols, printRows)
|
|
}
|
|
|
|
func listDead(r *rdb.RDB) {
|
|
tasks, err := r.ListDead()
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
if len(tasks) == 0 {
|
|
fmt.Println("No dead tasks")
|
|
return
|
|
}
|
|
cols := []string{"ID", "Type", "Payload", "Last Failed", "Last Error", "Queue"}
|
|
printRows := func(w io.Writer, tmpl string) {
|
|
for _, t := range tasks {
|
|
fmt.Fprintf(w, tmpl, queryID(t.ID, t.Score, "d"), t.Type, t.Payload, t.LastFailedAt, t.ErrorMsg, t.Queue)
|
|
}
|
|
}
|
|
printTable(cols, printRows)
|
|
}
|
|
|
|
func printTable(cols []string, printRows func(w io.Writer, tmpl string)) {
|
|
format := strings.Repeat("%v\t", len(cols)) + "\n"
|
|
tw := new(tabwriter.Writer).Init(os.Stdout, 0, 8, 2, ' ', 0)
|
|
var headers []interface{}
|
|
var seps []interface{}
|
|
for _, name := range cols {
|
|
headers = append(headers, name)
|
|
seps = append(seps, strings.Repeat("-", len(name)))
|
|
}
|
|
fmt.Fprintf(tw, format, headers...)
|
|
fmt.Fprintf(tw, format, seps...)
|
|
printRows(tw, format)
|
|
tw.Flush()
|
|
}
|