forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRemoteModule.java
More file actions
1522 lines (1393 loc) · 61.3 KB
/
Copy pathRemoteModule.java
File metadata and controls
1522 lines (1393 loc) · 61.3 KB
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
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// 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.devtools.build.lib.remote;
import static java.util.concurrent.TimeUnit.SECONDS;
import build.bazel.remote.execution.v2.Digest;
import build.bazel.remote.execution.v2.DigestFunction;
import com.github.benmanes.caffeine.cache.Cache;
import com.google.auth.Credentials;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Ascii;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import com.google.common.util.concurrent.ListeningScheduledExecutorService;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.common.util.concurrent.ThreadFactoryBuilder;
import com.google.devtools.build.lib.actions.Artifact;
import com.google.devtools.build.lib.actions.ImportantOutputHandler;
import com.google.devtools.build.lib.analysis.AnalysisResult;
import com.google.devtools.build.lib.analysis.BlazeDirectories;
import com.google.devtools.build.lib.analysis.ConfiguredAspect;
import com.google.devtools.build.lib.analysis.ConfiguredTarget;
import com.google.devtools.build.lib.analysis.config.BuildOptions;
import com.google.devtools.build.lib.analysis.config.CoreOptions;
import com.google.devtools.build.lib.authandtls.AuthAndTLSOptions;
import com.google.devtools.build.lib.authandtls.CallCredentialsProvider;
import com.google.devtools.build.lib.authandtls.GoogleAuthUtils;
import com.google.devtools.build.lib.authandtls.credentialhelper.CredentialHelperEnvironment;
import com.google.devtools.build.lib.authandtls.credentialhelper.CredentialModule;
import com.google.devtools.build.lib.authandtls.credentialhelper.GetCredentialsResponse;
import com.google.devtools.build.lib.bazel.repository.downloader.Downloader;
import com.google.devtools.build.lib.buildeventstream.BuildEventArtifactUploader;
import com.google.devtools.build.lib.buildeventstream.LocalFilesArtifactUploader;
import com.google.devtools.build.lib.buildtool.BuildRequest;
import com.google.devtools.build.lib.buildtool.BuildRequestOptions;
import com.google.devtools.build.lib.cmdline.LabelConstants;
import com.google.devtools.build.lib.events.Event;
import com.google.devtools.build.lib.events.Reporter;
import com.google.devtools.build.lib.exec.ExecutionOptions;
import com.google.devtools.build.lib.exec.ExecutorBuilder;
import com.google.devtools.build.lib.exec.ModuleActionContextRegistry;
import com.google.devtools.build.lib.exec.SpawnStrategyRegistry;
import com.google.devtools.build.lib.profiler.Profiler;
import com.google.devtools.build.lib.remote.CombinedCacheClientFactory.CombinedCacheClient;
import com.google.devtools.build.lib.remote.LeaseService.LeaseExtension;
import com.google.devtools.build.lib.remote.RemoteServerCapabilities.ServerCapabilitiesRequirement;
import com.google.devtools.build.lib.remote.Retrier.ResultClassifier;
import com.google.devtools.build.lib.remote.Retrier.ResultClassifier.Result;
import com.google.devtools.build.lib.remote.circuitbreaker.CircuitBreakerFactory;
import com.google.devtools.build.lib.remote.common.RemoteCacheClient;
import com.google.devtools.build.lib.remote.common.RemoteExecutionClient;
import com.google.devtools.build.lib.remote.disk.DiskCacheClient;
import com.google.devtools.build.lib.remote.disk.DiskCacheGarbageCollectorIdleTask;
import com.google.devtools.build.lib.remote.downloader.GrpcRemoteDownloader;
import com.google.devtools.build.lib.remote.http.DownloadTimeoutException;
import com.google.devtools.build.lib.remote.http.HttpException;
import com.google.devtools.build.lib.remote.logging.LoggingInterceptor;
import com.google.devtools.build.lib.remote.logging.RemoteExecutionLog.LogEntry;
import com.google.devtools.build.lib.remote.options.RemoteOptions;
import com.google.devtools.build.lib.remote.options.RemoteOutputsMode;
import com.google.devtools.build.lib.remote.options.RemoteStartupOptions;
import com.google.devtools.build.lib.remote.util.DigestUtil;
import com.google.devtools.build.lib.remote.util.TracingMetadataUtils;
import com.google.devtools.build.lib.runtime.BlazeModule;
import com.google.devtools.build.lib.runtime.BlazeRuntime;
import com.google.devtools.build.lib.runtime.BlazeServerStartupOptions;
import com.google.devtools.build.lib.runtime.BlazeService;
import com.google.devtools.build.lib.runtime.BlockWaitingModule;
import com.google.devtools.build.lib.runtime.BuildEventArtifactUploaderFactory;
import com.google.devtools.build.lib.runtime.CommandEnvironment;
import com.google.devtools.build.lib.runtime.CommandLinePathFactory;
import com.google.devtools.build.lib.runtime.RemoteRepoContentsCache;
import com.google.devtools.build.lib.runtime.RepositoryRemoteExecutor;
import com.google.devtools.build.lib.runtime.RepositoryRemoteHelpersFactory;
import com.google.devtools.build.lib.runtime.ServerBuilder;
import com.google.devtools.build.lib.runtime.WorkspaceBuilder;
import com.google.devtools.build.lib.server.FailureDetails;
import com.google.devtools.build.lib.server.FailureDetails.Execution;
import com.google.devtools.build.lib.server.FailureDetails.FailureDetail;
import com.google.devtools.build.lib.server.FailureDetails.RemoteExecution;
import com.google.devtools.build.lib.server.FailureDetails.RemoteExecution.Code;
import com.google.devtools.build.lib.skyframe.SkyframeExecutorWrappingWalkableGraph;
import com.google.devtools.build.lib.util.AbruptExitException;
import com.google.devtools.build.lib.util.DetailedExitCode;
import com.google.devtools.build.lib.util.ExitCode;
import com.google.devtools.build.lib.util.Fingerprint;
import com.google.devtools.build.lib.util.TempPathGenerator;
import com.google.devtools.build.lib.util.io.AsynchronousMessageOutputStream;
import com.google.devtools.build.lib.vfs.DigestHashFunction;
import com.google.devtools.build.lib.vfs.FileSystem;
import com.google.devtools.build.lib.vfs.OutputPermissions;
import com.google.devtools.build.lib.vfs.OutputService;
import com.google.devtools.build.lib.vfs.Path;
import com.google.devtools.build.lib.vfs.PathFragment;
import com.google.devtools.common.options.Options;
import com.google.devtools.common.options.OptionsBase;
import com.google.devtools.common.options.OptionsParsingResult;
import com.google.devtools.common.options.RegexPatternOption;
import io.grpc.CallCredentials;
import io.grpc.ClientInterceptor;
import io.grpc.ManagedChannel;
import io.netty.handler.codec.DecoderException;
import io.netty.handler.codec.http.HttpResponseStatus;
import io.reactivex.rxjava3.plugins.RxJavaPlugins;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.channels.ClosedChannelException;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.function.Predicate;
import javax.annotation.Nullable;
/** RemoteModule provides distributed cache and remote execution for Bazel. */
public final class RemoteModule extends BlazeModule {
private final ListeningScheduledExecutorService retryScheduler =
MoreExecutors.listeningDecorator(Executors.newScheduledThreadPool(1));
private final Set<Digest> knownMissingCasDigests = Sets.newConcurrentHashSet();
private final ChunkLocationMap chunkLocationMap = new ChunkLocationMap();
private boolean useRemoteRepoContentsCache;
@Nullable private PathFragment outputBase;
@Nullable private AsynchronousMessageOutputStream<LogEntry> rpcLogFile;
@Nullable private ExecutorService executorService;
@Nullable private RemoteActionContextProvider actionContextProvider;
@Nullable private RemoteActionInputFetcher actionInputFetcher;
@Nullable private RemoteOptions remoteOptions;
@Nullable private CommandEnvironment env;
@Nullable private OutputService outputService;
@Nullable private TempPathGenerator tempPathGenerator;
@Nullable private BlockWaitingModule blockWaitingModule;
@Nullable private RemoteOutputChecker remoteOutputChecker;
@Nullable private RemoteOutputChecker lastRemoteOutputChecker;
@Nullable private String lastBuildId;
private ChannelFactory channelFactory =
new ChannelFactory() {
@Override
public ManagedChannel newChannel(
String target,
String proxy,
AuthAndTLSOptions options,
List<ClientInterceptor> interceptors,
Map<String, ?> serviceConfig)
throws IOException {
return GoogleAuthUtils.newChannel(
executorService,
target,
proxy,
options,
interceptors.isEmpty() ? null : interceptors,
serviceConfig);
}
};
private final BuildEventArtifactUploaderFactoryDelegate
buildEventArtifactUploaderFactoryDelegate = new BuildEventArtifactUploaderFactoryDelegate();
private final RepositoryRemoteHelpersFactoryDelegate repositoryRemoteHelpersFactoryDelegate =
new RepositoryRemoteHelpersFactoryDelegate();
@Nullable private GrpcRemoteDownloader remoteDownloader;
private CredentialModule credentialModule;
@Override
public ImmutableList<Class<? extends OptionsBase>> getStartupOptions() {
return ImmutableList.of(RemoteStartupOptions.class);
}
@Override
public void globalInit(
OptionsParsingResult startupOptions, Iterable<BlazeService> blazeServices) {
outputBase = startupOptions.getOptions(BlazeServerStartupOptions.class).getOutputBase();
useRemoteRepoContentsCache =
startupOptions.getOptions(RemoteStartupOptions.class).getUseRemoteRepoContentsCache();
}
@Nullable
@Override
public FileSystem getFileSystemForBuildArtifacts(FileSystem nativeFs) {
if (!useRemoteRepoContentsCache) {
return null;
}
return new RemoteExternalOverlayFileSystem(
outputBase.getRelative(LabelConstants.EXTERNAL_REPOSITORY_LOCATION), nativeFs);
}
@Override
public void serverInit(OptionsParsingResult startupOptions, ServerBuilder builder) {
builder.addBuildEventArtifactUploaderFactory(
buildEventArtifactUploaderFactoryDelegate, "remote");
builder.setRepositoryHelpersFactory(repositoryRemoteHelpersFactoryDelegate);
}
/** Returns whether remote execution should be enabled. */
public static boolean shouldEnableRemoteExecution(RemoteOptions options) {
return !Strings.isNullOrEmpty(options.getRemoteExecutor());
}
/** Returns whether the remote downloader should be enabled. */
private static boolean shouldEnableRemoteDownloader(RemoteOptions options) {
return !Strings.isNullOrEmpty(options.getRemoteDownloader());
}
/** Returns whether the remote output service should be enabled. */
private static boolean shouldEnableRemoteOutputService(RemoteOptions options) {
return !Strings.isNullOrEmpty(options.getRemoteOutputService());
}
public static final ResultClassifier HTTP_RESULT_CLASSIFIER =
e -> {
boolean retry = false;
if (e instanceof ClosedChannelException) {
retry = true;
} else if (e instanceof DownloadTimeoutException) {
retry = true;
} else if (e instanceof HttpException httpException) {
int status = httpException.response().status().code();
if (status == HttpResponseStatus.NOT_FOUND.code()) {
return Result.SUCCESS;
}
retry =
status == HttpResponseStatus.REQUEST_TIMEOUT.code()
|| status == HttpResponseStatus.TOO_MANY_REQUESTS.code()
|| status == HttpResponseStatus.INTERNAL_SERVER_ERROR.code()
|| status == HttpResponseStatus.BAD_GATEWAY.code()
|| status == HttpResponseStatus.SERVICE_UNAVAILABLE.code()
|| status == HttpResponseStatus.GATEWAY_TIMEOUT.code();
} else if (e instanceof IOException) {
String msg = Ascii.toLowerCase(e.getMessage());
if (msg.contains("connection reset")) {
retry = true;
} else if (msg.contains("operation timed out")) {
retry = true;
}
} else {
// Workaround for a netty bug: https://github.com/netty/netty/issues/11815. Remove this
// once it is fixed in the upstream.
if (e instanceof DecoderException
&& e.getMessage().endsWith("functions:OPENSSL_internal:BAD_DECRYPT")) {
retry = true;
}
}
return retry ? Result.TRANSIENT_FAILURE : Result.PERMANENT_FAILURE;
};
private void initHttpAndDiskCache(
CommandEnvironment env,
Credentials credentials,
AuthAndTLSOptions authAndTlsOptions,
RemoteOptions remoteOptions,
@Nullable PathFragment diskCachePath,
DigestUtil digestUtil,
boolean checkDiskCacheActionResultIntegrity) {
CombinedCacheClient combinedCacheClient;
Retrier.CircuitBreaker circuitBreaker =
CircuitBreakerFactory.createCircuitBreaker(remoteOptions);
try {
combinedCacheClient =
CombinedCacheClientFactory.create(
remoteOptions,
diskCachePath,
credentials,
authAndTlsOptions,
Preconditions.checkNotNull(env.getWorkingDirectory(), "workingDirectory"),
digestUtil,
new RemoteRetrier(
remoteOptions, HTTP_RESULT_CLASSIFIER, retryScheduler, circuitBreaker),
checkDiskCacheActionResultIntegrity);
} catch (IOException e) {
handleInitFailure(env, e, Code.CACHE_INIT_FAILURE);
return;
}
CombinedCache combinedCache =
new CombinedCache(
combinedCacheClient.remoteCacheClient(),
combinedCacheClient.diskCacheClient(),
Strings.emptyToNull(remoteOptions.getRemoteDownloadSymlinkTemplate()),
digestUtil,
remoteOptions.getEffectiveChunkingFunction(),
chunkLocationMap);
actionContextProvider =
RemoteActionContextProvider.createForRemoteCaching(
env,
combinedCache,
/* retryScheduler= */ null,
digestUtil,
remoteOutputChecker,
outputService,
knownMissingCasDigests);
actionInputFetcher = createActionInputFetcher(combinedCache);
}
@Nullable
private RemoteActionInputFetcher createActionInputFetcher(@Nullable CombinedCache combinedCache) {
if (combinedCache == null) {
return null;
}
var coreOptions = env.getOptions().getOptions(CoreOptions.class);
var outputPermissions =
coreOptions != null && coreOptions.getExperimentalWritableOutputs()
? OutputPermissions.WRITABLE
: OutputPermissions.READONLY;
return new RemoteActionInputFetcher(
env.getReporter(),
env.getBuildRequestId(),
env.getCommandId().toString(),
combinedCache,
env.getExecRoot(),
tempPathGenerator,
remoteOutputChecker,
env.getOptions().getOptions(BuildRequestOptions.class) != null
? env.getOutputDirectoryHelper()
: null,
outputPermissions);
}
/**
* Initializes the repository remote helpers factory and primes the {@link
* RemoteExternalOverlayFileSystem} (when one is in use) with the per-build state it needs.
*/
private void initRepoHelpersAndOverlayFs(
CommandEnvironment env, String buildRequestId, String invocationId, boolean verboseFailures) {
if (actionContextProvider == null) {
return;
}
CombinedCache combinedCache = actionContextProvider.getCombinedCache();
if (combinedCache == null) {
return;
}
repositoryRemoteHelpersFactoryDelegate.init(
new RepositoryRemoteHelpersFactoryImpl(
env.getDirectories(),
combinedCache,
actionContextProvider.getRemoteExecutionClient(),
buildRequestId,
invocationId,
env.getWorkspaceName(),
remoteOptions.getRemoteInstanceName(),
remoteOptions.getRemoteAcceptCached(),
remoteOptions.getRemoteUploadLocalResults(),
verboseFailures));
if (env.getDirectories().getOutputBase().getFileSystem()
instanceof RemoteExternalOverlayFileSystem remoteFs) {
remoteFs.beforeCommand(
combinedCache,
actionInputFetcher,
env.getReporter(),
buildRequestId,
invocationId,
env.getSkyframeExecutor().getEvaluator(),
remoteOptions.getRemoteCacheTtl());
}
}
@Override
public void workspaceInit(
BlazeRuntime runtime, BlazeDirectories directories, WorkspaceBuilder builder) {
Preconditions.checkState(blockWaitingModule == null, "blockWaitingModule must be null");
Preconditions.checkState(credentialModule == null, "credentialModule must be null");
blockWaitingModule =
Preconditions.checkNotNull(runtime.getBlazeModule(BlockWaitingModule.class));
credentialModule = Preconditions.checkNotNull(runtime.getBlazeModule(CredentialModule.class));
}
/**
* Opens the gRPC log at {@code path} for writing.
*
* <p>When the command is retried in-process after a transient remote cache error (see {@code
* --experimental_remote_cache_eviction_retries}), {@code attemptNumber} is greater than 1 and the
* log written by the previous attempt is still at {@code path}. Truncating it would discard the
* log of the very attempt that hit the cache eviction, which is exactly the one worth debugging.
* Instead, rename the existing file to {@code <path>.<previous attempt number>} so every
* attempt's log is preserved. See https://github.com/bazelbuild/bazel/issues/18695.
*/
@VisibleForTesting
static AsynchronousMessageOutputStream<LogEntry> openRpcLogFile(Path path, int attemptNumber)
throws IOException {
if (attemptNumber > 1 && path.exists()) {
path.renameTo(
path.getParentDirectory().getChild(path.getBaseName() + "." + (attemptNumber - 1)));
}
return new AsynchronousMessageOutputStream<>(path);
}
@Override
public void beforeCommand(CommandEnvironment env) throws AbruptExitException {
Preconditions.checkState(actionContextProvider == null, "actionContextProvider must be null");
Preconditions.checkState(actionInputFetcher == null, "actionInputFetcher must be null");
Preconditions.checkState(remoteOptions == null, "remoteOptions must be null");
Preconditions.checkState(this.env == null, "env must be null");
Preconditions.checkState(tempPathGenerator == null, "tempPathGenerator must be null");
Preconditions.checkState(remoteOutputChecker == null, "remoteOutputChecker must be null");
Preconditions.checkState(outputService == null, "remoteOutputService must be null");
if ("clean".equals(env.getCommandName())) {
chunkLocationMap.clear();
knownMissingCasDigests.clear();
}
var cacheAvailable = setup(env);
if (!cacheAvailable) {
if (env.getDirectories().getOutputBase().getFileSystem()
instanceof RemoteExternalOverlayFileSystem remoteFs) {
remoteFs.notifyNoCacheAvailable(env.getSkyframeExecutor().getEvaluator());
}
}
}
/**
* Sets up all requested remote functionality (caching, execution, downloader, ...) and returns
* whether any cache (disk or remote) is enabled.
*/
private boolean setup(CommandEnvironment env) throws AbruptExitException {
RemoteOptions remoteOptions = env.getOptions().getOptions(RemoteOptions.class);
if (remoteOptions == null) {
// Quit if no supported command is being used. See getCommandOptions for details.
return false;
}
this.remoteOptions = remoteOptions;
this.env = env;
// Resolve default disk cache location from --disk_cache / --disk_cache=true, etc.
PathFragment diskCachePath =
remoteOptions.getDiskCachePath(
env.getDirectories().getServerDirectories().getOutputUserRoot());
AuthAndTLSOptions authAndTlsOptions = env.getOptions().getOptions(AuthAndTLSOptions.class);
DigestHashFunction hashFn = env.getRuntime().getFileSystem().getDigestFunction();
DigestUtil digestUtil = new DigestUtil(env.getXattrProvider(), hashFn);
boolean verboseFailures = false;
ExecutionOptions executionOptions = env.getOptions().getOptions(ExecutionOptions.class);
if (executionOptions != null) {
verboseFailures = executionOptions.getVerboseFailures();
}
// If --remote_cache is empty but --remote_executor is not, reuse the latter for the former.
if (!Strings.isNullOrEmpty(remoteOptions.getRemoteExecutor())
&& Strings.isNullOrEmpty(remoteOptions.getRemoteCache())) {
remoteOptions.setRemoteCache(remoteOptions.getRemoteExecutor());
}
if (shouldEnableRemoteOutputService(remoteOptions)) {
if (diskCachePath != null) {
diskCachePath = null;
env.getReporter()
.handle(
Event.warn(
"--disk_cache is ignored when --experimental_remote_output_service is set."));
}
if (Strings.isNullOrEmpty(remoteOptions.getRemoteCache())) {
throw createOptionsExitException(
"--experimental_remote_output_service must be used in combination with one of"
+ " --remote_cache or --remote_executor.",
FailureDetails.RemoteOptions.Code.EXECUTION_WITH_INVALID_CACHE);
}
}
boolean enableDiskCache = diskCachePath != null;
boolean enableHttpCache = CombinedCacheClientFactory.isHttpCache(remoteOptions);
boolean enableRemoteExecution = shouldEnableRemoteExecution(remoteOptions);
boolean enableGrpcCache = GrpcCacheClient.isRemoteCacheOptions(remoteOptions);
boolean enableRemoteDownloader = shouldEnableRemoteDownloader(remoteOptions);
if (enableDiskCache) {
// Check that the disk cache directory, which is managed by a garbage collecting idle task,
// does not contain the output base. Since the specified output base path may be a symlink,
// we resolve it fully. Intermediate symlinks do not have to be checked as the garbage
// collector ignores symlinks. We also resolve the disk cache directory, where intermediate
// symlinks also don't matter since deletion only occurs under the fully resolved path.
Path resolvedOutputBase = env.getOutputBase();
try {
resolvedOutputBase = resolvedOutputBase.resolveSymbolicLinks();
} catch (FileNotFoundException ignored) {
// Will be created later.
} catch (IOException e) {
throw createOptionsExitException(
"Failed to resolve output base: %s".formatted(e.getMessage()),
FailureDetails.RemoteOptions.Code.EXECUTION_WITH_INVALID_CACHE);
}
Path resolvedDiskCache = env.getWorkingDirectory().getRelative(diskCachePath);
try {
resolvedDiskCache = resolvedDiskCache.resolveSymbolicLinks();
} catch (FileNotFoundException ignored) {
// Will be created later.
} catch (IOException e) {
throw createOptionsExitException(
"Failed to resolve disk cache directory: %s".formatted(e.getMessage()),
FailureDetails.RemoteOptions.Code.EXECUTION_WITH_INVALID_CACHE);
}
if (resolvedOutputBase.startsWith(resolvedDiskCache)) {
// This is dangerous as the disk cache GC may delete files in the output base.
throw createOptionsExitException(
"The output base [%s] cannot be a subdirectory of the --disk_cache directory [%s]"
.formatted(resolvedOutputBase, resolvedDiskCache),
FailureDetails.RemoteOptions.Code.EXECUTION_WITH_INVALID_CACHE);
}
var gcIdleTask =
DiskCacheGarbageCollectorIdleTask.create(
remoteOptions, diskCachePath, env.getWorkingDirectory());
if (gcIdleTask != null) {
env.addIdleTask(gcIdleTask);
}
}
if (enableRemoteDownloader && !enableGrpcCache) {
throw createOptionsExitException(
"The remote downloader can only be used in combination with gRPC caching",
FailureDetails.RemoteOptions.Code.DOWNLOADER_WITHOUT_GRPC_CACHE);
}
tempPathGenerator = getTempPathGenerator(env);
if (!enableDiskCache && !enableHttpCache && !enableGrpcCache && !enableRemoteExecution) {
// Quit if no remote caching or execution was enabled.
actionContextProvider =
RemoteActionContextProvider.createForPlaceholder(
env, retryScheduler, digestUtil, knownMissingCasDigests);
return false;
}
if (enableHttpCache && enableRemoteExecution) {
throw createOptionsExitException(
"Cannot combine gRPC based remote execution with HTTP-based caching",
FailureDetails.RemoteOptions.Code.EXECUTION_WITH_INVALID_CACHE);
}
boolean enableScrubbing = remoteOptions.getScrubber() != null;
if (enableScrubbing && enableRemoteExecution) {
env.getReporter()
.handle(
Event.warn(
"Cache key scrubbing is incompatible with remote execution. Actions that are"
+ " scrubbed per the --experimental_remote_scrubbing_config configuration"
+ " file will be executed locally instead."));
}
if (digestUtil.getDigestFunction() == DigestFunction.Value.UNKNOWN) {
throw new AbruptExitException(
DetailedExitCode.of(
FailureDetail.newBuilder()
.setMessage(String.format("Unsupported digest function: %s", hashFn))
.setExecution(Execution.newBuilder().setCode(Execution.Code.EXECUTION_UNKNOWN))
.build()));
}
// TODO(bazel-team): Consider adding a warning or more validation if the remoteDownloadRegex is
// used without Build without the Bytes.
ImmutableList.Builder<Predicate<String>> patternsToDownloadBuilder = ImmutableList.builder();
if (remoteOptions.getRemoteOutputsMode() != RemoteOutputsMode.ALL) {
for (RegexPatternOption patternOption : remoteOptions.getRemoteDownloadRegex()) {
patternsToDownloadBuilder.add(patternOption.matcher());
}
}
remoteOutputChecker =
new RemoteOutputChecker(
env.getCommandName(),
remoteOptions.getRemoteOutputsMode(),
patternsToDownloadBuilder.build(),
lastRemoteOutputChecker);
remoteOutputChecker.maybeInvalidateSkyframeValues(env.getSkyframeExecutor().getEvaluator());
env.getEventBus().register(this);
String invocationId = env.getCommandId().toString();
String buildRequestId = env.getBuildRequestId();
env.getReporter().handle(Event.info(String.format("Invocation ID: %s", invocationId)));
RxJavaPlugins.setErrorHandler(
error -> env.getReporter().handle(Event.error(Throwables.getStackTraceAsString(error))));
Path logDir =
env.getOutputBase().getRelative(env.getRuntime().getProductName() + "-remote-logs");
cleanAndCreateRemoteLogsDir(logDir);
BuildRequestOptions buildRequestOptions =
env.getOptions().getOptions(BuildRequestOptions.class);
int jobs = 0;
if (buildRequestOptions != null) {
jobs = buildRequestOptions.getJobs();
}
ThreadFactory threadFactory =
new ThreadFactoryBuilder().setNameFormat("remote-executor-%d").build();
if (jobs != 0) {
ThreadPoolExecutor tpe =
new ThreadPoolExecutor(
jobs, jobs, 60L, SECONDS, new LinkedBlockingQueue<>(), threadFactory);
tpe.allowCoreThreadTimeOut(true);
executorService = tpe;
} else {
executorService = Executors.newCachedThreadPool(threadFactory);
}
Credentials credentials;
try {
credentials =
createCredentials(
CredentialHelperEnvironment.newBuilder()
.setEventReporter(env.getReporter())
.setWorkspacePath(env.getWorkspace())
.setClientEnvironment(env::getClientEnv)
.setHelperExecutionTimeout(authAndTlsOptions.getCredentialHelperTimeout())
.build(),
credentialModule.getCredentialCache(),
env.getCommandLinePathFactory(),
env.getRuntime().getFileSystem(),
authAndTlsOptions,
remoteOptions);
} catch (IOException e) {
handleInitFailure(env, e, Code.CREDENTIALS_INIT_FAILURE);
return false;
}
int maxConcurrencyPerConnection = 0;
if (remoteOptions.getRemoteMaxConcurrencyPerConnection() > 0) {
maxConcurrencyPerConnection = remoteOptions.getRemoteMaxConcurrencyPerConnection();
}
int maxConnections = 0;
if (remoteOptions.getRemoteMaxConnections() > 0) {
maxConnections = remoteOptions.getRemoteMaxConnections();
}
Retrier.CircuitBreaker circuitBreaker =
CircuitBreakerFactory.createCircuitBreaker(remoteOptions);
RemoteRetrier retrier =
new RemoteRetrier(
remoteOptions,
RemoteRetrier.EXPERIMENTAL_GRPC_RESULT_CLASSIFIER,
retryScheduler,
circuitBreaker,
// Resolved lazily: rpcLogFile is created further below, after this retrier.
() -> rpcLogFile);
ImmutableMap<String, ?> remoteGrpcServiceConfig;
try {
remoteGrpcServiceConfig =
RemoteGrpcServiceConfig.create(remoteOptions, env.getWorkingDirectory());
} catch (IOException e) {
throw createOptionsExitException(
"Invalid --remote_grpc_service_config: " + e.getMessage(),
FailureDetails.RemoteOptions.Code.REMOTE_GRPC_SERVICE_CONFIG_INVALID);
}
ClientInterceptor downloadIdleTimeoutInterceptor = null;
if (!remoteOptions.getRemoteGrpcDownloadIdleTimeout().isZero()) {
downloadIdleTimeoutInterceptor =
new RemoteDownloadIdleTimeoutInterceptor(
remoteOptions.getRemoteGrpcDownloadIdleTimeout(), retryScheduler);
}
if (!Strings.isNullOrEmpty(remoteOptions.getRemoteOutputService())) {
var bazelOutputServiceChannel =
createChannel(
executorService,
remoteOptions,
// Don't use auth flags for remote output service
Options.getDefaults(AuthAndTLSOptions.class),
null,
null,
downloadIdleTimeoutInterceptor,
remoteGrpcServiceConfig,
channelFactory,
remoteOptions.getRemoteOutputService(),
null,
maxConcurrencyPerConnection,
maxConnections,
env.getReporter(),
null,
digestUtil.getDigestFunction(),
ServerCapabilitiesRequirement.NONE);
outputService =
new BazelOutputService(
env.getOutputBase(),
env::getExecRoot,
() -> env.getDirectories().getOutputPath(env.getWorkspaceName()),
digestUtil,
remoteOptions.getRemoteCache(),
remoteOptions.getRemoteInstanceName(),
remoteOptions.getRemoteOutputServiceOutputPathPrefix(),
remoteOptions.getMaxOutboundMessageSize(),
verboseFailures,
retrier,
bazelOutputServiceChannel,
lastBuildId);
} else {
outputService =
new RemoteOutputService(
env.getDirectories(),
buildRequestOptions != null && buildRequestOptions.getRewindLostInputs());
}
// Verifying that the blobs referenced by a disk cache action result are present locally turns
// most disk cache hits into misses when Build without the Bytes is enabled, as outputs aren't
// downloaded and thus never added to the disk cache's CAS. With action rewinding, a blob that
// is missing after all is cheap to recover from, so the check can be skipped. This allows disk
// cache AC checks to be entirely local, reducing server load and avoiding a network round trip.
boolean checkDiskCacheActionResultIntegrity =
buildRequestOptions == null || !buildRequestOptions.getRewindLostInputs();
if ((enableHttpCache || enableDiskCache) && !enableGrpcCache) {
initHttpAndDiskCache(
env,
credentials,
authAndTlsOptions,
remoteOptions,
diskCachePath,
digestUtil,
checkDiskCacheActionResultIntegrity);
initRepoHelpersAndOverlayFs(env, buildRequestId, invocationId, verboseFailures);
return true;
}
ClientInterceptor loggingInterceptor = null;
if (remoteOptions.getRemoteGrpcLog() != null) {
try {
rpcLogFile =
openRpcLogFile(
env.getWorkingDirectory().getRelative(remoteOptions.getRemoteGrpcLog()),
env.getAttemptNumber());
} catch (IOException e) {
handleInitFailure(env, e, Code.RPC_LOG_FAILURE);
return false;
}
loggingInterceptor = new LoggingInterceptor(rpcLogFile, env.getRuntime().getClock());
}
CallCredentialsProvider callCredentialsProvider =
GoogleAuthUtils.newCallCredentialsProvider(credentials);
CallCredentials callCredentials = callCredentialsProvider.getCallCredentials();
RemoteServerCapabilities rsc =
new RemoteServerCapabilities(
buildRequestId,
invocationId,
remoteOptions.getRemoteInstanceName(),
callCredentials,
retrier);
ReferenceCountedChannel execChannel = null;
ReferenceCountedChannel cacheChannel = null;
// We only check required capabilities for a given endpoint.
//
// If --remote_executor and --remote_cache point to the same endpoint, we require that
// endpoint has both execution and cache capabilities.
//
// If they point to different endpoints, we check the endpoint with execution or cache
// capabilities respectively.
try (var s = Profiler.instance().profile("init channel and check server capabilities")) {
if (enableRemoteExecution) {
// Create a separate channel if --remote_executor and --remote_cache point to different
// endpoints.
if (remoteOptions.getRemoteCache().equals(remoteOptions.getRemoteExecutor())) {
execChannel =
createChannel(
executorService,
remoteOptions,
authAndTlsOptions,
TracingMetadataUtils.newExecHeadersInterceptor(
remoteOptions.getRemoteHeaders(), remoteOptions.getRemoteExecHeaders()),
loggingInterceptor,
downloadIdleTimeoutInterceptor,
remoteGrpcServiceConfig,
channelFactory,
remoteOptions.getRemoteExecutor(),
remoteOptions.getRemoteProxy(),
maxConcurrencyPerConnection,
maxConnections,
env.getReporter(),
rsc,
digestUtil.getDigestFunction(),
ServerCapabilitiesRequirement.EXECUTION_AND_CACHE);
cacheChannel = execChannel.retain();
} else {
execChannel =
createChannel(
executorService,
remoteOptions,
authAndTlsOptions,
TracingMetadataUtils.newExecHeadersInterceptor(
remoteOptions.getRemoteHeaders(), remoteOptions.getRemoteExecHeaders()),
loggingInterceptor,
downloadIdleTimeoutInterceptor,
remoteGrpcServiceConfig,
channelFactory,
remoteOptions.getRemoteExecutor(),
remoteOptions.getRemoteProxy(),
maxConcurrencyPerConnection,
maxConnections,
env.getReporter(),
rsc,
digestUtil.getDigestFunction(),
ServerCapabilitiesRequirement.EXECUTION);
}
}
if (cacheChannel == null) {
cacheChannel =
createChannel(
executorService,
remoteOptions,
authAndTlsOptions,
TracingMetadataUtils.newCacheHeadersInterceptor(
remoteOptions.getRemoteHeaders(), remoteOptions.getRemoteCacheHeaders()),
loggingInterceptor,
downloadIdleTimeoutInterceptor,
remoteGrpcServiceConfig,
channelFactory,
remoteOptions.getRemoteCache(),
remoteOptions.getRemoteProxy(),
maxConcurrencyPerConnection,
maxConnections,
env.getReporter(),
rsc,
digestUtil.getDigestFunction(),
ServerCapabilitiesRequirement.CACHE);
}
}
RemoteCacheClient remoteCacheClient =
new GrpcCacheClient(
cacheChannel.retain(), callCredentialsProvider, remoteOptions, retrier, digestUtil);
cacheChannel.release();
DiskCacheClient diskCacheClient = null;
if (enableRemoteExecution) {
if (enableDiskCache) {
try {
diskCacheClient =
CombinedCacheClientFactory.createDiskCache(
env.getWorkingDirectory(),
diskCachePath,
digestUtil,
checkDiskCacheActionResultIntegrity);
} catch (Exception e) {
handleInitFailure(env, e, Code.CACHE_INIT_FAILURE);
return false;
}
}
RemoteRetrier execRetrier =
new RemoteRetrier(
remoteOptions,
RemoteRetrier.GRPC_RESULT_CLASSIFIER,
retryScheduler,
circuitBreaker,
() -> rpcLogFile);
RemoteExecutionClient remoteExecutor =
new GrpcRemoteExecutor(execChannel.retain(), callCredentialsProvider, execRetrier);
execChannel.release();
RemoteExecutionCache remoteCache =
new RemoteExecutionCache(
remoteCacheClient,
diskCacheClient,
Strings.emptyToNull(remoteOptions.getRemoteDownloadSymlinkTemplate()),
digestUtil,
remoteOptions.getEffectiveChunkingFunction(),
chunkLocationMap);
actionContextProvider =
RemoteActionContextProvider.createForRemoteExecution(
env,
remoteCache,
remoteExecutor,
retryScheduler,
digestUtil,
logDir,
remoteOutputChecker,
outputService,
knownMissingCasDigests);
} else {
if (enableDiskCache) {
try {
diskCacheClient =
CombinedCacheClientFactory.createDiskCache(
env.getWorkingDirectory(),
diskCachePath,
digestUtil,
checkDiskCacheActionResultIntegrity);
} catch (Exception e) {
handleInitFailure(env, e, Code.CACHE_INIT_FAILURE);
return false;
}
}
CombinedCache combinedCache =
new CombinedCache(
remoteCacheClient,
diskCacheClient,
Strings.emptyToNull(remoteOptions.getRemoteDownloadSymlinkTemplate()),
digestUtil,
remoteOptions.getEffectiveChunkingFunction(),
chunkLocationMap);
actionContextProvider =
RemoteActionContextProvider.createForRemoteCaching(
env,
combinedCache,
retryScheduler,
digestUtil,
remoteOutputChecker,
outputService,
knownMissingCasDigests);
}
actionInputFetcher = createActionInputFetcher(actionContextProvider.getCombinedCache());
initRepoHelpersAndOverlayFs(env, buildRequestId, invocationId, verboseFailures);
buildEventArtifactUploaderFactoryDelegate.init(
new ByteStreamBuildEventArtifactUploaderFactory(
executorService,
env.getReporter(),
verboseFailures,
actionContextProvider.getCombinedCache(),
remoteOptions.getRemoteInstanceName(),
remoteOptions.getRemoteBytestreamUriPrefix(),
buildRequestId,
invocationId,
remoteOptions.getRemoteBuildEventUploadMode(),
remoteOptions.getMaximumOpenFiles()));
if (enableRemoteDownloader) {
ReferenceCountedChannel downloaderChannel;
// Create a separate channel if --remote_downloader and --remote_cache point to different
// endpoints.
if (remoteOptions.getRemoteDownloader().equals(remoteOptions.getRemoteCache())) {
downloaderChannel = cacheChannel.retain();
} else {
downloaderChannel =
createChannel(
executorService,
remoteOptions,
authAndTlsOptions,
/* headersInterceptor= */ null,
loggingInterceptor,
downloadIdleTimeoutInterceptor,
remoteGrpcServiceConfig,
channelFactory,
remoteOptions.getRemoteDownloader(),
remoteOptions.getRemoteProxy(),
maxConcurrencyPerConnection,
maxConnections,
env.getReporter(),
rsc,
digestUtil.getDigestFunction(),
ServerCapabilitiesRequirement.NONE);
}
remoteDownloader =
new GrpcRemoteDownloader(
buildRequestId,
invocationId,
downloaderChannel.retain(),
Optional.ofNullable(callCredentials),
retrier,
remoteCacheClient,
digestUtil.getDigestFunction(),
remoteOptions,
verboseFailures,
env.getHttpDownloader(),
remoteOptions.getRemoteDownloaderLocalFallback());
downloaderChannel.release();
env.getDownloaderDelegate().setDelegate(remoteDownloader);
}
return true;
}
private static ReferenceCountedChannel createChannel(
ExecutorService executorService,