-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmain.go
554 lines (514 loc) · 25.2 KB
/
main.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
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
// Copyright 2023 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.
// Binary reproxy is a long running server that rewrapper binary talks to
// for fast and efficient remote-execution and caching of various types of actions.
package main
import (
"context"
"errors"
"flag"
"fmt"
"net/http"
_ "net/http/pprof"
"os"
"os/signal"
"runtime"
"runtime/pprof"
"strings"
"sync"
"syscall"
"time"
"github.com/bazelbuild/reclient/internal/pkg/auth"
"github.com/bazelbuild/reclient/internal/pkg/auxiliary"
"github.com/bazelbuild/reclient/internal/pkg/bigquery"
"github.com/bazelbuild/reclient/internal/pkg/ignoremismatch"
"github.com/bazelbuild/reclient/internal/pkg/interceptors"
"github.com/bazelbuild/reclient/internal/pkg/ipc"
"github.com/bazelbuild/reclient/internal/pkg/localresources"
"github.com/bazelbuild/reclient/internal/pkg/localresources/usage"
"github.com/bazelbuild/reclient/internal/pkg/logger"
"github.com/bazelbuild/reclient/internal/pkg/loghttp"
"github.com/bazelbuild/reclient/internal/pkg/monitoring"
"github.com/bazelbuild/reclient/internal/pkg/pathtranslator"
"github.com/bazelbuild/reclient/internal/pkg/rbeflag"
"github.com/bazelbuild/reclient/internal/pkg/reproxy"
"github.com/bazelbuild/reclient/internal/pkg/reproxypid"
"github.com/bazelbuild/reclient/internal/pkg/stats"
"github.com/bazelbuild/reclient/internal/pkg/subprocess"
"github.com/bazelbuild/reclient/internal/pkg/version"
"github.com/bazelbuild/reclient/pkg/inputprocessor"
"cloud.google.com/go/profiler"
"github.com/bazelbuild/remote-apis-sdks/go/pkg/client"
"github.com/bazelbuild/remote-apis-sdks/go/pkg/credshelper"
"github.com/bazelbuild/remote-apis-sdks/go/pkg/rexec"
"github.com/bazelbuild/remote-apis-sdks/go/pkg/filemetadata"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/status"
pb "github.com/bazelbuild/reclient/api/proxy"
rflags "github.com/bazelbuild/remote-apis-sdks/go/pkg/flags"
"github.com/bazelbuild/remote-apis-sdks/go/pkg/moreflag"
log "github.com/golang/glog"
grpcOauth "google.golang.org/grpc/credentials/oauth"
)
var (
homeDir, _ = os.UserHomeDir()
labels = make(map[string]string)
start = time.Now()
)
var (
proxyLogDir []string
clangDepScanIgnoredPlugins = flag.String("clang_depscan_ignored_plugins", "", `Comma-separated list of plugins that should be ignored by clang dependency scanner.
Use this flag if you're using custom llvm build as your toolchain and your llvm plugins cause dependency scanning failures.`)
serverAddr = flag.String("server_address", "", "The server address in the format of host:port for network, or unix:///file for unix domain sockets.")
logFormat = flag.String("log_format", "reducedtext", "Format of proxy log. Currently only text and reducedtext are supported. Defaults to reducedtext.")
logPath = flag.String("log_path", "", "DEPRECATED. Use proxy_log_dir instead. If provided, the path to a log file of all executed records. The format is e.g. text://full/file/path.")
mismatchIgnoreConfigPath = flag.String("mismatch_ignore_config_path", "", "If provided, mismatches will be ignored according to the provided rule config.")
enableDepsCache = flag.Bool("enable_deps_cache", false, "Enables the deps cache if --cache_dir is provided")
cacheDir = flag.String("cache_dir", "", "Directory from which to load the cache files at startup and update at shutdown.")
keepRecords = flag.Int("num_records_to_keep", 0, "The number of last executed records to keep in memory for serving.")
// TODO(b/157446611): remove this flag.
_ = flag.String("cpp_dependency_scanner_plugin", "", "Deprecated: Location of the CPP dependency scanner plugin.")
localResourceFraction = flag.Float64("local_resource_fraction", 1, "Number [0,1] indicating how much of the local machine resources are available for local execution, 1 being all of the machine's CPUs and RAM, 0 being no resources available for local execution.")
cacheSilo = flag.String("cache_silo", "", "Cache silo key to be used for all the actions. Usually used to segregate cache-hits between various builds.")
versionCacheSilo = flag.Bool("version_cache_silo", false, "Indicates whether to add a re-client version as cache-silo key to all remotely-executed actions. Not applicable for actions run in local-execution-remote-cache (LERC) mode.")
remoteDisabled = flag.Bool("remote_disabled", false, "Whether to disable all remote operations and run all actions locally.")
dumpInputTree = flag.Bool("dump_input_tree", false, "Whether to dump the input tree of received actions to the tmp directory.")
useUnifiedCASOps = flag.Bool("use_unified_cas_ops", false, "Deprecated: use_unified_uploads/downloads instead. Whether to use the unified uploader / downloader for deduplicating uploads / downloads.")
useUnifiedUploads = flag.Bool("use_unified_uploads", false, "Whether to use the unified uploader for deduplicating uploads.")
uploadBufferSize = flag.Int("upload_buffer_size", 10000, "Buffer size to flush unified uploader daemon.")
uploadTickDuration = flag.Duration("upload_tick_duration", 50*time.Millisecond, "How often to flush unified uploader daemon.")
useUnifiedDownloads = flag.Bool("use_unified_downloads", false, "Whether to use the unified downloader for deduplicating downloads.")
downloadBufferSize = flag.Int("download_buffer_size", 10000, "Buffer size to flush unified downloader daemon.")
downloadTickDuration = flag.Duration("download_tick_duration", 50*time.Millisecond, "How often to flush unified downloader daemon.")
compressionThreshold = flag.Int("compression_threshold", -1, "Threshold size in bytes for compressing Bytestream reads or writes. Use a negative value for turning off compression.")
useBatches = flag.Bool("use_batches", true, "Use batch operations for relatively small blobs.")
logKeepDuration = flag.Duration("log_keep_duration", 24*time.Hour, "Delete all RE logs older than the specified duration on startup.")
idleTimeout = flag.Duration("proxy_idle_timeout", 6*time.Hour, "Inactivity period after which the running reproxy process will be killed. Default is 6 hours. When set to 0, idle timeout is disabled.")
depsCacheMaxMb = flag.Int("deps_cache_max_mb", 128, "Maximum size of the deps cache file (for goma input processor only).")
// TODO(b/233275188): remove this flag.
_ = flag.Duration("ip_reset_min_delay", 3*time.Minute, "Deprecated. The minimum time after the input processor has been reset before it can be reset again. Negative values disable resetting.")
ipTimeout = flag.Duration("ip_timeout", 10*time.Minute, "The maximum time to wait for an input processor action. Zero and negative values disable timeout.")
metricsProject = flag.String("metrics_project", "", "If set, action and build metrics are exported to Cloud Monitoring in the specified GCP project")
metricsPrefix = flag.String("metrics_prefix", "", "Prefix of metrics exported to Cloud Monitoring")
metricsNamespace = flag.String("metrics_namespace", "", "Namespace of metrics exported to Cloud Monitoring (e.g. RBE project)")
failEarlyMinActionCount = flag.Int64("fail_early_min_action_count", 0, "Minimum number of actions received by reproxy before the fail early mechanism can take effect. 0 indicates fail early is disabled.")
failEarlyMinFallbackRatio = flag.Float64("fail_early_min_fallback_ratio", 0, "Minimum ratio of fallbacks to total actions above which the build terminates early. Ratio is a number in the range [0,1]. 0 indicates fail early is disabled.")
failEarlyWindow = flag.Duration("fail_early_window", 0, "Window of time to consider for fail_early_min_action_count and fail_early_min_fallback_ratio. 0 indicates all datapoints should be used.")
racingBias = flag.Float64("racing_bias", 0.75, "Value between [0,10] to indicate how racing manages the tradeoff of saving bandwidth (0) versus speed (10). A value of 0 to 1 is recommended for most builds. In case of builds with slow include scanning times due to excessive local execution, a value of > 1 may be used to improve the overall build time.")
racingTmp = flag.String("racing_tmp_dir", "", "DEPRECATED. Use download_tmp_dir instead.")
downloadTmp = flag.String("download_tmp_dir", "", "Directory where reproxy should store outputs temporarily before moving them to the desired location. This should be on the same device as the output directory for the build. The default is outputs will be written to a subdirectory inside the action's working directory. Note that the download_tmp_dir will only be used if the action has racing as its exec strategy or it explicitly sets EnableAtomicDownloads=true. See proxy.proto for details.")
debugPort = flag.Int("pprof_port", 0, "Enable pprof http server if not zero")
cpuProfFile = flag.String("pprof_file", "", "Enable cpu pprof if not empty. Will not work on windows as reproxy shutdowns through an uncatchable sigkill.")
memProfFile = flag.String("pprof_mem_file", "", "Enable memory pprof if not empty. Will not work on windows as reproxy shutdowns through an uncatchable sigkill.")
profilerService = flag.String("profiler_service", "", "Service name to associate with profiles uploaded to Cloud Profiling. If unset, Cloud Profiling is disabled.")
profilerProjectID = flag.String("profiler_project_id", "", "project id used for cloud profiler")
cppLinkDeepScan = flag.Bool("clang_depscan_archive", false, "Deep scan .a files for dependencies during clang linking")
depsScannerAddress = flag.String("depsscanner_address", "execrel://", "If set, connects to the given address for C++ dependency scanning; a path with the prefix 'exec://' will start the target executable and connect to it. Defaults to execrel:// which looks for the `scandeps_server` binary in the same folder as reproxy. When set to \"\", the internal dependency scanner will be used.")
waitForShutdownRPC = flag.Bool("wait_for_shutdown_rpc", false, "If set, will only shutdown after 3 SIGINT signals")
logHTTPCalls = flag.Bool("log_http_calls", false, "Log all http requests made with the default http client.")
auxiliaryMetadataPath = flag.String("auxiliary_metadata_path", "", "Path to file where auxiliary_metadata.pb file is stored. Should be a absolute path or a relative path to reproxy.")
bqProjectID = flag.String("bq_project", "", "Project where log records are stored.")
bqTableSpec = flag.String("bq_table", "", "Table where log records are stored.")
// 8M byte limit for marshaled JSON data is empirically derived. BigQuery's REST API has a 10M upload payload limit, but JSON encoding adds overhead.
bqBatchMB = flag.Int("bq_batch_mb", 8, "Batch size in MB for bigquery uploading, defaults to 8MB and should not be larger than 8 MB")
maxListenSizeKb = flag.Int("max_listen_size_kb", 8*1024, "Maximum grpc listen size in kilobytes for messages from rewrapper")
)
func verifyFlags() {
if *localResourceFraction < 0 || *localResourceFraction > 1 {
log.Exitf("Invalid local_resource_fraction: %v, want [0,1]", *localResourceFraction)
}
if *failEarlyMinActionCount < 0 {
log.Exitf("Invalid fail_early_min_action_acount: %v, want [0,MaxInt64]", *failEarlyMinActionCount)
}
if *failEarlyMinFallbackRatio < 0 {
log.Exitf("Invalid fail_early_min_fallback_ratio: %v, want [0,1]", *failEarlyMinFallbackRatio)
}
if *failEarlyWindow < 0 {
log.Exitf("Invalid fail_early_window: %v, want >0", *failEarlyWindow)
}
if *racingBias < 0 || *racingBias > 10 {
log.Exitf("Invalid racing_bias: %v, want [0,10]", *racingBias)
}
if *failEarlyMinActionCount == 0 && *failEarlyMinFallbackRatio > 0 {
log.Exitf("fail_early_min_fallback_ratio is set to %v while fail_early_min_action_count is disabled", *failEarlyMinFallbackRatio)
}
if *failEarlyMinActionCount > 0 && *failEarlyMinFallbackRatio == 0 {
log.Exitf("fail_early_min_action_count is set to %v while fail_early_min_fallback_ratio is disabled", *failEarlyMinActionCount)
}
os.Setenv("RBE_clang_depscan_ignored_plugins", *clangDepScanIgnoredPlugins)
}
func main() {
flag.Var((*moreflag.StringListValue)(&proxyLogDir), "proxy_log_dir", "If provided, the directory path to a proxy log file of executed records.")
flag.StringVar(&filemetadata.XattrDigestName, "xattr_digest", "", "Extended file attribute to obtain the digest from, if available, formatted as hash/size. If the value contains the hash only, the file size as reported by stat is used.")
flag.Var((*moreflag.StringMapValue)(&labels), "metrics_labels", "Comma-separated key value pairs in the form key=value. This is used to add arbitrary labels to exported metrics.")
rbeflag.Parse()
rbeflag.LogAllFlags(0)
defer log.Flush()
if *logHTTPCalls {
loghttp.Register()
}
defer func() {
pf, err := reproxypid.ReadFile(*serverAddr)
if err != nil {
log.Warningf("Unable to find pid file for deletion: %v", err)
return
}
pf.Delete()
}()
if *depsScannerAddress != "" {
if *depsScannerAddress == "execrel://" {
scandepsServerPath, err := pathtranslator.BinaryRelToAbs("scandeps_server")
if err != nil {
log.Fatalf("Specified --depsscanner_address=execrel:// but `scandeps_server` was not found in the same directory as `reproxy`: %v", err)
}
*depsScannerAddress = "exec://" + scandepsServerPath
}
// If the depsscanner crashes or times out, all actions in flight will be counted as
// timeouts. Therefore we bump the number allowed to account for multiple fallbacks from
// one failure.
// There will be at most NumCPU actions at any given time; this gives us approximately
// two failures before aborting the build on the third.
reproxy.AllowedIPTimeouts += int64(runtime.NumCPU() * 2)
} else {
log.Fatalf("--depsscanner_address must be specified")
}
log.Flush()
version.PrintAndExitOnVersionFlag(true)
verifyFlags()
if *serverAddr == "" {
log.Exit("-server_address cannot be empty")
}
if *profilerService != "" {
log.Infof("Enable cloud profiler: service=%s project=%s", *profilerService, *profilerProjectID)
err := profiler.Start(profiler.Config{
Service: *profilerService,
ServiceVersion: version.CurrentVersion(),
MutexProfiling: true,
ProjectID: *profilerProjectID,
})
if err != nil {
log.Errorf("Failed to start cloud profiler: %v", err)
}
}
if *debugPort > 0 {
go func() {
addr := fmt.Sprintf("127.0.0.1:%d", *debugPort)
log.Infof("start http server for pprof at %s", addr)
log.Exit(http.ListenAndServe(addr, nil))
}()
} else {
if *cpuProfFile != "" {
f, err := os.Create(*cpuProfFile)
if err != nil {
log.Fatal("Could not create CPU profile: ", err)
}
defer f.Close()
if err := pprof.StartCPUProfile(f); err != nil {
log.Fatal("Could not start CPU profile: ", err)
}
}
if *memProfFile != "" {
f, err := os.Create(*memProfFile)
if err != nil {
log.Fatal("Could not create memory profile: ", err)
}
defer f.Close()
if err := pprof.WriteHeapProfile(f); err != nil {
log.Fatal("Could not start memory profile: ", err)
}
}
}
listener, err := ipc.Listen(*serverAddr)
if err != nil {
log.Exitf("Failed to listen: %v", err)
}
logDir := getLogDir()
var opts []grpc.ServerOption
maxListenBytes := *maxListenSizeKb * 1024
truncateInterceptor := interceptors.NewTruncInterceptor(maxListenBytes, logDir)
opts = append(
opts,
grpc.MaxRecvMsgSize(maxListenBytes),
grpc.ChainUnaryInterceptor(interceptors.UnaryServerInterceptor, truncateInterceptor),
grpc.StreamInterceptor(interceptors.StreamServerInterceptor),
)
grpcServer := grpc.NewServer(opts...)
ctx := context.Background()
var ts *grpcOauth.TokenSource
var pCreds credentials.PerRPCCredentials
if !*remoteDisabled {
chFlag := flag.Lookup(credshelper.CredshelperPathFlag)
credentialsHelperPath := chFlag.Value.String()
if credentialsHelperPath != "" {
credentialsHelperArgs := flag.Lookup(credshelper.CredshelperArgsFlag).Value.String()
c, err := credshelper.NewExternalCredentials(credentialsHelperPath, strings.Fields(credentialsHelperArgs))
if err != nil {
fmt.Fprintf(os.Stderr, "Credentials helper failed. Please try again or use application default credentials:%v", err)
os.Exit(auth.ExitCodeExternalTokenAuth)
}
ts = c.TokenSource()
pCreds = c.PerRPCCreds()
}
}
var e *monitoring.Exporter
if *metricsProject != "" {
e, err = newExporter(ts)
if err != nil {
log.Warningf("Failed to initialize cloud monitoring: %v", err)
} else {
defer e.Close()
}
}
mi, err := ignoremismatch.New(*mismatchIgnoreConfigPath)
if err != nil {
log.Errorf("Failed to create mismatch ignorer: %v", err)
}
l, err := initializeLogger(mi, e)
if err != nil {
log.Exitf("%v", err)
}
st := filemetadata.NewSingleFlightCache()
subprocCleanup, err := subprocess.Setup()
if err != nil {
log.Exitf("Failed in subprocess setup: %v", err)
}
defer subprocCleanup()
exec := &subprocess.SystemExecutor{}
resMgr := localresources.NewFractionalDefaultManager(*localResourceFraction)
dTmp := *racingTmp
if *downloadTmp != "" {
dTmp = *downloadTmp
}
initCtx, cancelInit := context.WithCancel(ctx)
server := &reproxy.Server{
FileMetadataStore: st,
LocalPool: reproxy.NewLocalPool(exec, resMgr),
KeepLastRecords: *keepRecords,
CacheSilo: *cacheSilo,
VersionCacheSilo: *versionCacheSilo,
RemoteDisabled: *remoteDisabled,
DumpInputTree: *dumpInputTree,
Forecast: &reproxy.Forecast{},
StartTime: start,
FailEarlyMinActionCount: *failEarlyMinActionCount,
FailEarlyMinFallbackRatio: *failEarlyMinFallbackRatio,
FailEarlyWindow: *failEarlyWindow,
RacingBias: *racingBias,
DownloadTmp: dTmp,
MaxHoldoff: time.Minute,
Logger: l,
StartupCancelFn: cancelInit,
ReclientVersion: version.CurrentVersion(),
}
server.Init()
ipOpts := &inputprocessor.Options{
CacheDir: *cacheDir,
EnableDepsCache: *enableDepsCache,
LogDir: logDir,
DepsCacheMaxMb: *depsCacheMaxMb,
CppLinkDeepScan: *cppLinkDeepScan,
IPTimeout: *ipTimeout,
DepsScannerAddress: *depsScannerAddress,
ProxyServerAddress: *serverAddr,
ReclientVersion: version.CurrentVersion(),
}
go func() {
log.Infof("Setting up input processor")
ip, cleanup, err := inputprocessor.NewInputProcessor(initCtx, exec, resMgr, st, l, ipOpts)
if err != nil {
log.Errorf("Failed to initialize input processor: %+v", err)
server.SetStartupErr(status.Error(codes.Internal, err.Error()))
cancelInit()
} else {
log.Infof("Finished setting up input processor")
server.SetInputProcessor(ip, cleanup)
}
}()
if *remoteDisabled {
server.SetREClient(&rexec.Client{FileMetadataCache: st, GrpcClient: nil}, func() {})
} else {
// Backward compatibility until useUnifiedCASOps is deprecated:
if *useUnifiedCASOps {
*useUnifiedUploads = true
*useUnifiedDownloads = true
}
clientOpts := []client.Opt{
client.UnifiedUploads(*useUnifiedUploads),
client.UnifiedUploadBufferSize(*uploadBufferSize),
client.UnifiedUploadTickDuration(*uploadTickDuration),
client.UnifiedDownloads(*useUnifiedDownloads),
client.UnifiedDownloadBufferSize(*downloadBufferSize),
client.UnifiedDownloadTickDuration(*downloadTickDuration),
client.UseBatchOps(*useBatches),
client.CompressedBytestreamThreshold(*compressionThreshold),
}
if pCreds != nil {
clientOpts = append(clientOpts, &client.PerRPCCreds{Creds: pCreds})
}
go func() {
log.Infof("Creating a new SDK client")
grpcClient, err := rflags.NewClientFromFlags(initCtx, clientOpts...)
if err != nil {
log.Errorf("Failed to initialize SDK client: %+v", err)
if ce, ok := err.(*client.InitError); ok {
err = formatAuthError(ce)
}
server.SetStartupErr(err)
cancelInit()
} else {
log.Infof("Finished setting up SDK client")
server.SetREClient(&rexec.Client{FileMetadataCache: st, GrpcClient: grpcClient}, func() { grpcClient.Close() })
}
}()
}
go server.Forecast.Run(ctx)
go server.MonitorFailBuildConditions(ctx)
go reproxy.IdleTimeout(ctx, *idleTimeout)
// Log all reproxy flags.
if server.Logger != nil {
server.Logger.AddFlags(flag.CommandLine)
} else {
log.Warningf("nil logger pointer")
}
// Delete old logs in the background.
go reproxy.DeleteOldLogFiles(*logKeepDuration, logDir)
pb.RegisterCommandsServer(grpcServer, server)
pb.RegisterStatsServer(grpcServer, server)
pb.RegisterStatusServer(grpcServer, l)
log.Infof("RE proxy server listening on %s://%s", listener.Addr().Network(), listener.Addr().String())
log.Flush()
sigs := make(chan os.Signal, 1)
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
wg := sync.WaitGroup{}
wg.Add(2)
go func() {
sigCnt := 1
if *waitForShutdownRPC {
sigCnt = 3
}
for sigCnt > 0 {
select {
case sig := <-sigs:
sigCnt--
go server.DrainAndReleaseResources() // Start draining server immediately while waiting for Shutdown rpc
if sigCnt > 0 {
log.Infof("RE proxy server received %v signal, waiting for Shutdown rpc or %d more signals...", sig, sigCnt)
} else {
log.Infof("RE proxy server received %v signal, shutting down...", sig)
}
case <-server.WaitForShutdownCommand():
sigCnt = 0
log.Infof("RE proxy server received a Shutdown RPC call, shutting down...")
}
}
if *cpuProfFile != "" {
pprof.StopCPUProfile()
}
grpcServer.GracefulStop()
<-server.WaitForCleanupDone()
log.Infof("Finished shutting down and wrote log records...")
log.Flush()
wg.Done()
}()
go func() {
grpcServer.Serve(listener)
wg.Done()
}()
wg.Wait()
}
func formatAuthError(ce *client.InitError) error {
if errors.Is(ce.Err, context.Canceled) {
return ce.Err
}
errMsg := "Unable to authenticate with RBE"
switch ce.AuthUsed {
case client.ExternalTokenAuth:
errMsg += ", externally provided auth token was invalid"
case client.ApplicationDefaultCredsAuth:
errMsg += ", try restarting the build after running the following command:\n"
errMsg += " gcloud auth application-default login --disable-quota-project\n"
errMsg += "If this is a headless machine, use:\n"
errMsg += " gcloud auth application-default login --no-launch-browser --disable-quota-project"
}
return status.Errorf(codes.Unauthenticated, errMsg+"\n%s", ce.Error())
}
func initializeLogger(mi *ignoremismatch.MismatchIgnorer, e *monitoring.Exporter) (*logger.Logger, error) {
u := usage.New()
if *auxiliaryMetadataPath != "" {
if p, err := pathtranslator.BinaryRelToAbs(*auxiliaryMetadataPath); err != nil {
log.Errorf("Failed to parse auxiliary metadata's descriptor's file path: %q", err)
} else {
if err := auxiliary.SetMessageDescriptor(p); err != nil {
log.Errorf("Failed to set message descriptor for auxiliary metadata: %q", err)
}
}
} else {
log.Warningf("Path for auxiliary metadata message descriptor file is empty." +
"\nIf you want to collect backend workers' cpu/mem usage information into reproxy log, please set the --auxiliary_metadata_path flag (see instruction in api/auxiliary_metadata/readme.md).")
}
var bqSpec *bigquery.BQSpec
if *bqProjectID != "" && *bqTableSpec != "" {
ctx, cancel := context.WithCancel(context.Background())
client, cleanUp, err := bigquery.NewInserter(ctx, *bqTableSpec, *bqProjectID, nil)
if err != nil {
log.Errorf("Failed creating bigquery stream: %v", err)
} else {
bqSpec = &bigquery.BQSpec{
BatchSizeMB: *bqBatchMB,
Client: client,
CleanUp: cleanUp,
Ctx: ctx,
Cancel: cancel,
}
}
} else {
log.Infof("If you want to collect LogRecords for each action to a bigquery table, please set the --bq_project, --bq_table flags.")
}
if len(proxyLogDir) > 0 {
format, err := logger.ParseFormat(*logFormat)
if err != nil {
return nil, fmt.Errorf("error initializing logger: %v", err)
}
l, err := logger.New(format, proxyLogDir[0], stats.New(), mi, e, u, bqSpec)
if err != nil {
return nil, fmt.Errorf("error initializing logger: %v", err)
}
return l, nil
}
if *logPath != "" {
l, err := logger.NewFromFormatFile(*logPath, stats.New(), mi, e, u, bqSpec)
if err != nil {
return nil, fmt.Errorf("error initializing log file %v: %v", *logPath, err)
}
return l, nil
}
return nil, nil
}
func newExporter(ts *grpcOauth.TokenSource) (*monitoring.Exporter, error) {
if err := monitoring.SetupViews(labels); err != nil {
return nil, err
}
return monitoring.NewExporter(context.Background(), *metricsProject, *metricsPrefix, *metricsNamespace, version.CurrentVersion(), ts)
}
func getLogDir() string {
if len(proxyLogDir) > 0 {
return proxyLogDir[0]
}
if f := flag.Lookup("log_dir"); f != nil && f.Value.String() != "" {
return f.Value.String()
}
return os.TempDir()
}