| // Copyright 2019 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| |
| // The worker command runs a service with the primary job of fetching modules |
| // from a proxy and writing them to the database. |
| package main |
| |
| import ( |
| "context" |
| "flag" |
| "net/http" |
| "os" |
| "strings" |
| "time" |
| |
| "cloud.google.com/go/profiler" |
| "github.com/go-redis/redis/v8" |
| "github.com/google/safehtml/template" |
| _ "github.com/jackc/pgx/v4/stdlib" // for pgx driver |
| "golang.org/x/pkgsite/cmd/internal/cmdconfig" |
| "golang.org/x/pkgsite/internal" |
| "golang.org/x/pkgsite/internal/config" |
| "golang.org/x/pkgsite/internal/dcensus" |
| "golang.org/x/pkgsite/internal/fetch" |
| "golang.org/x/pkgsite/internal/index" |
| "golang.org/x/pkgsite/internal/log" |
| "golang.org/x/pkgsite/internal/middleware" |
| "golang.org/x/pkgsite/internal/postgres" |
| "golang.org/x/pkgsite/internal/proxy" |
| "golang.org/x/pkgsite/internal/queue" |
| "golang.org/x/pkgsite/internal/source" |
| "golang.org/x/pkgsite/internal/worker" |
| ) |
| |
| var ( |
| timeout = config.GetEnvInt(context.Background(), "GO_DISCOVERY_WORKER_TIMEOUT_MINUTES", 10) |
| queueName = config.GetEnv("GO_DISCOVERY_WORKER_TASK_QUEUE", "") |
| workers = flag.Int("workers", 10, "number of concurrent requests to the fetch service, when running locally") |
| // flag used in call to safehtml/template.TrustedSourceFromFlag |
| _ = flag.String("static", "static", "path to folder containing static files served") |
| bypassLicenseCheck = flag.Bool("bypass_license_check", false, "insert all data into the DB, even for non-redistributable paths") |
| ) |
| |
| func main() { |
| flag.Parse() |
| |
| ctx := context.Background() |
| |
| cfg, err := config.Init(ctx) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| cfg.Dump(os.Stdout) |
| |
| if cfg.UseProfiler { |
| if err := profiler.Start(profiler.Config{}); err != nil { |
| log.Fatalf(ctx, "profiler.Start: %v", err) |
| } |
| } |
| |
| readProxyRemoved(ctx) |
| |
| db, err := cmdconfig.OpenDB(ctx, cfg, *bypassLicenseCheck) |
| if err != nil { |
| log.Fatalf(ctx, "%v", err) |
| } |
| defer db.Close() |
| |
| populateExcluded(ctx, db) |
| |
| indexClient, err := index.New(cfg.IndexURL) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| proxyClient, err := proxy.New(cfg.ProxyURL) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| sourceClient := source.NewClient(config.SourceTimeout) |
| expg := cmdconfig.ExperimentGetter(ctx, cfg) |
| fetchQueue, err := queue.New(ctx, cfg, queueName, *workers, expg, |
| func(ctx context.Context, modulePath, version string) (int, error) { |
| f := &worker.Fetcher{ |
| ProxyClient: proxyClient, |
| SourceClient: sourceClient, |
| DB: db, |
| } |
| code, _, err := f.FetchAndUpdateState(ctx, modulePath, version, cfg.AppVersionLabel()) |
| return code, err |
| }) |
| if err != nil { |
| log.Fatalf(ctx, "queue.New: %v", err) |
| } |
| |
| reportingClient := cmdconfig.ReportingClient(ctx, cfg) |
| redisCacheClient := getCacheRedis(ctx, cfg) |
| experimenter := cmdconfig.Experimenter(ctx, cfg, expg, reportingClient) |
| server, err := worker.NewServer(cfg, worker.ServerConfig{ |
| DB: db, |
| IndexClient: indexClient, |
| ProxyClient: proxyClient, |
| SourceClient: sourceClient, |
| RedisCacheClient: redisCacheClient, |
| Queue: fetchQueue, |
| ReportingClient: reportingClient, |
| StaticPath: template.TrustedSourceFromFlag(flag.Lookup("static").Value), |
| GetExperiments: experimenter.Experiments, |
| }) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| router := dcensus.NewRouter(nil) |
| server.Install(router.Handle) |
| |
| views := append(dcensus.ServerViews, |
| worker.EnqueueResponseCount, |
| worker.ProcessingLag, |
| worker.UnprocessedModules, |
| worker.UnprocessedNewModules, |
| fetch.FetchLatencyDistribution, |
| fetch.FetchResponseCount, |
| fetch.SheddedFetchCount, |
| fetch.FetchPackageCount) |
| if err := dcensus.Init(cfg, views...); err != nil { |
| log.Fatal(ctx, err) |
| } |
| // We are not currently forwarding any ports on AppEngine, so serving debug |
| // information is broken. |
| if !cfg.OnAppEngine() { |
| dcensusServer, err := dcensus.NewServer() |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| go http.ListenAndServe(cfg.DebugAddr("localhost:8001"), dcensusServer) |
| } |
| |
| iap := middleware.Identity() |
| if aud := os.Getenv("GO_DISCOVERY_IAP_AUDIENCE"); aud != "" { |
| iap = middleware.ValidateIAPHeader(aud) |
| } |
| |
| mw := middleware.Chain( |
| middleware.RequestLog(cmdconfig.Logger(ctx, cfg, "worker-log")), |
| middleware.Timeout(time.Duration(timeout)*time.Minute), |
| iap, |
| middleware.Experiment(experimenter), |
| ) |
| http.Handle("/", mw(router)) |
| |
| addr := cfg.HostAddr("localhost:8000") |
| log.Infof(ctx, "Listening on addr %s", addr) |
| log.Fatal(ctx, http.ListenAndServe(addr, nil)) |
| } |
| |
| func getCacheRedis(ctx context.Context, cfg *config.Config) *redis.Client { |
| return getRedis(ctx, cfg.RedisCacheHost, cfg.RedisCachePort, 0, 6*time.Second) |
| } |
| |
| func getRedis(ctx context.Context, host, port string, writeTimeout, readTimeout time.Duration) *redis.Client { |
| if host == "" { |
| return nil |
| } |
| var dialTimeout time.Duration |
| if dl, ok := ctx.Deadline(); ok { |
| dialTimeout = time.Until(dl) |
| } |
| return redis.NewClient(&redis.Options{ |
| Addr: host + ":" + port, |
| DialTimeout: dialTimeout, |
| WriteTimeout: writeTimeout, |
| ReadTimeout: readTimeout, |
| }) |
| } |
| |
| // Read a file of module versions that we should ignore because |
| // the are in the index but not stored in the proxy. |
| // Format of the file: each line is |
| // module@version |
| func readProxyRemoved(ctx context.Context) { |
| filename := config.GetEnv("GO_DISCOVERY_PROXY_REMOVED", "") |
| if filename == "" { |
| return |
| } |
| lines, err := internal.ReadFileLines(filename) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| for _, line := range lines { |
| worker.ProxyRemoved[line] = true |
| } |
| log.Infof(ctx, "read %d excluded module versions from %s", len(worker.ProxyRemoved), filename) |
| } |
| |
| // populateExcluded adds each element of excludedPrefixes to the excluded_prefixes |
| // table if it isn't already present. |
| func populateExcluded(ctx context.Context, db *postgres.DB) { |
| filename := config.GetEnv("GO_DISCOVERY_EXCLUDED_FILENAME", "") |
| if filename == "" { |
| return |
| } |
| lines, err := internal.ReadFileLines(filename) |
| if err != nil { |
| log.Fatal(ctx, err) |
| } |
| user := os.Getenv("USER") |
| if user == "" { |
| user = "worker" |
| } |
| for _, line := range lines { |
| var prefix, reason string |
| i := strings.IndexAny(line, " \t") |
| if i >= 0 { |
| prefix = line[:i] |
| reason = strings.TrimSpace(line[i+1:]) |
| } |
| if reason == "" { |
| log.Fatalf(ctx, "missing reason in %s, line %q", filename, line) |
| } |
| present, err := db.IsExcluded(ctx, prefix) |
| if err != nil { |
| log.Fatalf(ctx, "db.IsExcluded(%q): %v", prefix, err) |
| } |
| if !present { |
| if err := db.InsertExcludedPrefix(ctx, prefix, user, reason); err != nil { |
| log.Fatalf(ctx, "db.InsertExcludedPrefix(%q, %q, %q): %v", prefix, user, reason, err) |
| } |
| } |
| } |
| } |