Skip to content

Commit

Permalink
Add debug output to help to differentiate retry cases (pantsbuild#16277)
Browse files Browse the repository at this point in the history
This is debug output (and labels itself as such) to assist with differentiating the cases of pantsbuild#16096.

[ci skip-rust]
[ci skip-build-wheels]
  • Loading branch information
stuhood committed Aug 2, 2022
1 parent f1ff638 commit fec1d29
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ unmatched_build_file_globs = "error"
remote_store_address = "grpcs://cache.toolchain.com:443"
remote_instance_name = "main"
remote_auth_plugin = "toolchain.pants.auth.plugin:toolchain_auth_plugin"
# TODO: See https://github.com/pantsbuild/pants/issues/16096.
remote_cache_eager_fetch = true
# TODO: May cause tests which experience missing digests to hang.
# See https://github.com/pantsbuild/pants/issues/16096.
remote_cache_eager_fetch = false

[anonymous-telemetry]
enabled = true
Expand Down
2 changes: 2 additions & 0 deletions src/rust/engine/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,8 @@ impl Context {
if let Some(new_level) = maybe_new_level {
workunit.increment_counter(Metric::BacktrackAttempts, 1);
let description = &root.process.description;
// TODO: This message should likely be at `info`, or eventually, debug.
// see https://github.com/pantsbuild/pants/issues/15867
log::warn!(
"Making attempt {new_level} to backtrack and retry `{description}`, due to \
missing digest {digest:?}."
Expand Down
13 changes: 13 additions & 0 deletions src/rust/engine/src/nodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,19 @@ impl ExecuteProcess {
}
}

if backtrack_level > 0 {
// TODO: This message is symmetrical to the "Making attempt {} to backtrack and retry {}"
// message in `context.rs`, but both of them are effectively debug output. They should be
// quieted down as part of https://github.com/pantsbuild/pants/issues/15867 once all bugs
// have been shaken out.
log::info!(
"On backtrack attempt {} for `{}`, produced: {:?}",
backtrack_level,
request.description,
res.output_directory.digests()
);
}

Ok(ProcessResult {
result: res,
backtrack_level,
Expand Down

0 comments on commit fec1d29

Please sign in to comment.