Documentation ¶
Index ¶
Constants ¶
const ( ReplicaIoNotRunning = "No" ReplicaIoConnecting = "Connecting" ReplicaIoRunning = "Yes" ReplicaSqlNotRunning = "No" ReplicaSqlRunning = "Yes" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BinlogReplicaController ¶
type BinlogReplicaController interface { // StartReplica tells the binlog replica controller to start up replication processes for the current replication // configuration. An error is returned if replication was unable to be started. Note the error response only signals // whether there was a problem with the initial replication start up. Replication could fail after being started up // successfully with no error response returned. StartReplica(ctx *sql.Context) error // StopReplica tells the binlog replica controller to stop all replication processes. An error is returned if there // were any problems stopping replication. If no replication processes were running, no error is returned. StopReplica(ctx *sql.Context) error // SetReplicationSourceOptions configures the binlog replica controller with the specified source options. The // replica controller must store this configuration. If any errors are encountered processing and storing the // configuration options, an error is returned. SetReplicationSourceOptions(ctx *sql.Context, options []ReplicationOption) error // SetReplicationFilterOptions configures the binlog replica controller with the specified filter options. Although // the official MySQL implementation does *NOT* persist these options, the replica controller should persist them. // (MySQL requires these options to be manually set after every server restart, or to be specified as command line // arguments when starting the MySQL process.) If any errors are encountered processing and storing the filter // options, an error is returned. SetReplicationFilterOptions(ctx *sql.Context, options []ReplicationOption) error // GetReplicaStatus returns the current status of the replica, or nil if no replication processes are running. If // any problems are encountered assembling the replica's status, an error is returned. GetReplicaStatus(ctx *sql.Context) (*ReplicaStatus, error) // ResetReplica resets the state for the replica. When the |resetAll| parameter is false, a "soft" or minimal reset // is performed – replication errors are reset, but connection information and filters are NOT reset. If |resetAll| // is true, a "hard" reset is performed – replication filters are removed, replication source options are removed, // and `SHOW REPLICA STATUS` shows no results. If replication is currently running, this function should return an // error indicating that replication needs to be stopped before it can be reset. If any errors were encountered // resetting the replica state, an error is returned, otherwise nil is returned if the reset was successful. ResetReplica(ctx *sql.Context, resetAll bool) error }
BinlogReplicaController allows callers to control a binlog replica. Providers built on go-mysql-server may optionally implement this interface and use it when constructing a SQL engine in order to receive callbacks when replication statements (e.g. START REPLICA, SHOW REPLICA STATUS) are being handled.
type IntegerReplicationOptionValue ¶
type IntegerReplicationOptionValue struct {
Value int
}
IntegerReplicationOptionValue is a ReplicationOptionValue implementation that holds an integer value.
func (IntegerReplicationOptionValue) GetValue ¶
func (ov IntegerReplicationOptionValue) GetValue() interface{}
func (IntegerReplicationOptionValue) GetValueAsInt ¶
func (ov IntegerReplicationOptionValue) GetValueAsInt() int
func (IntegerReplicationOptionValue) String ¶
func (ov IntegerReplicationOptionValue) String() string
String implements the Stringer interface and returns a string representation of this option value.
type ReplicaStatus ¶
type ReplicaStatus struct { SourceHost string SourceUser string SourcePort uint ConnectRetry uint32 SourceRetryCount uint64 ReplicaIoRunning string ReplicaSqlRunning string LastSqlErrNumber uint // Alias for LastErrNumber LastSqlError string // Alias for LastError LastIoErrNumber uint LastIoError string SourceServerId string SourceServerUuid string LastSqlErrorTimestamp *time.Time LastIoErrorTimestamp *time.Time RetrievedGtidSet string ExecutedGtidSet string AutoPosition bool ReplicateDoTables []string ReplicateIgnoreTables []string }
ReplicaStatus stores the status of a single binlog replica and is returned by `SHOW REPLICA STATUS`. https://dev.mysql.com/doc/refman/8.0/en/show-replica-status.html
type ReplicationOption ¶
type ReplicationOption struct { Name string Value ReplicationOptionValue }
ReplicationOption represents a single option for replication configuration, as specified through the CHANGE REPLICATION SOURCE TO command: https://dev.mysql.com/doc/refman/8.0/en/change-replication-source-to.html
func NewReplicationOption ¶
func NewReplicationOption(name string, value ReplicationOptionValue) *ReplicationOption
NewReplicationOption creates a new ReplicationOption instance, with the specified |name| and |value|.
type ReplicationOptionValue ¶
type ReplicationOptionValue interface { fmt.Stringer // GetValue returns the raw, untyped option value. This method should generally not be used; callers should instead // find the specific type implementing the ReplicationOptionValue interface and use its functions in order to get // typed values. GetValue() interface{} }
ReplicationOptionValue defines an interface for configuration option values for binlog replication. It holds the values of options for configuring the replication source (i.e. "CHANGE REPLICATION SOURCE TO" options) and for replication filtering (i.g. "SET REPLICATION FILTER" options).
type StringReplicationOptionValue ¶
type StringReplicationOptionValue struct {
Value string
}
StringReplicationOptionValue is a ReplicationOptionValue implementation that holds a string value.
func (StringReplicationOptionValue) GetValue ¶
func (ov StringReplicationOptionValue) GetValue() interface{}
func (StringReplicationOptionValue) GetValueAsString ¶
func (ov StringReplicationOptionValue) GetValueAsString() string
func (StringReplicationOptionValue) String ¶
func (ov StringReplicationOptionValue) String() string
String implements the Stringer interface and returns a string representation of this option value.
type TableNamesReplicationOptionValue ¶
type TableNamesReplicationOptionValue struct {
Value []sql.UnresolvedTable
}
TableNamesReplicationOptionValue is a ReplicationOptionValue implementation that holds a list of table names for its value.
func (TableNamesReplicationOptionValue) GetValue ¶
func (ov TableNamesReplicationOptionValue) GetValue() interface{}
func (TableNamesReplicationOptionValue) GetValueAsTableList ¶
func (ov TableNamesReplicationOptionValue) GetValueAsTableList() []sql.UnresolvedTable
func (TableNamesReplicationOptionValue) String ¶
func (ov TableNamesReplicationOptionValue) String() string
String implements the Stringer interface and returns a string representation of this option value.