Documentation ¶
Index ¶
- type Client
- func (client *Client) ApplySchema(ctx context.Context, tablet *topodatapb.Tablet, change *tmutils.SchemaChange) (*tabletmanagerdatapb.SchemaChangeResult, error)
- func (client *Client) Backup(ctx context.Context, tablet *topodatapb.Tablet, concurrency int) (logutil.EventStream, error)
- func (client *Client) ChangeType(ctx context.Context, tablet *topodatapb.Tablet, dbType topodatapb.TabletType) error
- func (client *Client) DemoteMaster(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
- func (client *Client) ExecuteFetchAsApp(ctx context.Context, tablet *topodatapb.Tablet, query string, maxRows int) (*querypb.QueryResult, error)
- func (client *Client) ExecuteFetchAsDba(ctx context.Context, tablet *topodatapb.Tablet, query string, maxRows int, ...) (*querypb.QueryResult, error)
- func (client *Client) ExecuteHook(ctx context.Context, tablet *topodatapb.Tablet, hk *hook.Hook) (*hook.HookResult, error)
- func (client *Client) GetPermissions(ctx context.Context, tablet *topodatapb.Tablet) (*tabletmanagerdatapb.Permissions, error)
- func (client *Client) GetSchema(ctx context.Context, tablet *topodatapb.Tablet, tables, excludeTables []string, ...) (*tabletmanagerdatapb.SchemaDefinition, error)
- func (client *Client) GetSlaves(ctx context.Context, tablet *topodatapb.Tablet) ([]string, error)
- func (client *Client) IgnoreHealthError(ctx context.Context, tablet *topodatapb.Tablet, pattern string) error
- func (client *Client) InitMaster(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
- func (client *Client) InitSlave(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, ...) error
- func (client *Client) MasterPosition(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
- func (client *Client) Ping(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) PopulateReparentJournal(ctx context.Context, tablet *topodatapb.Tablet, timeCreatedNS int64, ...) error
- func (client *Client) PreflightSchema(ctx context.Context, tablet *topodatapb.Tablet, changes []string) ([]*tabletmanagerdatapb.SchemaChangeResult, error)
- func (client *Client) PromoteSlave(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
- func (client *Client) PromoteSlaveWhenCaughtUp(ctx context.Context, tablet *topodatapb.Tablet, pos string) (string, error)
- func (client *Client) RefreshState(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) ReloadSchema(ctx context.Context, tablet *topodatapb.Tablet, waitPosition string) error
- func (client *Client) ResetReplication(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) RunBlpUntil(ctx context.Context, tablet *topodatapb.Tablet, ...) (string, error)
- func (client *Client) RunHealthCheck(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) SetMaster(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, ...) error
- func (client *Client) SetReadOnly(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) SetReadWrite(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) SlaveStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.Status, error)
- func (client *Client) SlaveWasPromoted(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) SlaveWasRestarted(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias) error
- func (client *Client) Sleep(ctx context.Context, tablet *topodatapb.Tablet, duration time.Duration) error
- func (client *Client) StartBlp(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) StartSlave(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) StopBlp(ctx context.Context, tablet *topodatapb.Tablet) ([]*tabletmanagerdatapb.BlpPosition, error)
- func (client *Client) StopReplicationAndGetStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.Status, error)
- func (client *Client) StopSlave(ctx context.Context, tablet *topodatapb.Tablet) error
- func (client *Client) StopSlaveMinimum(ctx context.Context, tablet *topodatapb.Tablet, minPos string, ...) (string, error)
- func (client *Client) TabletExternallyReparented(ctx context.Context, tablet *topodatapb.Tablet, externalID string) error
- func (client *Client) WaitBlpPosition(ctx context.Context, tablet *topodatapb.Tablet, ...) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client implements tmclient.TabletManagerClient
func (*Client) ApplySchema ¶
func (client *Client) ApplySchema(ctx context.Context, tablet *topodatapb.Tablet, change *tmutils.SchemaChange) (*tabletmanagerdatapb.SchemaChangeResult, error)
ApplySchema is part of the tmclient.TabletManagerClient interface.
func (*Client) Backup ¶
func (client *Client) Backup(ctx context.Context, tablet *topodatapb.Tablet, concurrency int) (logutil.EventStream, error)
Backup is part of the tmclient.TabletManagerClient interface.
func (*Client) ChangeType ¶
func (client *Client) ChangeType(ctx context.Context, tablet *topodatapb.Tablet, dbType topodatapb.TabletType) error
ChangeType is part of the tmclient.TabletManagerClient interface.
func (*Client) DemoteMaster ¶
DemoteMaster is part of the tmclient.TabletManagerClient interface.
func (*Client) ExecuteFetchAsApp ¶
func (client *Client) ExecuteFetchAsApp(ctx context.Context, tablet *topodatapb.Tablet, query string, maxRows int) (*querypb.QueryResult, error)
ExecuteFetchAsApp is part of the tmclient.TabletManagerClient interface.
func (*Client) ExecuteFetchAsDba ¶
func (client *Client) ExecuteFetchAsDba(ctx context.Context, tablet *topodatapb.Tablet, query string, maxRows int, disableBinlogs, reloadSchema bool) (*querypb.QueryResult, error)
ExecuteFetchAsDba is part of the tmclient.TabletManagerClient interface.
func (*Client) ExecuteHook ¶
func (client *Client) ExecuteHook(ctx context.Context, tablet *topodatapb.Tablet, hk *hook.Hook) (*hook.HookResult, error)
ExecuteHook is part of the tmclient.TabletManagerClient interface.
func (*Client) GetPermissions ¶
func (client *Client) GetPermissions(ctx context.Context, tablet *topodatapb.Tablet) (*tabletmanagerdatapb.Permissions, error)
GetPermissions is part of the tmclient.TabletManagerClient interface.
func (*Client) GetSchema ¶
func (client *Client) GetSchema(ctx context.Context, tablet *topodatapb.Tablet, tables, excludeTables []string, includeViews bool) (*tabletmanagerdatapb.SchemaDefinition, error)
GetSchema is part of the tmclient.TabletManagerClient interface.
func (*Client) IgnoreHealthError ¶
func (client *Client) IgnoreHealthError(ctx context.Context, tablet *topodatapb.Tablet, pattern string) error
IgnoreHealthError is part of the tmclient.TabletManagerClient interface.
func (*Client) InitMaster ¶
InitMaster is part of the tmclient.TabletManagerClient interface.
func (*Client) InitSlave ¶
func (client *Client) InitSlave(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, replicationPosition string, timeCreatedNS int64) error
InitSlave is part of the tmclient.TabletManagerClient interface.
func (*Client) MasterPosition ¶
func (client *Client) MasterPosition(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
MasterPosition is part of the tmclient.TabletManagerClient interface.
func (*Client) PopulateReparentJournal ¶
func (client *Client) PopulateReparentJournal(ctx context.Context, tablet *topodatapb.Tablet, timeCreatedNS int64, actionName string, masterAlias *topodatapb.TabletAlias, pos string) error
PopulateReparentJournal is part of the tmclient.TabletManagerClient interface.
func (*Client) PreflightSchema ¶
func (client *Client) PreflightSchema(ctx context.Context, tablet *topodatapb.Tablet, changes []string) ([]*tabletmanagerdatapb.SchemaChangeResult, error)
PreflightSchema is part of the tmclient.TabletManagerClient interface.
func (*Client) PromoteSlave ¶
PromoteSlave is part of the tmclient.TabletManagerClient interface.
func (*Client) PromoteSlaveWhenCaughtUp ¶
func (client *Client) PromoteSlaveWhenCaughtUp(ctx context.Context, tablet *topodatapb.Tablet, pos string) (string, error)
PromoteSlaveWhenCaughtUp is part of the tmclient.TabletManagerClient interface.
func (*Client) RefreshState ¶
RefreshState is part of the tmclient.TabletManagerClient interface.
func (*Client) ReloadSchema ¶
func (client *Client) ReloadSchema(ctx context.Context, tablet *topodatapb.Tablet, waitPosition string) error
ReloadSchema is part of the tmclient.TabletManagerClient interface.
func (*Client) ResetReplication ¶
ResetReplication is part of the tmclient.TabletManagerClient interface.
func (*Client) RunBlpUntil ¶
func (client *Client) RunBlpUntil(ctx context.Context, tablet *topodatapb.Tablet, positions []*tabletmanagerdatapb.BlpPosition, waitTime time.Duration) (string, error)
RunBlpUntil is part of the tmclient.TabletManagerClient interface.
func (*Client) RunHealthCheck ¶
RunHealthCheck is part of the tmclient.TabletManagerClient interface.
func (*Client) SetMaster ¶
func (client *Client) SetMaster(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, timeCreatedNS int64, forceStartSlave bool) error
SetMaster is part of the tmclient.TabletManagerClient interface.
func (*Client) SetReadOnly ¶
SetReadOnly is part of the tmclient.TabletManagerClient interface.
func (*Client) SetReadWrite ¶
SetReadWrite is part of the tmclient.TabletManagerClient interface.
func (*Client) SlaveStatus ¶
func (client *Client) SlaveStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.Status, error)
SlaveStatus is part of the tmclient.TabletManagerClient interface.
func (*Client) SlaveWasPromoted ¶
SlaveWasPromoted is part of the tmclient.TabletManagerClient interface.
func (*Client) SlaveWasRestarted ¶
func (client *Client) SlaveWasRestarted(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias) error
SlaveWasRestarted is part of the tmclient.TabletManagerClient interface.
func (*Client) Sleep ¶
func (client *Client) Sleep(ctx context.Context, tablet *topodatapb.Tablet, duration time.Duration) error
Sleep is part of the tmclient.TabletManagerClient interface.
func (*Client) StartSlave ¶
StartSlave is part of the tmclient.TabletManagerClient interface.
func (*Client) StopBlp ¶
func (client *Client) StopBlp(ctx context.Context, tablet *topodatapb.Tablet) ([]*tabletmanagerdatapb.BlpPosition, error)
StopBlp is part of the tmclient.TabletManagerClient interface.
func (*Client) StopReplicationAndGetStatus ¶
func (client *Client) StopReplicationAndGetStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.Status, error)
StopReplicationAndGetStatus is part of the tmclient.TabletManagerClient interface.
func (*Client) StopSlaveMinimum ¶
func (client *Client) StopSlaveMinimum(ctx context.Context, tablet *topodatapb.Tablet, minPos string, waitTime time.Duration) (string, error)
StopSlaveMinimum is part of the tmclient.TabletManagerClient interface.
func (*Client) TabletExternallyReparented ¶
func (client *Client) TabletExternallyReparented(ctx context.Context, tablet *topodatapb.Tablet, externalID string) error
TabletExternallyReparented is part of the tmclient.TabletManagerClient interface.
func (*Client) WaitBlpPosition ¶
func (client *Client) WaitBlpPosition(ctx context.Context, tablet *topodatapb.Tablet, blpPosition *tabletmanagerdatapb.BlpPosition, waitTime time.Duration) error
WaitBlpPosition is part of the tmclient.TabletManagerClient interface.