-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathbackup.go
64 lines (58 loc) · 1.63 KB
/
backup.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"errors"
"github.com/influxdata/influx-cli/v2/clients/backup"
br "github.com/influxdata/influx-cli/v2/internal/backup_restore"
"github.com/influxdata/influx-cli/v2/pkg/cli/middleware"
"github.com/urfave/cli"
)
func newBackupCmd() cli.Command {
var params backup.Params
// Default to gzipping local files.
params.Compression = br.GzipCompression
return cli.Command{
Name: "backup",
Usage: "Backup database",
Description: `Backs up InfluxDB to a directory
Examples:
# backup all data
influx backup /path/to/backup
`,
ArgsUsage: "path",
Before: middleware.WithBeforeFns(withCli(), withApi(true)),
Flags: append(
append(commonFlagsNoPrint(), getOrgFlags(¶ms.OrgParams)...),
&cli.StringFlag{
Name: "bucket-id",
Usage: "The ID of the bucket to backup",
Destination: ¶ms.BucketID,
},
&cli.StringFlag{
Name: "bucket, b",
Usage: "The name of the bucket to backup",
Destination: ¶ms.BucketName,
},
&cli.GenericFlag{
Name: "compression",
Usage: "Compression to use for local backup files, either 'none' or 'gzip'",
Value: ¶ms.Compression,
},
),
Action: func(ctx *cli.Context) error {
if err := checkOrgFlags(¶ms.OrgParams); err != nil {
return err
}
if ctx.NArg() != 1 {
return errors.New("backup path must be specified as a single positional argument")
}
params.Path = ctx.Args().Get(0)
api := getAPI(ctx)
client := backup.Client{
CLI: getCLI(ctx),
BackupApi: api.BackupApi,
HealthApi: api.HealthApi,
}
return client.Backup(getContext(ctx), ¶ms)
},
}
}