Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Glue ¶
type Glue interface { GetDomain(store kv.Storage) (*domain.Domain, error) CreateSession(store kv.Storage) (Session, error) Open(path string, option pd.SecurityOption) (kv.Storage, error) // 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.
type Session ¶
type Session interface { Execute(ctx context.Context, sql string) error CreateDatabase(ctx context.Context, schema *model.DBInfo) error CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo) error Close() }
Session is an abstraction of the session.Session interface.
Click to show internal directories.
Click to hide internal directories.