bazel-lib/docs
Peter Lobsinger bca34bd17c
perf: report unused inputs for the tar rule (#951)
* perf: report unused inputs for the tar rule

The `mtree` spec passed to the `tar` rule very often selects a subset of the
inputs made available through the `srcs` attribute. In many cases, these
subsets do not break down cleanly along dependency-tree lines and there
is no simple way just pass less content to the `tar` rule.

One prominent example where this occurs is when constructing the tars
for OCI image layers. For instance when [building a Python-based
container image](https://github.com/bazel-contrib/rules_oci/blob/main/docs/python.md),
we might want to split the Python interpreter, third-party dependencies, and
application code into their own layers. This is done by [filtering the
`mtree_spec`](85cb2aaf8c/oci_python_image/py_layer.bzl (L39)).

However, in the operation to construct a `tar` from a subsetted mtree,
it is usually still an unsubsetted tree of `srcs` that gets passed. As
a result, the subset tarball is considered dependent upon a larger set
of sources than is strictly necessary.

This over-scoping runs counter to a very common objective associated with
breaking up an image into layers - isolating churn to a smaller slice of
the application. Because of the spurious relationships established in
Bazel's dependency graph, all tars get rebuilt anytime any content in
the application gets changed. Tar rebuilds can even be triggered by
changes to files that are completely filtered-out from all layers of the container.

Redundent creation of archive content is usually not too computationally
intensive, but the archives can be quite large in some cases, and
avoiding a rebuild might free up gigabytes of disk and/or network
bandwidth for
better use. In addition, eliminating the spurious dependency edges
removes erroneous constraints applied to the build action schedule;
these tend to push all Tar-building operations towards the end of a
build, even when some archive construction could be scheduled much earlier.

## Risk assessment and mitigation

The `unused_inputs_list` mechanism used to report spurious dependency
relationships is a bit difficult to use. Reporting an actually-used
input as unused can create difficult to diagnose problems down the line.

However, the behaviour of the `mtree`-based `tar` rule is sufficiently
simple and self-contained that I am fairly confident that this rule's
used/unused set can be determined accurately in a maintainable fashion.

Out of an abundance of caution I have gated this feature behind a
default-off flag. The `tar` rule will continue to operate as it had
before - typically over-reporting dependencies - unless the
`--@aspect_bazel_lib//lib:tar_compute_unused_inputs` flag is passed.

### Filter accuracy

The `vis` encoding used by the `mtree` format to resiliently handle path
names has a small amount of "play" to it - it is reversable but the
encoded representation of a string is not
unique. Two unequal encoded strings might decode to the same value; this
can happen when at least one of the encoded strings contains unnecessary
escapes that are nevertheless honoured by the decoder.

The unused-inputs set is determined using a filter that compares
`vis`-encoded strings. In the presence of non-canonically-encoded
paths, false-mismatches can lead to falsely reporting that an input is
unused.

The only `vis`-encoded path content that is under the control of callers
is the `mtree` content itself; all other `vis`-encoded strings are
constructed internally to this package, not exposed publicly, and are
all derived using the `lib/private/tar.bzl%_vis_encode` function; all of
these paths are expected to compare exactly. Additionally, it is expected that
many/most users will use this package's helpers (e.g. `mtree_spec`) when
crafting their mtree content; such content is also safe. It is only when
the user crafts their own mtree, or modifies an mtree spec's `content=`
fields' encoding in some way, that a risk of inaccurate reporting
arises. The chances for this are expected to be minor since this seems
like an inconvenient and not-particularly-useful thing for a user to go
out of their way to do.

* Also include other bsdtar toolchain files in keep set

* Add tri-state attribute to control unused-inputs behaviour

This control surface provides for granular control of the feature. The
interface is selected to mirror the common behaviour of `stamp` attributes.

* Add bzl_library level dep

* Update docs

* pre-commit

* Add reminder to change flag default on major-version bump

* Add note about how to make unused input computation exactly correct

* Add a test for unused_inputs listing

* Support alternate contents= form

This is accepted by bsdtar/libarchive. In fact `contents=` is the only of
the pair documented in `mtree(5)`; `content=` is an undocumented
alternate form supported by libarchive.

* Don't try to prune the unprunable

Bazel's interpretation of unused_inputs_list cannot accomodate certain
things in filenames. These are also likely to mess up our own
line-oriented protocol in the shellscript that produces this file.

Co-authored-by: Sahin Yort <thesayyn@gmail.com>

* Rerun docs update

---------

Co-authored-by: Sahin Yort <thesayyn@gmail.com>
2024-10-13 09:58:56 -07:00
..
BUILD.bazel chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
base64.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
bats.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
bazelrc_presets.md feat(presets): java bazelrc options (#947) 2024-10-04 15:34:34 +00:00
copy_directory.md fix: moving the preserve mtime test logic to Go for portability (#908) 2024-09-17 17:25:26 -07:00
copy_file.md perf: improve copy_file.bzl progress_message (#931) 2024-09-10 10:08:34 -07:00
copy_to_bin.md chore: update old reference to aspect-build/bazel-lib (#962) 2024-10-13 09:58:26 -07:00
copy_to_directory.md feat: add an option to not include copy_to_directory output in runfiles (#886) 2024-09-19 01:16:14 +00:00
diff_test.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
directory_path.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
docs.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
expand_make_vars.md refactor: deprecated expand_locations which is just pass-through to ctx.expand_location() (#910) 2024-08-19 15:28:45 -04:00
expand_template.md chore: update git urls (#926) 2024-09-17 17:05:35 -07:00
glob_match.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
host_repo.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
jq.md fix: correctly split quoted args (#909) 2024-08-19 16:36:41 -04:00
lists.md fix(typos): Fix almost all typos with hook (#884) 2024-07-31 10:09:17 -04:00
output_files.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
params_file.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
paths.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
platform_utils.md feat: add executable attribute to write_source_files 2022-12-03 10:46:08 -08:00
repo_utils.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
repositories.md chore(deps): update coreutils to v0.0.27 (#905) 2024-09-02 15:39:32 -07:00
resource_sets.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
run_binary.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
stamping.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
strings.md fix: correctly split quoted args (#909) 2024-08-19 16:36:41 -04:00
tar.md perf: report unused inputs for the tar rule (#951) 2024-10-13 09:58:56 -07:00
testing.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
transitions.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
utils.md chore: update git urls (#926) 2024-09-17 17:05:35 -07:00
write_source_files.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00
yq.md chore(deps): upgrade stardoc (#894) 2024-08-08 12:56:11 -07:00