Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Glue ¶
type Glue interface { // OwnsStorage returns whether the storage returned by Open() is owned // If this method returns false, the connection manager will never close the storage. OwnsStorage() bool StartProgress(ctx context.Context, cmdName string, total int64, redirectLog bool) Progress // Record records some information useful for log-less summary. Record(name string, value uint64) // GetVersion gets BR package version to run backup/restore job GetVersion() string }
Glue is an abstraction of TiDB function calls used in BR.
type Progress ¶
type Progress interface { // Inc increases the progress. This method must be goroutine-safe, and can // be called from any goroutine. Inc() // Close marks the progress as 100% complete and that Inc() can no longer be // called. Close() }
Progress is an interface recording the current execution progress.
Click to show internal directories.
Click to hide internal directories.