From: Derrick Stolee <stolee@gmail.com> To: "Jeff King" <peff@peff.net>, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com> Cc: Git ML <git@vger.kernel.org>, Derrick Stolee <dstolee@microsoft.com>, Taylor Blau <me@ttaylorr.com>, Jeff Hostetler <jeffhost@microsoft.com> Subject: Re: t4216-log-bloom.sh fails with -v (but not --verbose-log) Date: Mon, 29 Nov 2021 08:49:44 -0500 [thread overview] Message-ID: <d41a9117-ee7c-d708-39f8-03e05a863dab@gmail.com> (raw) In-Reply-To: <YaBdxL3QH1/GrWY1@coredump.intra.peff.net> On 11/25/2021 11:08 PM, Jeff King wrote: > On Thu, Nov 25, 2021 at 01:14:45PM +0100, Ævar Arnfjörð Bjarmason wrote: > >> I haven't looked much into $subject, but there's an interesting >> regression in 2ca245f8be5 (csum-file.h: increase hashfile buffer size, >> 2021-05-18) where it fails with -v, but not --verbose-log. Discovered >> while running it manually. >> >> This is a regression in v2.33.0 (not v2.34.0!), so nothing urgent, and >> this is pretty obscure anyway. >> >> For the original change see: >> https://lore.kernel.org/git/64ffddd791160895b8e6730ebcddfac8458653f2.1621362768.git.gitgitgadget@gmail.com/ > > Interesting. This patch makes it go away (the "5" is cargo-culted from > earlier in the script): ... > # Commit has 7 file and 4 directory adds > GIT_TEST_BLOOM_SETTINGS_MAX_CHANGED_PATHS=10 \ > + GIT_TRACE2_EVENT_NESTING=5 \ > GIT_TRACE2_EVENT="$(pwd)/trace" \ > git commit-graph write --reachable --changed-paths && > test_max_changed_paths 10 trace && ... > The commit in question (2ca245f8be) puts the writing into a new trace2 > region ("chunkfile"), so it makes sense that the nesting increases by > one. But what's interesting is that the nesting is different depending > on whether stderr is a terminal. I guess because the progress code > starts its own region. > > The default nesting max for trace2 is 2. That seems kind of low given > this example, but I don't know enough about the tradeoffs to say what > bad things might happen if it's raised. But the above patch really seems > like a hack, and that this quiet omission would absolutely confuse real > users who are trying to use trace2 for debugging. Thanks, both, for identifying the problem and the root cause. I have sent a patch series [1] that sets a deeper GIT_TRACE2_EVENT_NESTING across the test suite to avoid this kind of issue in the future (along with removing the existing uses scattered across the tests). Thanks, -Stolee [1] https://lore.kernel.org/git/pull.1085.git.1638193666.gitgitgadget@gmail.com/
next prev parent reply other threads:[~2021-11-29 15:42 UTC|newest] Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-03-26 19:12 [PATCH 0/3] Convert index writes to use hashfile API Derrick Stolee via GitGitGadget 2021-03-26 19:12 ` [PATCH 1/3] csum-file: add nested_hashfile() Derrick Stolee via GitGitGadget 2021-03-26 19:12 ` [PATCH 2/3] read-cache: use hashfile instead of git_hash_ctx Derrick Stolee via GitGitGadget 2021-03-29 15:04 ` Derrick Stolee 2021-03-29 19:10 ` Derrick Stolee 2021-03-26 19:12 ` [PATCH 3/3] read-cache: delete unused hashing methods Derrick Stolee via GitGitGadget 2021-03-26 20:16 ` [PATCH 0/3] Convert index writes to use hashfile API Derrick Stolee 2021-05-17 12:24 ` [PATCH v2 0/4] " Derrick Stolee via GitGitGadget 2021-05-17 12:24 ` [PATCH v2 1/4] hashfile: use write_in_full() Derrick Stolee via GitGitGadget 2021-05-17 12:24 ` [PATCH v2 2/4] csum-file.h: increase hashfile buffer size Derrick Stolee via GitGitGadget 2021-05-17 21:54 ` Junio C Hamano 2021-05-18 7:33 ` Jeff King 2021-05-18 14:44 ` Derrick Stolee 2021-05-18 7:31 ` Jeff King 2021-05-18 7:42 ` Jeff King 2021-05-17 12:24 ` [PATCH v2 3/4] read-cache: use hashfile instead of git_hash_ctx Derrick Stolee via GitGitGadget 2021-05-17 22:13 ` Junio C Hamano 2021-05-18 14:16 ` Derrick Stolee 2021-05-17 12:24 ` [PATCH v2 4/4] read-cache: delete unused hashing methods Derrick Stolee via GitGitGadget 2021-05-18 18:32 ` [PATCH v3 0/4] Convert index writes to use hashfile API Derrick Stolee via GitGitGadget 2021-05-18 18:32 ` [PATCH v3 1/4] hashfile: use write_in_full() Derrick Stolee via GitGitGadget 2021-05-18 18:32 ` [PATCH v3 2/4] csum-file.h: increase hashfile buffer size Derrick Stolee via GitGitGadget 2021-11-25 12:14 ` t4216-log-bloom.sh fails with -v (but not --verbose-log) Ævar Arnfjörð Bjarmason 2021-11-26 4:08 ` Jeff King 2021-11-29 13:49 ` Derrick Stolee [this message] 2021-05-18 18:32 ` [PATCH v3 3/4] read-cache: use hashfile instead of git_hash_ctx Derrick Stolee via GitGitGadget 2021-05-18 18:32 ` [PATCH v3 4/4] read-cache: delete unused hashing methods Derrick Stolee via GitGitGadget
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=d41a9117-ee7c-d708-39f8-03e05a863dab@gmail.com \ --to=stolee@gmail.com \ --cc=avarab@gmail.com \ --cc=dstolee@microsoft.com \ --cc=git@vger.kernel.org \ --cc=jeffhost@microsoft.com \ --cc=me@ttaylorr.com \ --cc=peff@peff.net \ --subject='Re: t4216-log-bloom.sh fails with -v (but not --verbose-log)' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).