forked from googleapis/java-spanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiplexedSessionDatabaseClient.java
813 lines (719 loc) · 31.2 KB
/
MultiplexedSessionDatabaseClient.java
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
/*
* Copyright 2024 Google LLC
*
* 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 com.google.cloud.spanner;
import static com.google.cloud.spanner.SessionImpl.NO_CHANNEL_HINT;
import static com.google.cloud.spanner.SpannerExceptionFactory.newSpannerException;
import com.google.api.core.ApiFuture;
import com.google.api.core.ApiFutures;
import com.google.api.core.SettableApiFuture;
import com.google.api.gax.rpc.ServerStream;
import com.google.cloud.Timestamp;
import com.google.cloud.spanner.Options.TransactionOption;
import com.google.cloud.spanner.Options.UpdateOption;
import com.google.cloud.spanner.SessionClient.SessionConsumer;
import com.google.cloud.spanner.SessionPool.SessionPoolTransactionRunner;
import com.google.cloud.spanner.SpannerException.ResourceNotFoundException;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Preconditions;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.spanner.v1.BatchWriteResponse;
import com.google.spanner.v1.BeginTransactionRequest;
import com.google.spanner.v1.RequestOptions;
import com.google.spanner.v1.Transaction;
import java.time.Clock;
import java.time.Duration;
import java.time.Instant;
import java.util.BitSet;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
/**
* {@link TransactionRunner} that automatically handles "UNIMPLEMENTED" errors with the message
* "Transaction type read_write not supported with multiplexed sessions" by switching from a
* multiplexed session to a regular session and then restarts the transaction.
*/
class MultiplexedSessionTransactionRunner implements TransactionRunner {
private final SessionPool sessionPool;
private final TransactionRunnerImpl transactionRunnerForMultiplexedSession;
private SessionPoolTransactionRunner transactionRunnerForRegularSession;
private final TransactionOption[] options;
private boolean isUsingMultiplexedSession = true;
public MultiplexedSessionTransactionRunner(
SessionImpl multiplexedSession, SessionPool sessionPool, TransactionOption... options) {
this.sessionPool = sessionPool;
this.transactionRunnerForMultiplexedSession =
new TransactionRunnerImpl(
multiplexedSession, options); // Uses multiplexed session initially
multiplexedSession.setActive(this.transactionRunnerForMultiplexedSession);
this.options = options;
}
private TransactionRunner getRunner() {
if (this.isUsingMultiplexedSession) {
return this.transactionRunnerForMultiplexedSession;
} else {
if (this.transactionRunnerForRegularSession == null) {
this.transactionRunnerForRegularSession =
new SessionPoolTransactionRunner<>(
sessionPool.getSession(),
sessionPool.getPooledSessionReplacementHandler(),
options);
}
return this.transactionRunnerForRegularSession;
}
}
@Override
public <T> T run(TransactionCallable<T> callable) {
while (true) {
try {
return getRunner().run(callable);
} catch (SpannerException e) {
if (e.getErrorCode() == ErrorCode.UNIMPLEMENTED
&& verifyUnimplementedErrorMessageForRWMux(e)) {
this.isUsingMultiplexedSession = false; // Fallback to regular session
} else {
throw e; // Other errors propagate
}
}
}
}
@Override
public Timestamp getCommitTimestamp() {
return getRunner().getCommitTimestamp();
}
@Override
public CommitResponse getCommitResponse() {
return getRunner().getCommitResponse();
}
@Override
public TransactionRunner allowNestedTransaction() {
getRunner().allowNestedTransaction();
return this;
}
private boolean verifyUnimplementedErrorMessageForRWMux(SpannerException spannerException) {
if (spannerException.getCause() == null) {
return false;
}
if (spannerException.getCause().getMessage() == null) {
return false;
}
return spannerException
.getCause()
.getMessage()
.contains("Transaction type read_write not supported with multiplexed sessions");
}
}
/**
* {@link DatabaseClient} implementation that uses a single multiplexed session to execute
* transactions.
*/
final class MultiplexedSessionDatabaseClient extends AbstractMultiplexedSessionDatabaseClient {
/**
* Represents a single transaction on a multiplexed session. This can be both a single-use or
* multi-use transaction, and both read/write or read-only transaction. This can be compared to a
* 'checked out session' of a pool, except as multiplexed sessions support multiple parallel
* transactions, we do not need to actually check out and exclusively reserve a single session for
* a transaction. This class therefore only contains context information about the current
* transaction, such as the current span, and a reference to the multiplexed session that is used
* for the transaction.
*/
static class MultiplexedSessionTransaction extends SessionImpl {
private final MultiplexedSessionDatabaseClient client;
private final boolean singleUse;
private final int singleUseChannelHint;
private boolean done;
private final SessionPool pool;
MultiplexedSessionTransaction(
MultiplexedSessionDatabaseClient client,
ISpan span,
SessionReference sessionReference,
int singleUseChannelHint,
boolean singleUse) {
this(client, span, sessionReference, singleUseChannelHint, singleUse, null);
}
MultiplexedSessionTransaction(
MultiplexedSessionDatabaseClient client,
ISpan span,
SessionReference sessionReference,
int singleUseChannelHint,
boolean singleUse,
SessionPool pool) {
super(client.sessionClient.getSpanner(), sessionReference, singleUseChannelHint);
this.client = client;
this.singleUse = singleUse;
this.singleUseChannelHint = singleUseChannelHint;
this.client.numSessionsAcquired.incrementAndGet();
this.pool = pool;
setCurrentSpan(span);
}
@Override
void onError(SpannerException spannerException) {
if (this.client.resourceNotFoundException.get() == null
&& (spannerException instanceof DatabaseNotFoundException
|| spannerException instanceof InstanceNotFoundException
|| spannerException instanceof SessionNotFoundException)) {
// This could in theory set this field more than once, but we don't want to bother with
// synchronizing, as it does not really matter exactly which error is set.
this.client.resourceNotFoundException.set((ResourceNotFoundException) spannerException);
}
// Mark multiplexed sessions for RW as unimplemented and fall back to regular sessions if
// UNIMPLEMENTED with error message "Transaction type read_write not supported with
// multiplexed sessions" is returned.
this.client.maybeMarkUnimplementedForRW(spannerException);
// Mark multiplexed sessions for Partitioned Ops as unimplemented and fall back to regular
// sessions if
// UNIMPLEMENTED with error message "Partitioned operations are not supported with multiplexed
// sessions".
this.client.maybeMarkUnimplementedForPartitionedOps(spannerException);
}
@Override
void onReadDone() {
// This method is called whenever a ResultSet that was returned by this transaction is closed.
// Close the active transaction if this is a single-use transaction. This ensures that the
// active span is ended.
if (this.singleUse && getActiveTransaction() != null) {
getActiveTransaction().close();
setActive(null);
if (this.singleUseChannelHint != NO_CHANNEL_HINT) {
this.client.channelUsage.clear(this.singleUseChannelHint);
}
this.client.numCurrentSingleUseTransactions.decrementAndGet();
}
}
@Override
public CommitResponse writeAtLeastOnceWithOptions(
Iterable<Mutation> mutations, TransactionOption... options) throws SpannerException {
CommitResponse response = super.writeAtLeastOnceWithOptions(mutations, options);
onTransactionDone();
return response;
}
@Override
public TransactionRunner readWriteTransaction(TransactionOption... options) {
return new MultiplexedSessionTransactionRunner(this, pool, options);
}
@Override
void onTransactionDone() {
boolean markedDone = false;
synchronized (this) {
if (!this.done) {
this.done = true;
markedDone = true;
}
}
if (markedDone) {
client.numSessionsReleased.incrementAndGet();
}
}
@Override
public void close() {
// no-op, we don't want to delete the multiplexed session.
}
}
/**
* Keeps track of which channels have been 'given' to single-use transactions for a given Spanner
* instance.
*/
private static final Map<SpannerImpl, BitSet> CHANNEL_USAGE = new HashMap<>();
private final BitSet channelUsage;
private final int numChannels;
/**
* The number of single-use read-only transactions currently running on this multiplexed session.
*/
private final AtomicInteger numCurrentSingleUseTransactions = new AtomicInteger();
private boolean isClosed;
/** The duration before we try to replace the multiplexed session. The default is 7 days. */
private final Duration sessionExpirationDuration;
private final SessionClient sessionClient;
private final TraceWrapper tracer;
/** The current multiplexed session that is used by this client. */
private final AtomicReference<ApiFuture<SessionReference>> multiplexedSessionReference;
/**
* The Transaction response returned by the BeginTransaction request with read-write when a
* multiplexed session is created during client initialization.
*/
private final SettableApiFuture<Transaction> readWriteBeginTransactionReferenceFuture;
/** The expiration date/time of the current multiplexed session. */
private final AtomicReference<Instant> expirationDate;
/**
* The maintainer runs every 10 minutes to check whether the multiplexed session should be
* refreshed.
*/
private final MultiplexedSessionMaintainer maintainer;
/**
* If a {@link DatabaseNotFoundException} or {@link InstanceNotFoundException} is returned by the
* server, then we set this field to mark the client as invalid.
*/
private final AtomicReference<ResourceNotFoundException> resourceNotFoundException =
new AtomicReference<>();
private final AtomicLong numSessionsAcquired = new AtomicLong();
private final AtomicLong numSessionsReleased = new AtomicLong();
/**
* This flag is set to true if the server return UNIMPLEMENTED when we try to create a multiplexed
* session. TODO: Remove once this is guaranteed to be available.
*/
private final AtomicBoolean unimplemented = new AtomicBoolean(false);
/**
* This flag is set to true if the server return UNIMPLEMENTED when a read-write transaction is
* executed on a multiplexed session. TODO: Remove once this is guaranteed to be available.
*/
@VisibleForTesting final AtomicBoolean unimplementedForRW = new AtomicBoolean(false);
/**
* This flag is set to true if the server return UNIMPLEMENTED when partitioned transaction is
* executed on a multiplexed session. TODO: Remove once this is guaranteed to be available.
*/
@VisibleForTesting final AtomicBoolean unimplementedForPartitionedOps = new AtomicBoolean(false);
private SessionPool pool;
MultiplexedSessionDatabaseClient(SessionClient sessionClient) {
this(sessionClient, Clock.systemUTC());
}
@VisibleForTesting
MultiplexedSessionDatabaseClient(SessionClient sessionClient, Clock clock) {
this.numChannels = sessionClient.getSpanner().getOptions().getNumChannels();
synchronized (CHANNEL_USAGE) {
CHANNEL_USAGE.putIfAbsent(sessionClient.getSpanner(), new BitSet(numChannels));
this.channelUsage = CHANNEL_USAGE.get(sessionClient.getSpanner());
}
this.sessionExpirationDuration =
Duration.ofMillis(
sessionClient
.getSpanner()
.getOptions()
.getSessionPoolOptions()
.getMultiplexedSessionMaintenanceDuration()
.toMillis());
// Initialize the expiration date to the current time + 7 days to avoid unnecessary null checks.
// The time difference with the actual creation is small enough that it does not matter.
this.expirationDate = new AtomicReference<>(Instant.now().plus(this.sessionExpirationDuration));
this.sessionClient = sessionClient;
this.maintainer = new MultiplexedSessionMaintainer(clock);
this.tracer = sessionClient.getSpanner().getTracer();
final SettableApiFuture<SessionReference> initialSessionReferenceFuture =
SettableApiFuture.create();
this.readWriteBeginTransactionReferenceFuture = SettableApiFuture.create();
this.multiplexedSessionReference = new AtomicReference<>(initialSessionReferenceFuture);
this.sessionClient.asyncCreateMultiplexedSession(
new SessionConsumer() {
@Override
public void onSessionReady(SessionImpl session) {
initialSessionReferenceFuture.set(session.getSessionReference());
// only start the maintainer if we actually managed to create a session in the first
// place.
maintainer.start();
// initiate a begin transaction request to verify if read-write transactions are
// supported using multiplexed sessions.
if (sessionClient
.getSpanner()
.getOptions()
.getSessionPoolOptions()
.getUseMultiplexedSessionForRW()
&& !sessionClient
.getSpanner()
.getOptions()
.getSessionPoolOptions()
.getSkipVerifyBeginTransactionForMuxRW()) {
verifyBeginTransactionWithRWOnMultiplexedSessionAsync(session.getName());
}
if (sessionClient
.getSpanner()
.getOptions()
.getSessionPoolOptions()
.isAutoDetectDialect()) {
MAINTAINER_SERVICE.submit(() -> getDialect());
}
}
@Override
public void onSessionCreateFailure(Throwable t, int createFailureForSessionCount) {
// Mark multiplexes sessions as unimplemented and fall back to regular sessions if
// UNIMPLEMENTED is returned.
maybeMarkUnimplemented(t);
initialSessionReferenceFuture.setException(t);
}
});
maybeWaitForSessionCreation(
sessionClient.getSpanner().getOptions().getSessionPoolOptions(),
initialSessionReferenceFuture);
}
void setPool(SessionPool pool) {
this.pool = pool;
}
private static void maybeWaitForSessionCreation(
SessionPoolOptions sessionPoolOptions, ApiFuture<SessionReference> future) {
Duration waitDuration = sessionPoolOptions.getWaitForMinSessions();
if (waitDuration != null && !waitDuration.isZero()) {
long timeoutMillis = waitDuration.toMillis();
try {
future.get(timeoutMillis, TimeUnit.MILLISECONDS);
} catch (ExecutionException executionException) {
throw SpannerExceptionFactory.asSpannerException(executionException.getCause());
} catch (InterruptedException interruptedException) {
throw SpannerExceptionFactory.propagateInterrupt(interruptedException);
} catch (TimeoutException timeoutException) {
throw SpannerExceptionFactory.newSpannerException(
ErrorCode.DEADLINE_EXCEEDED,
"Timed out after waiting " + timeoutMillis + "ms for multiplexed session creation");
}
}
}
private void maybeMarkUnimplemented(Throwable t) {
SpannerException spannerException = SpannerExceptionFactory.asSpannerException(t);
if (spannerException.getErrorCode() == ErrorCode.UNIMPLEMENTED) {
unimplemented.set(true);
}
}
private void maybeMarkUnimplementedForRW(SpannerException spannerException) {
if (spannerException.getErrorCode() == ErrorCode.UNIMPLEMENTED
&& verifyErrorMessage(
spannerException,
"Transaction type read_write not supported with multiplexed sessions")) {
unimplementedForRW.set(true);
}
}
boolean maybeMarkUnimplementedForPartitionedOps(SpannerException spannerException) {
if (spannerException.getErrorCode() == ErrorCode.UNIMPLEMENTED
&& verifyErrorMessage(
spannerException,
"Transaction type partitioned_dml not supported with multiplexed sessions")) {
unimplementedForPartitionedOps.set(true);
return true;
}
return false;
}
static boolean verifyErrorMessage(SpannerException spannerException, String message) {
if (spannerException.getCause() == null) {
return false;
}
if (spannerException.getCause().getMessage() == null) {
return false;
}
return spannerException.getCause().getMessage().contains(message);
}
private void verifyBeginTransactionWithRWOnMultiplexedSessionAsync(String sessionName) {
// TODO: Remove once this is guaranteed to be available.
// annotate the explict BeginTransactionRequest with a transaction tag
// "multiplexed-rw-background-begin-txn" to avoid storing this request on mock spanner.
// this is to safeguard other mock spanner tests whose BeginTransaction request count will
// otherwise increase by 1. Modifying the unit tests do not seem valid since this code is
// temporary and will be removed once the read-write on multiplexed session looks stable at
// backend.
BeginTransactionRequest.Builder requestBuilder =
BeginTransactionRequest.newBuilder()
.setSession(sessionName)
.setOptions(
SessionImpl.createReadWriteTransactionOptions(
Options.fromTransactionOptions(), /* previousTransactionId = */ null))
.setRequestOptions(
RequestOptions.newBuilder()
.setTransactionTag("multiplexed-rw-background-begin-txn")
.build());
final BeginTransactionRequest request = requestBuilder.build();
final ApiFuture<Transaction> requestFuture;
requestFuture =
sessionClient
.getSpanner()
.getRpc()
.beginTransactionAsync(request, /* options = */ null, /* routeToLeader = */ true);
requestFuture.addListener(
() -> {
try {
Transaction txn = requestFuture.get();
if (txn.getId().isEmpty()) {
throw newSpannerException(
ErrorCode.INTERNAL, "Missing id in transaction\n" + sessionName);
}
readWriteBeginTransactionReferenceFuture.set(txn);
} catch (Exception e) {
SpannerException spannerException = SpannerExceptionFactory.newSpannerException(e);
// Mark multiplexed sessions for RW as unimplemented and fall back to regular sessions
// if UNIMPLEMENTED is returned.
maybeMarkUnimplementedForRW(spannerException);
readWriteBeginTransactionReferenceFuture.setException(e);
}
},
MoreExecutors.directExecutor());
}
boolean isValid() {
return resourceNotFoundException.get() == null;
}
AtomicLong getNumSessionsAcquired() {
return this.numSessionsAcquired;
}
AtomicLong getNumSessionsReleased() {
return this.numSessionsReleased;
}
boolean isMultiplexedSessionsSupported() {
return !this.unimplemented.get();
}
boolean isMultiplexedSessionsForRWSupported() {
return !this.unimplementedForRW.get();
}
boolean isMultiplexedSessionsForPartitionedOpsSupported() {
return !this.unimplementedForPartitionedOps.get();
}
void close() {
synchronized (this) {
if (!this.isClosed) {
this.isClosed = true;
this.maintainer.stop();
}
}
}
@VisibleForTesting
MultiplexedSessionMaintainer getMaintainer() {
return this.maintainer;
}
@VisibleForTesting
SessionReference getCurrentSessionReference() {
try {
return this.multiplexedSessionReference.get().get();
} catch (ExecutionException executionException) {
throw SpannerExceptionFactory.asSpannerException(executionException.getCause());
} catch (InterruptedException interruptedException) {
throw SpannerExceptionFactory.propagateInterrupt(interruptedException);
}
}
@VisibleForTesting
Transaction getReadWriteBeginTransactionReference() {
try {
return this.readWriteBeginTransactionReferenceFuture.get();
} catch (ExecutionException executionException) {
throw SpannerExceptionFactory.asSpannerException(executionException.getCause());
} catch (InterruptedException interruptedException) {
throw SpannerExceptionFactory.propagateInterrupt(interruptedException);
}
}
/**
* Returns true if the multiplexed session has been created. This client can be used before the
* session has been created, and will in that case use a delayed transaction that contains a
* future reference to the multiplexed session. The delayed transaction will block at the first
* actual statement that is being executed (e.g. the first query that is sent to Spanner).
*/
private boolean isMultiplexedSessionCreated() {
return multiplexedSessionReference.get().isDone();
}
private DatabaseClient createMultiplexedSessionTransaction(boolean singleUse) {
Preconditions.checkState(!isClosed, "This client has been closed");
return isMultiplexedSessionCreated()
? createDirectMultiplexedSessionTransaction(singleUse)
: createDelayedMultiplexSessionTransaction();
}
private MultiplexedSessionTransaction createDirectMultiplexedSessionTransaction(
boolean singleUse) {
try {
return new MultiplexedSessionTransaction(
this,
tracer.getCurrentSpan(),
// Getting the result of the SettableApiFuture that contains the multiplexed session will
// also automatically propagate any error that happened during the creation of the
// session, such as for example a DatabaseNotFound exception. We therefore do not need
// any special handling of such errors.
multiplexedSessionReference.get().get(),
singleUse ? getSingleUseChannelHint() : NO_CHANNEL_HINT,
singleUse,
this.pool);
} catch (ExecutionException executionException) {
throw SpannerExceptionFactory.asSpannerException(executionException.getCause());
} catch (InterruptedException interruptedException) {
throw SpannerExceptionFactory.propagateInterrupt(interruptedException);
}
}
private DelayedMultiplexedSessionTransaction createDelayedMultiplexSessionTransaction() {
return new DelayedMultiplexedSessionTransaction(
this, tracer.getCurrentSpan(), multiplexedSessionReference.get(), this.pool);
}
private int getSingleUseChannelHint() {
if (this.numCurrentSingleUseTransactions.incrementAndGet() > this.numChannels) {
return NO_CHANNEL_HINT;
}
synchronized (this.channelUsage) {
// Get the first unused channel.
int channel = this.channelUsage.nextClearBit(/* fromIndex = */ 0);
// BitSet returns an index larger than its original size if all the bits are set.
// This then means that all channels have already been assigned to single-use transactions,
// and that we should not use a specific channel, but rather pick a random one.
if (channel == this.numChannels) {
return NO_CHANNEL_HINT;
}
this.channelUsage.set(channel);
return channel;
}
}
private final AbstractLazyInitializer<Dialect> dialectSupplier =
new AbstractLazyInitializer<Dialect>() {
@Override
protected Dialect initialize() {
try (ResultSet dialectResultSet =
singleUse().executeQuery(SessionPool.DETERMINE_DIALECT_STATEMENT)) {
if (dialectResultSet.next()) {
return Dialect.fromName(dialectResultSet.getString(0));
}
}
// This should not really happen, but it is the safest fallback value.
return Dialect.GOOGLE_STANDARD_SQL;
}
};
@Override
public Dialect getDialect() {
try {
return dialectSupplier.get();
} catch (Exception exception) {
throw SpannerExceptionFactory.asSpannerException(exception);
}
}
@Override
public Timestamp write(Iterable<Mutation> mutations) throws SpannerException {
return createMultiplexedSessionTransaction(/* singleUse = */ false).write(mutations);
}
@Override
public CommitResponse writeWithOptions(
final Iterable<Mutation> mutations, final TransactionOption... options)
throws SpannerException {
return createMultiplexedSessionTransaction(/* singleUse = */ false)
.writeWithOptions(mutations, options);
}
@Override
public CommitResponse writeAtLeastOnceWithOptions(
Iterable<Mutation> mutations, TransactionOption... options) throws SpannerException {
return createMultiplexedSessionTransaction(/* singleUse = */ true)
.writeAtLeastOnceWithOptions(mutations, options);
}
@Override
public ServerStream<BatchWriteResponse> batchWriteAtLeastOnce(
Iterable<MutationGroup> mutationGroups, TransactionOption... options)
throws SpannerException {
return createMultiplexedSessionTransaction(/* singleUse = */ true)
.batchWriteAtLeastOnce(mutationGroups, options);
}
@Override
public ReadContext singleUse() {
return createMultiplexedSessionTransaction(/* singleUse = */ true).singleUse();
}
@Override
public ReadContext singleUse(TimestampBound bound) {
return createMultiplexedSessionTransaction(/* singleUse = */ true).singleUse(bound);
}
@Override
public ReadOnlyTransaction singleUseReadOnlyTransaction() {
return createMultiplexedSessionTransaction(/* singleUse = */ true)
.singleUseReadOnlyTransaction();
}
@Override
public ReadOnlyTransaction singleUseReadOnlyTransaction(TimestampBound bound) {
return createMultiplexedSessionTransaction(/* singleUse = */ true)
.singleUseReadOnlyTransaction(bound);
}
@Override
public ReadOnlyTransaction readOnlyTransaction() {
return createMultiplexedSessionTransaction(/* singleUse = */ false).readOnlyTransaction();
}
@Override
public ReadOnlyTransaction readOnlyTransaction(TimestampBound bound) {
return createMultiplexedSessionTransaction(/* singleUse = */ false).readOnlyTransaction(bound);
}
@Override
public TransactionRunner readWriteTransaction(TransactionOption... options) {
return createMultiplexedSessionTransaction(/* singleUse = */ false)
.readWriteTransaction(options);
}
@Override
public TransactionManager transactionManager(TransactionOption... options) {
return createMultiplexedSessionTransaction(/* singleUse = */ false).transactionManager(options);
}
@Override
public AsyncRunner runAsync(TransactionOption... options) {
return createMultiplexedSessionTransaction(/* singleUse = */ false).runAsync(options);
}
@Override
public AsyncTransactionManager transactionManagerAsync(TransactionOption... options) {
return createMultiplexedSessionTransaction(/* singleUse = */ false)
.transactionManagerAsync(options);
}
@Override
public long executePartitionedUpdate(Statement stmt, UpdateOption... options) {
return createMultiplexedSessionTransaction(/* singleUse = */ true)
.executePartitionedUpdate(stmt, options);
}
/**
* It is enough with one executor to maintain the multiplexed sessions in all the clients, as they
* do not need to be updated often, and the maintenance task is light. The core pool size is set
* to 1 to prevent continuous creating and tearing down threads, and to avoid high CPU usage when
* running on Java 8 due to <a href="https://bugs.openjdk.org/browse/JDK-8129861">
* https://bugs.openjdk.org/browse/JDK-8129861</a>.
*/
private static final ScheduledExecutorService MAINTAINER_SERVICE =
Executors.newScheduledThreadPool(
/* corePoolSize = */ 1,
ThreadFactoryUtil.createVirtualOrPlatformDaemonThreadFactory(
"multiplexed-session-maintainer", /* tryVirtual = */ false));
final class MultiplexedSessionMaintainer {
private final Clock clock;
private ScheduledFuture<?> scheduledFuture;
MultiplexedSessionMaintainer(Clock clock) {
this.clock = clock;
}
void start() {
// Schedule the maintainer to run once every ten minutes (by default).
long loopFrequencyMillis =
MultiplexedSessionDatabaseClient.this
.sessionClient
.getSpanner()
.getOptions()
.getSessionPoolOptions()
.getMultiplexedSessionMaintenanceLoopFrequency()
.toMillis();
this.scheduledFuture =
MAINTAINER_SERVICE.scheduleAtFixedRate(
this::maintain, loopFrequencyMillis, loopFrequencyMillis, TimeUnit.MILLISECONDS);
}
void stop() {
if (this.scheduledFuture != null) {
this.scheduledFuture.cancel(false);
}
}
void maintain() {
if (clock.instant().isAfter(expirationDate.get())) {
sessionClient.asyncCreateMultiplexedSession(
new SessionConsumer() {
@Override
public void onSessionReady(SessionImpl session) {
multiplexedSessionReference.set(
ApiFutures.immediateFuture(session.getSessionReference()));
expirationDate.set(
clock
.instant()
.plus(MultiplexedSessionDatabaseClient.this.sessionExpirationDuration));
}
@Override
public void onSessionCreateFailure(Throwable t, int createFailureForSessionCount) {
// ignore any errors during re-creation of the multiplexed session. This means that
// we continue to use the session that has passed its expiration date for now, and
// that a new attempt at creating a new session will be done in 10 minutes from now.
// The only exception to this rule is if the server returns UNIMPLEMENTED. In that
// case we invalidate the client and fall back to regular sessions.
maybeMarkUnimplemented(t);
}
});
}
}
}
}