commit | e6775ba7f7e5ece0dd0e4a81d6e9d7c882f7d5a3 | [log] [tgz] |
---|---|---|
author | nqmtuan <nqmtuan@google.com> | Thu Feb 15 06:49:45 2024 |
committer | LUCI CQ <infra-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Feb 15 06:49:45 2024 |
tree | 8c17efd639c170d1a2050a7ba662c23fd370b6f3 | |
parent | 09c12bd343e1ed26df6892c4e6a70e062eff42f9 [diff] |
[LogAnalysis] Fix clustering In BigQuery, clustering is limit to a maximum of 4 columns. We have 5 at the moment. I created another column that combines the artifact_id and shard_id. Both fields are small, so the size of the column be insignificant. (I thought about removing the artifact_id and shard_id column, but decided to leave them for the convenience of querying). Bug:b/322254047 Change-Id: If338c4d1da4207485fefa3c45d99330a8753f7fd Reviewed-on: https://chromium-review.googlesource.com/c/infra/luci/luci-go/+/5299234 Reviewed-by: Matthew Warton <mwarton@google.com> Commit-Queue: Tuan Nguyen <nqmtuan@google.com>
LUCI Go code is meant to be worked on from an Chromium infra.git checkout, which enforces packages versions and Go toolchain version. First get fetch via depot_tools.git then run:
fetch infra cd infra/go eval `./env.py` cd src/go.chromium.org/luci
It is now possible to directly install tools with go install:
go install go.chromium.org/luci/auth/client/cmd/...@latest go install go.chromium.org/luci/buildbucket/cmd/...@latest go install go.chromium.org/luci/cipd/client/cmd/...@latest go install go.chromium.org/luci/client/cmd/...@latest go install go.chromium.org/luci/cv/cmd/...@latest go install go.chromium.org/luci/gce/cmd/...@latest go install go.chromium.org/luci/grpc/cmd/...@latest go install go.chromium.org/luci/logdog/client/cmd/...@latest go install go.chromium.org/luci/luci_notify/cmd/...@latest go install go.chromium.org/luci/lucicfg/cmd/...@latest go install go.chromium.org/luci/luciexe/legacy/cmd/...@latest go install go.chromium.org/luci/mailer/cmd/...@latest go install go.chromium.org/luci/mmutex/cmd/...@latest go install go.chromium.org/luci/resultdb/cmd/...@latest go install go.chromium.org/luci/server/cmd/...@latest go install go.chromium.org/luci/swarming/cmd/...@latest go install go.chromium.org/luci/tokenserver/cmd/...@latest go install go.chromium.org/luci/tools/cmd/...@latest
Contributing uses the same flow as Chromium contributions.