-
Notifications
You must be signed in to change notification settings - Fork 73
/
connection-pool.ts
470 lines (416 loc) · 12.9 KB
/
connection-pool.ts
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
/*---------------------------------------------------------
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import * as grpc from '@grpc/grpc-js';
import { ChannelOptions } from '@grpc/grpc-js/build/src/channel-options';
import { loadSync } from '@grpc/proto-loader';
import {
circuitBreaker,
ConsecutiveBreaker,
handleWhen,
IDefaultPolicyContext,
IPolicy,
isBrokenCircuitError,
retry,
} from 'cockatiel';
import {
castGrpcError,
ClientClosedError,
ClientRuntimeError,
EtcdInvalidAuthTokenError,
isRecoverableError,
} from './errors';
import { IOptions } from './options';
import { CallContext, ICallable, Services } from './rpc';
import { resolveCallOptions } from './util';
const packageDefinition = loadSync(`${__dirname}/../proto/rpc.proto`, {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
});
const services = grpc.loadPackageDefinition(packageDefinition);
const etcdserverpb = services.etcdserverpb as { [service: string]: typeof grpc.Client };
const secureProtocolPrefix = 'https:';
/**
* Strips the https?:// from the start of the connection string.
* @param {string} name [description]
*/
function removeProtocolPrefix(name: string) {
return name.replace(/^https?:\/\//, '');
}
/**
* Executes a grpc service calls, casting the error (if any) and wrapping
* into a Promise.
*/
function runServiceCall(
client: grpc.Client,
metadata: grpc.Metadata,
options: grpc.CallOptions | undefined,
method: string,
payload: unknown,
): Promise<any> {
return new Promise((resolve, reject) => {
(client as any)[method](payload, metadata, options || {}, (err: Error | null, res: any) => {
if (err) {
reject(castGrpcError(err));
} else {
resolve(res);
}
});
});
}
/**
* Retrieves and returns an auth token for accessing etcd. This function is
* based on the algorithm in {@link https://git.io/vHzwh}.
*/
class Authenticator {
private awaitingMetadata: Promise<grpc.Metadata> | null = null;
constructor(
private readonly options: IOptions,
private readonly credentials: grpc.ChannelCredentials,
) {}
/**
* Invalides the cached metadata. Clients should call this if they detect
* that the authentication is no longer valid.
*/
public invalidateMetadata(): void {
this.awaitingMetadata = null;
}
/**
* Returns metadata used to make a call to etcd.
*/
public getMetadata(): Promise<grpc.Metadata> {
if (this.awaitingMetadata !== null) {
return this.awaitingMetadata;
}
const hosts =
typeof this.options.hosts === 'string' ? [this.options.hosts] : this.options.hosts;
const auth = this.options.auth;
if (!auth) {
return Promise.resolve(new grpc.Metadata());
}
const attempt = (index: number, previousRejection?: Error): Promise<grpc.Metadata> => {
if (index >= hosts.length) {
this.awaitingMetadata = null;
return Promise.reject(previousRejection);
}
const meta = new grpc.Metadata();
const host = removeProtocolPrefix(hosts[index]);
const context: CallContext = {
method: 'authenticate',
params: { name: auth.username, password: auth.password },
service: 'Auth',
isStream: false,
};
return this.getCredentialsFromHost(
host,
auth.username,
auth.password,
resolveCallOptions(
resolveCallOptions(undefined, auth.callOptions, context),
resolveCallOptions(undefined, this.options.defaultCallOptions, context),
context,
),
this.credentials,
)
.then(token => {
meta.set('token', token);
return meta;
})
.catch(err => attempt(index + 1, err));
};
return (this.awaitingMetadata = attempt(0));
}
/**
* Retrieves an auth token from etcd.
*/
private getCredentialsFromHost(
address: string,
name: string,
password: string,
callOptions: grpc.CallOptions | undefined,
credentials: grpc.ChannelCredentials,
): Promise<string> {
return runServiceCall(
new etcdserverpb.Auth(address, credentials),
new grpc.Metadata(),
callOptions,
'authenticate',
{ name, password },
).then(res => res.token);
}
}
const defaultCircuitBreaker = () =>
circuitBreaker(handleWhen(isRecoverableError), {
halfOpenAfter: 5_000,
breaker: new ConsecutiveBreaker(3),
});
/**
* A Host is one instance of the etcd server, which can contain multiple
* services. It holds GRPC clients to communicate with the host, and will
* be removed from the connection pool upon server failures.
*/
export class Host {
private readonly host: string;
private closed = false;
private cachedServices: { [name in keyof typeof Services]?: grpc.Client } = Object.create(null);
constructor(
host: string,
private readonly channelCredentials: grpc.ChannelCredentials,
private readonly channelOptions?: ChannelOptions,
public readonly faultHandling: IPolicy<IDefaultPolicyContext> = defaultCircuitBreaker(),
) {
this.host = removeProtocolPrefix(host);
}
/**
* Returns the given GRPC service on the current host.
*/
public getServiceClient(name: keyof typeof Services): grpc.Client {
const service = this.cachedServices[name];
if (service) {
return service;
}
if (this.closed) {
throw new ClientClosedError(name);
}
const newService = new etcdserverpb[name](
this.host,
this.channelCredentials,
this.channelOptions,
);
this.cachedServices[name] = newService;
return newService;
}
/**
* Closes the all clients for the given host, allowing them to be
* reestablished on subsequent calls.
*/
public resetAllServices() {
for (const service of Object.values(this.cachedServices)) {
if (service) {
// workaround: https://github.com/grpc/grpc-node/issues/1487
const state = service.getChannel().getConnectivityState(false);
if (state === grpc.connectivityState.CONNECTING) {
service.waitForReady(Date.now() + 10_00, () => setImmediate(() => service.close()));
} else {
service.close();
}
}
}
this.cachedServices = Object.create(null);
}
/**
* Close frees resources associated with the host, tearing down any
* existing client
*/
public close() {
this.resetAllServices();
this.closed = true;
}
}
/**
* Connection wraps GRPC hosts. Note that this wraps the hosts themselves; each
* host can contain multiple discreet services.
*/
export class ConnectionPool implements ICallable<Host> {
/**
* Toggles whether hosts are looped through in a deterministic order.
* For use in tests, should not be toggled in production/
*/
public static deterministicOrder = false;
public readonly callOptionsFactory = this.options.defaultCallOptions;
private readonly hosts: Host[];
private readonly globalPolicy: IPolicy<IDefaultPolicyContext> =
this.options.faultHandling?.global ?? retry(handleWhen(isRecoverableError), { maxAttempts: 3 });
private mockImpl: ICallable<Host> | null;
private authenticator: Authenticator;
constructor(private readonly options: IOptions) {
const credentials = this.buildAuthentication();
const { hosts = '127.0.0.1:2379', grpcOptions } = this.options;
if (typeof hosts === 'string') {
this.hosts = [
new Host(hosts, credentials, grpcOptions, options.faultHandling?.host?.(hosts)),
];
} else if (hosts.length === 0) {
throw new Error('Cannot construct an etcd client with no hosts specified');
} else {
this.hosts = hosts.map(
h => new Host(h, credentials, grpcOptions, options.faultHandling?.host?.(h)),
);
}
}
/**
* Sets a mock interface to use instead of hitting real services.
*/
public mock(callable: ICallable<Host>) {
this.mockImpl = callable;
}
/**
* Removes any existing mock.
*/
public unmock() {
this.mockImpl = null;
}
/**
* Tears down all ongoing connections and resoruces.
*/
public close() {
this.hosts.forEach(host => host.close());
}
/**
* @override
*/
public async exec<T>(
serviceName: keyof typeof Services,
method: string,
payload: unknown,
options?: grpc.CallOptions,
): Promise<T> {
if (this.mockImpl) {
return this.mockImpl.exec(serviceName, method, payload);
}
const shuffleGen = this.shuffledHosts();
let lastError: Error | undefined;
try {
return await this.globalPolicy.execute(() =>
this.withConnection(
serviceName,
async ({ client, metadata }) => {
const resolvedOpts = resolveCallOptions(options, this.callOptionsFactory, {
service: serviceName,
method,
params: payload,
isStream: false,
} as CallContext);
try {
return await runServiceCall(client, metadata, resolvedOpts, method, payload);
} catch (err) {
if (err instanceof EtcdInvalidAuthTokenError) {
this.authenticator.invalidateMetadata();
return this.exec(serviceName, method, payload, options);
}
lastError = err;
throw err;
}
},
shuffleGen,
),
);
} catch (e) {
// If we ran into an error that caused the a circuit to open, but we had
// an error before that happened, throw the original error rather than
// the broken circuit error.
if (isBrokenCircuitError(e) && lastError && !isBrokenCircuitError(lastError)) {
throw lastError;
} else {
throw e;
}
}
}
/**
* @override
*/
public async withConnection<T>(
service: keyof typeof Services,
fn: (args: { resource: Host; client: grpc.Client; metadata: grpc.Metadata }) => Promise<T> | T,
shuffleGenerator = this.shuffledHosts(),
): Promise<T> {
if (this.mockImpl) {
return this.mockImpl.withConnection(service, fn);
}
const metadata = await this.authenticator.getMetadata();
let lastError: Error | undefined;
for (let i = 0; i < this.hosts.length; i++) {
const host = shuffleGenerator.next().value as Host;
let didCallThrough = false;
try {
return await host.faultHandling.execute(() => {
didCallThrough = true;
return fn({ resource: host, client: host.getServiceClient(service), metadata });
});
} catch (e) {
if (isRecoverableError(e)) {
host.resetAllServices();
}
// Check if the call was blocked by some circuit breaker/bulkhead policy
if (didCallThrough) {
throw castGrpcError(e);
}
lastError = e;
}
}
if (!lastError) {
throw new ClientRuntimeError('Connection pool has no hosts');
}
throw castGrpcError(lastError);
}
/**
* @override
*/
public markFailed(resource: Host, error: Error): void {
error = castGrpcError(error);
let threw = false;
if (isRecoverableError(error)) {
resource.resetAllServices();
}
resource.faultHandling
.execute(() => {
if (!threw) {
threw = true;
throw error;
}
})
.catch(() => undefined);
}
/**
* A generator function that endlessly loops through hosts in a
* fisher-yates shuffle for each iteration.
*/
private *shuffledHosts() {
const hosts = this.hosts.slice();
while (true) {
for (let i = hosts.length - 1; i >= 0; i--) {
const idx = ConnectionPool.deterministicOrder ? i : Math.floor((i + 1) * Math.random());
[hosts[idx], hosts[i]] = [hosts[i], hosts[idx]];
yield hosts[i];
}
}
}
/**
* Creates authentication credentials to use for etcd clients.
*/
private buildAuthentication(): grpc.ChannelCredentials {
const { credentials } = this.options;
let protocolCredentials = grpc.credentials.createInsecure();
if (credentials) {
protocolCredentials = grpc.credentials.createSsl(
credentials.rootCertificate,
credentials.privateKey,
credentials.certChain,
);
} else if (this.hasSecureHost()) {
protocolCredentials = grpc.credentials.createSsl();
}
this.authenticator = new Authenticator(this.options, protocolCredentials);
return protocolCredentials;
}
/**
* Returns whether any configured host is set up to use TLS.
*/
private hasSecureHost(): boolean {
const { hosts } = this.options;
if (typeof hosts === 'string') {
return hosts.startsWith(secureProtocolPrefix);
}
const countSecure = hosts.filter(host => host.startsWith(secureProtocolPrefix)).length;
if (countSecure === 0) {
return false;
}
if (countSecure < hosts.length) {
throw new Error('etcd3 cannot be configured with a mix of secure and insecure hosts');
}
return true;
}
}