-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
rpc_client_api.go
274 lines (206 loc) · 11.9 KB
/
rpc_client_api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package tmclient
import (
"context"
"time"
"github.com/spf13/pflag"
"vitess.io/vitess/go/vt/hook"
"vitess.io/vitess/go/vt/log"
"vitess.io/vitess/go/vt/logutil"
"vitess.io/vitess/go/vt/mysqlctl/tmutils"
"vitess.io/vitess/go/vt/servenv"
querypb "vitess.io/vitess/go/vt/proto/query"
replicationdatapb "vitess.io/vitess/go/vt/proto/replicationdata"
tabletmanagerdatapb "vitess.io/vitess/go/vt/proto/tabletmanagerdata"
topodatapb "vitess.io/vitess/go/vt/proto/topodata"
)
// tabletManagerProtocol is the implementation to use for tablet
// manager protocol.
var tabletManagerProtocol = "grpc"
// RegisterFlags registers the tabletconn flags on a given flagset. It is
// exported for tests that need to inject a particular TabletManagerProtocol.
func RegisterFlags(fs *pflag.FlagSet) {
fs.StringVar(&tabletManagerProtocol, "tablet_manager_protocol", tabletManagerProtocol, "Protocol to use to make tabletmanager RPCs to vttablets.")
}
func init() {
for _, cmd := range []string{
"vtbackup",
"vtcombo",
"vtctl",
"vtctld",
"vtctldclient",
"vtgr",
"vtorc",
"vttablet",
"vttestserver",
} {
servenv.OnParseFor(cmd, RegisterFlags)
}
}
// TabletManagerClient defines the interface used to talk to a remote tablet
type TabletManagerClient interface {
//
// Various read-only methods
//
// Ping will try to ping the remote tablet
Ping(ctx context.Context, tablet *topodatapb.Tablet) error
// GetSchema asks the remote tablet for its database schema
GetSchema(ctx context.Context, tablet *topodatapb.Tablet, request *tabletmanagerdatapb.GetSchemaRequest) (*tabletmanagerdatapb.SchemaDefinition, error)
// GetPermissions asks the remote tablet for its permissions list
GetPermissions(ctx context.Context, tablet *topodatapb.Tablet) (*tabletmanagerdatapb.Permissions, error)
//
// Various read-write methods
//
// SetReadOnly makes the mysql instance read-only
SetReadOnly(ctx context.Context, tablet *topodatapb.Tablet) error
// SetReadWrite makes the mysql instance read-write
SetReadWrite(ctx context.Context, tablet *topodatapb.Tablet) error
// ChangeType asks the remote tablet to change its type
ChangeType(ctx context.Context, tablet *topodatapb.Tablet, dbType topodatapb.TabletType, semiSync bool) error
// Sleep will sleep for a duration (used for tests)
Sleep(ctx context.Context, tablet *topodatapb.Tablet, duration time.Duration) error
// ExecuteHook executes the provided hook remotely
ExecuteHook(ctx context.Context, tablet *topodatapb.Tablet, hk *hook.Hook) (*hook.HookResult, error)
// RefreshState asks the remote tablet to reload its tablet record
RefreshState(ctx context.Context, tablet *topodatapb.Tablet) error
// RunHealthCheck asks the remote tablet to run a health check cycle
RunHealthCheck(ctx context.Context, tablet *topodatapb.Tablet) error
// ReloadSchema asks the remote tablet to reload its schema
ReloadSchema(ctx context.Context, tablet *topodatapb.Tablet, waitPosition string) error
// PreflightSchema will test a list of schema changes.
PreflightSchema(ctx context.Context, tablet *topodatapb.Tablet, changes []string) ([]*tabletmanagerdatapb.SchemaChangeResult, error)
// ApplySchema will apply a schema change
ApplySchema(ctx context.Context, tablet *topodatapb.Tablet, change *tmutils.SchemaChange) (*tabletmanagerdatapb.SchemaChangeResult, error)
LockTables(ctx context.Context, tablet *topodatapb.Tablet) error
UnlockTables(ctx context.Context, tablet *topodatapb.Tablet) error
// ExecuteQuery executes a query remotely on the tablet.
// req.DbName is ignored in favor of using the tablet's DbName field, and,
// if req.CallerId is nil, the effective callerid will be extracted from
// the context.
ExecuteQuery(ctx context.Context, tablet *topodatapb.Tablet, req *tabletmanagerdatapb.ExecuteQueryRequest) (*querypb.QueryResult, error)
// ExecuteFetchAsDba executes a query remotely using the DBA pool.
// req.DbName is ignored in favor of using the tablet's DbName field.
// If usePool is set, a connection pool may be used to make the
// query faster. Close() should close the pool in that case.
ExecuteFetchAsDba(ctx context.Context, tablet *topodatapb.Tablet, usePool bool, req *tabletmanagerdatapb.ExecuteFetchAsDbaRequest) (*querypb.QueryResult, error)
// ExecuteFetchAsAllPrivs executes a query remotely using the allprivs user.
// req.DbName is ignored in favor of using the tablet's DbName field.
ExecuteFetchAsAllPrivs(ctx context.Context, tablet *topodatapb.Tablet, req *tabletmanagerdatapb.ExecuteFetchAsAllPrivsRequest) (*querypb.QueryResult, error)
// ExecuteFetchAsApp executes a query remotely using the App pool
// If usePool is set, a connection pool may be used to make the
// query faster. Close() should close the pool in that case.
ExecuteFetchAsApp(ctx context.Context, tablet *topodatapb.Tablet, usePool bool, req *tabletmanagerdatapb.ExecuteFetchAsAppRequest) (*querypb.QueryResult, error)
//
// Replication related methods
//
// PrimaryStatus returns the tablet's mysql primary status.
PrimaryStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.PrimaryStatus, error)
// ReplicationStatus returns the tablet's mysql replication status.
ReplicationStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.Status, error)
// FullStatus returns the tablet's mysql replication status.
FullStatus(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.FullStatus, error)
// StopReplication stops the mysql replication
StopReplication(ctx context.Context, tablet *topodatapb.Tablet) error
// StopReplicationMinimum stops the mysql replication after it reaches
// the provided minimum point
StopReplicationMinimum(ctx context.Context, tablet *topodatapb.Tablet, stopPos string, waitTime time.Duration) (string, error)
// StartReplication starts the mysql replication
StartReplication(ctx context.Context, tablet *topodatapb.Tablet, semiSync bool) error
// StartReplicationUntilAfter starts replication until after the position specified
StartReplicationUntilAfter(ctx context.Context, tablet *topodatapb.Tablet, position string, duration time.Duration) error
// GetReplicas returns the addresses of the replicas
GetReplicas(ctx context.Context, tablet *topodatapb.Tablet) ([]string, error)
// PrimaryPosition returns the tablet's primary position
PrimaryPosition(ctx context.Context, tablet *topodatapb.Tablet) (string, error)
// WaitForPosition waits for the position to be reached
WaitForPosition(ctx context.Context, tablet *topodatapb.Tablet, pos string) error
// VReplicationExec executes a VReplication command
VReplicationExec(ctx context.Context, tablet *topodatapb.Tablet, query string) (*querypb.QueryResult, error)
VReplicationWaitForPos(ctx context.Context, tablet *topodatapb.Tablet, id int32, pos string) error
UpdateVRWorkflow(ctx context.Context, tablet *topodatapb.Tablet, request *tabletmanagerdatapb.UpdateVRWorkflowRequest) (*tabletmanagerdatapb.UpdateVRWorkflowResponse, error)
VDiff(ctx context.Context, tablet *topodatapb.Tablet, req *tabletmanagerdatapb.VDiffRequest) (*tabletmanagerdatapb.VDiffResponse, error)
//
// Reparenting related functions
//
// ResetReplication tells a tablet to completely reset its
// replication. All binary and relay logs are flushed. All
// replication positions are reset.
ResetReplication(ctx context.Context, tablet *topodatapb.Tablet) error
// InitPrimary tells a tablet to make itself the new primary,
// and return the replication position the replicas should use to
// reparent to it.
InitPrimary(ctx context.Context, tablet *topodatapb.Tablet, semiSync bool) (string, error)
// PopulateReparentJournal asks the primary to insert a row in
// its reparent_journal table.
PopulateReparentJournal(ctx context.Context, tablet *topodatapb.Tablet, timeCreatedNS int64, actionName string, tabletAlias *topodatapb.TabletAlias, pos string) error
// InitReplica tells a tablet to start replicating from the
// passed in primary tablet alias, and wait for the row in the
// reparent_journal table.
InitReplica(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, replicationPosition string, timeCreatedNS int64, semiSync bool) error
// DemotePrimary tells the soon-to-be-former primary it's going to change,
// and it should go read-only and return its current position.
DemotePrimary(ctx context.Context, tablet *topodatapb.Tablet) (*replicationdatapb.PrimaryStatus, error)
// UndoDemotePrimary reverts all changes made by DemotePrimary
// To be used if we are unable to promote the chosen new primary
UndoDemotePrimary(ctx context.Context, tablet *topodatapb.Tablet, semiSync bool) error
// ReplicaWasPromoted tells the remote tablet it is now the primary
ReplicaWasPromoted(ctx context.Context, tablet *topodatapb.Tablet) error
// ResetReplicationParameters resets the replica replication parameters
ResetReplicationParameters(ctx context.Context, tablet *topodatapb.Tablet) error
// SetReplicationSource tells a tablet to start replicating from the
// passed in tablet alias, and wait for the row in the
// reparent_journal table (if timeCreatedNS is non-zero).
SetReplicationSource(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias, timeCreatedNS int64, waitPosition string, forceStartReplication bool, semiSync bool) error
// ReplicaWasRestarted tells the replica tablet its primary has changed
ReplicaWasRestarted(ctx context.Context, tablet *topodatapb.Tablet, parent *topodatapb.TabletAlias) error
// StopReplicationAndGetStatus stops replication and returns the
// current position.
StopReplicationAndGetStatus(ctx context.Context, tablet *topodatapb.Tablet, stopReplicationMode replicationdatapb.StopReplicationMode) (*replicationdatapb.StopReplicationStatus, error)
// PromoteReplica makes the tablet the new primary
PromoteReplica(ctx context.Context, tablet *topodatapb.Tablet, semiSync bool) (string, error)
//
// Backup / restore related methods
//
// Backup creates a database backup
Backup(ctx context.Context, tablet *topodatapb.Tablet, req *tabletmanagerdatapb.BackupRequest) (logutil.EventStream, error)
// RestoreFromBackup deletes local data and restores database from backup
RestoreFromBackup(ctx context.Context, tablet *topodatapb.Tablet, req *tabletmanagerdatapb.RestoreFromBackupRequest) (logutil.EventStream, error)
//
// Management methods
//
// Close will be called when this TabletManagerClient won't be
// used any more. It can be used to free any resource.
Close()
}
// TabletManagerClientFactory is the factory method to create
// TabletManagerClient objects.
type TabletManagerClientFactory func() TabletManagerClient
var tabletManagerClientFactories = make(map[string]TabletManagerClientFactory)
// RegisterTabletManagerClientFactory allows modules to register
// TabletManagerClient implementations. Should be called on init().
func RegisterTabletManagerClientFactory(name string, factory TabletManagerClientFactory) {
if _, ok := tabletManagerClientFactories[name]; ok {
log.Fatalf("RegisterTabletManagerClient %s already exists", name)
}
tabletManagerClientFactories[name] = factory
}
// NewTabletManagerClient creates a new TabletManagerClient. Should be
// called after flags are parsed.
func NewTabletManagerClient() TabletManagerClient {
f, ok := tabletManagerClientFactories[tabletManagerProtocol]
if !ok {
log.Exitf("No TabletManagerProtocol registered with name %s", tabletManagerProtocol)
}
return f()
}