- Core developer targets that are frequently iterated on and (re)built.
- Common libraries widely depended upon by other targets.
- A representative target from a class of targets (e.g. custom rules), diagnosing and fixing issues in one build might help to resolve issues at the larger scale.
Build Event Protocol (BEP)
Bazel outputs a variety of protocol buffersbuild_event_stream.proto
through the Build Event Protocol (BEP), which
can be aggregated by a backend specified by you. Depending on your use cases,
you might decide to aggregate the metrics in various ways, but here we will go
over some concepts and proto fields that would be useful in general to consider.
Bazel’s query / cquery / aquery commands
Bazel provides 3 different query modes (query, cquery and aquery) that allow users to query the target graph, configured target graph and action graph respectively. The query language provides a suite of functions usable across the different query modes, that allows you to customize your queries according to your needs.JSON Trace Profiles
For every build-like Bazel invocation, Bazel writes a trace profile in JSON format. The JSON trace profile can be very useful to quickly understand what Bazel spent time on during the invocation.Execution Log
The execution log can help you to troubleshoot and fix missing remote cache hits due to machine and environment differences or non-deterministic actions. If you pass the flag--experimental_execution_log_spawn_metrics
(available from Bazel 5.2) it will also contain detailed spawn metrics, both for
locally and remotely executed actions. You can use these metrics for example to
make comparisons between local and remote machine performance or to find out
which part of the spawn execution is consistently slower than expected (for
example due to queuing).
Execution Graph Log
While the JSON trace profile contains the critical path information, sometimes you need additional information on the dependency graph of the executed actions. Starting with Bazel 6.0, you can pass the flags--experimental_execution_graph_log and
--experimental_execution_graph_log_dep_type=all to write out a log about the
executed actions and their inter-dependencies.
This information can be used to understand the drag that is added by a node on
the critical path. The drag is the amount of time that can potentially be saved
by removing a particular node from the execution graph.
The data helps you predict the impact of changes to the build and action graph
before you actually do them.
Benchmarking with bazel-bench
Bazel bench is a benchmarking tool for Git projects to benchmark build performance in the following cases:- Project benchmark: Benchmarking two git commits against each other at a single Bazel version. Used to detect regressions in your build (often through the addition of dependencies).
- Bazel benchmark: Benchmarking two versions of Bazel against each other at a single git commit. Used to detect regressions within Bazel itself (if you happen to maintain / fork Bazel).