package backup
import "github.com/influxdata/influxdb/cmd/influxd/backup"
Package backup implements both the backup and export subcommands for the influxd command.
Index ¶
Constants ¶
const ( // Suffix is a suffix added to the backup while it's in-process. Suffix = ".pending" // Metafile is the base name given to the metastore backups. Metafile = "meta" // BackupFilePattern is the beginning of the pattern for a backup // file. They follow the scheme <database>.<retention>.<shardID>.<increment> BackupFilePattern = "%s.%s.%05d" )
Types ¶
type Command ¶
type Command struct { // The logger passed to the ticker during execution. StdoutLogger *log.Logger StderrLogger *log.Logger // Standard input/output, overridden for testing. Stderr io.Writer Stdout io.Writer BackupFiles []string // contains filtered or unexported fields }
Command represents the program execution for "influxd backup".
func NewCommand ¶
func NewCommand() *Command
NewCommand returns a new instance of Command with default settings.
func (*Command) Run ¶
Run executes the program.
Source Files ¶
- Version
- v1.12.0 (latest)
- Published
- Apr 8, 2025
- Platform
- linux/amd64
- Imports
- 17 packages
- Last checked
- 2 days ago –
Tools for package owners.