From: Karthik Nayak <karthik.188@gmail.com>
To: git@vger.kernel.org
Cc: Karthik Nayak <karthik.188@gmail.com>,
ps@pks.im, jltobler@gmail.com, gitster@pobox.com
Subject: [PATCH v3 0/5] maintenance: add an 'is-needed' subcommand
Date: Thu, 06 Nov 2025 09:22:29 +0100 [thread overview]
Message-ID: <20251106-562-add-sub-command-to-check-if-maintenance-is-needed-v3-0-d611a2a95cf5@gmail.com> (raw)
In-Reply-To: <20251031-562-add-sub-command-to-check-if-maintenance-is-needed-v1-0-a03d53e28d0e@gmail.com>
Hello,
I recently raised a patch series [1] to add 'git refs optimize --required'
which checks if the reference backend can be optimized, without actually
performing the optimization.
Back then, we had decided [2] that it would be a better to broaden the
approach and add a 'is-needed' subcommand to 'git-maintenance(1)'. This
would allow users to check if maintenance was required for the
repository and users could also provide a task via the '--task' to check
if maintenance was needed for a particular task.
Ideally the subcommand will be used with the '--auto' flag which can
check the same heuristics as that used with 'git maintenance run
--auto'. Future patches can also add support for the '--schedule' flag
which can be used to check required schedule it met. However that flag
isn't added as part of this series.
This series implements that.
Commits 1-3 add the required functionality in the refs subsystem to
expose an 'optimize_required' field which can be used to check if
backends need to be optimized.
Commit 4 utilizes this within the 'git-maintenance(1)' code.
Commit 5 adds the 'is-needed' subcommand to 'git-maintenance(1)'.
This is based on top of master a99f379adf (The 27th batch, 2025-10-30)
and is dependent on the following series:
- kn/refs-optim-cleanup
- ps/ref-peeled-tags
Merges cleanly with `next`. I think those two topics are close to being
merged to `next` so hopefully this dependency tree doesn't get too
complicated. I'll rebase as needed to resolve conflicts.
[1]: https://lore.kernel.org/git/20251010-562-add-option-to-check-if-reference-backend-needs-repacking-v1-0-c7962be584fa@gmail.com/
[2]: https://lore.kernel.org/git/CAOLa=ZRdxm787nE4FSr2VUHDB+hW06Ggc6yUcKmeTKAb6B7YOA@mail.gmail.com/
---
Changes in v3:
- In patch 2/5 extract out code for deciding if compaction is required
into a static function. This removes duplication of logic for deciding
if compaction is needed.
- Link to v2: https://patch.msgid.link/20251104-562-add-sub-command-to-check-if-maintenance-is-needed-v2-0-303462a9e4ed@gmail.com
Changes in v2:
- Added more documentation for `reftable_stack_compaction_required()`.
- Fixed some typos and grammar mistakes in commit messages.
- Clarify which tasks will be run when '--task' is not used.
- Move the call to 'usage_with_options()' to be with 'parse_options()'.
- Link to v1: https://patch.msgid.link/20251031-562-add-sub-command-to-check-if-maintenance-is-needed-v1-0-a03d53e28d0e@gmail.com
---
Documentation/git-maintenance.adoc | 13 ++++++
builtin/gc.c | 85 +++++++++++++++++++++++++++++++++-----
object.h | 1 -
refs.c | 7 ++++
refs.h | 7 ++++
refs/debug.c | 13 ++++++
refs/files-backend.c | 11 +++++
refs/packed-backend.c | 13 ++++++
refs/refs-internal.h | 6 +++
refs/reftable-backend.c | 25 +++++++++++
reftable/reftable-stack.h | 11 +++++
reftable/stack.c | 61 ++++++++++++++++++++-------
t/t7900-maintenance.sh | 54 +++++++++++++++++-------
t/unit-tests/u-reftable-stack.c | 12 +++++-
14 files changed, 276 insertions(+), 43 deletions(-)
Karthik Nayak (5):
reftable/stack: return stack segments directly
reftable/stack: add function to check if optimization is required
refs: add a `optimize_required` field to `struct ref_storage_be`
maintenance: add checking logic in `pack_refs_condition()`
maintenance: add 'is-needed' subcommand
Range-diff versus v2:
1: 16b447b66c = 1: fe8977aefc reftable/stack: return stack segments directly
2: b463d5c69d ! 2: e73f672566 reftable/stack: add function to check if optimization is required
@@ Commit message
is no way for the user to check if optimization is required without
actually performing it.
- Add and expose `reftable_stack_compaction_required()` which will allow
- users to check if the reftable backend can be optimized.
+ Extract out the heuristics logic from 'reftable_stack_auto_compact()'
+ into an internal function 'update_segment_if_compaction_required()'.
+ Then use this to add and expose `reftable_stack_compaction_required()`
+ which will allow users to check if the reftable backend can be
+ optimized.
Signed-off-by: Karthik Nayak <karthik.188@gmail.com>
@@ reftable/stack.c: static int stack_segments_for_compaction(struct reftable_stack
return 0;
}
-+int reftable_stack_compaction_required(struct reftable_stack *st,
-+ bool use_heuristics,
-+ bool *required)
-+{
-+ struct segment seg;
-+ int err = 0;
-+
+-int reftable_stack_auto_compact(struct reftable_stack *st)
++static int update_segment_if_compaction_required(struct reftable_stack *st,
++ struct segment *seg,
++ bool use_heuristics,
++ bool *required)
+ {
+- struct segment seg;
+ int err;
+
+- if (st->merged->tables_len < 2)
+ if (st->merged->tables_len < 2) {
+ *required = false;
+ return 0;
@@ reftable/stack.c: static int stack_segments_for_compaction(struct reftable_stack
+
+ if (!use_heuristics) {
+ *required = true;
-+ return 0;
+ return 0;
+ }
+
-+ err = stack_segments_for_compaction(st, &seg);
++ err = stack_segments_for_compaction(st, seg);
+ if (err)
+ return err;
+
-+ *required = segment_size(&seg) > 0;
++ *required = segment_size(seg) > 0;
+ return 0;
+}
+
- int reftable_stack_auto_compact(struct reftable_stack *st)
- {
- struct segment seg;
++int reftable_stack_compaction_required(struct reftable_stack *st,
++ bool use_heuristics,
++ bool *required)
++{
++ struct segment seg;
++ return update_segment_if_compaction_required(st, &seg, use_heuristics,
++ required);
++}
++
++int reftable_stack_auto_compact(struct reftable_stack *st)
++{
++ struct segment seg;
++ bool required;
++ int err;
+
+- err = stack_segments_for_compaction(st, &seg);
++ err = update_segment_if_compaction_required(st, &seg, true, &required);
+ if (err)
+ return err;
+
+- if (segment_size(&seg) > 0)
++ if (required)
+ return stack_compact_range(st, seg.start, seg.end - 1,
+ NULL, STACK_COMPACT_RANGE_BEST_EFFORT);
+
## t/unit-tests/u-reftable-stack.c ##
@@ t/unit-tests/u-reftable-stack.c: void test_reftable_stack__add_performs_auto_compaction(void)
3: b9f44f61f2 = 3: 7d2428b2f9 refs: add a `optimize_required` field to `struct ref_storage_be`
4: f94ddfdba3 = 4: 3c5f969d62 maintenance: add checking logic in `pack_refs_condition()`
5: bc56849266 = 5: bc2d3c26e2 maintenance: add 'is-needed' subcommand
base-commit: edd2018f5db39d68d55a7a4af42375b1a06b9406
change-id: 20251021-562-add-sub-command-to-check-if-maintenance-is-needed-01cae01b4606
Thanks
- Karthik
next prev parent reply other threads:[~2025-11-06 8:33 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-31 14:22 [PATCH 0/5] maintenance: add an 'is-needed' subcommand Karthik Nayak
2025-10-31 14:22 ` [PATCH 1/5] reftable/stack: return stack segments directly Karthik Nayak
2025-10-31 16:22 ` Justin Tobler
2025-11-03 15:05 ` Karthik Nayak
2025-11-03 18:03 ` Justin Tobler
2025-10-31 14:22 ` [PATCH 2/5] reftable/stack: add function to check if optimization is required Karthik Nayak
2025-10-31 17:02 ` Justin Tobler
2025-10-31 18:17 ` Junio C Hamano
2025-11-03 16:20 ` Karthik Nayak
2025-11-03 15:51 ` Karthik Nayak
2025-11-03 17:59 ` Justin Tobler
2025-11-03 14:00 ` Patrick Steinhardt
2025-11-03 16:35 ` Karthik Nayak
2025-10-31 14:22 ` [PATCH 3/5] refs: add a `optimize_required` field to `struct ref_storage_be` Karthik Nayak
2025-10-31 14:22 ` [PATCH 4/5] maintenance: add checking logic in `pack_refs_condition()` Karthik Nayak
2025-11-03 14:00 ` Patrick Steinhardt
2025-11-03 17:04 ` Karthik Nayak
2025-10-31 14:22 ` [PATCH 5/5] maintenance: add 'is-needed' subcommand Karthik Nayak
2025-11-03 14:00 ` Patrick Steinhardt
2025-11-03 17:18 ` Karthik Nayak
2025-11-04 5:54 ` Patrick Steinhardt
2025-11-04 8:28 ` Karthik Nayak
2025-11-04 8:43 ` [PATCH v2 0/5] maintenance: add an " Karthik Nayak
2025-11-04 8:43 ` [PATCH v2 1/5] reftable/stack: return stack segments directly Karthik Nayak
2025-11-04 8:43 ` [PATCH v2 2/5] reftable/stack: add function to check if optimization is required Karthik Nayak
2025-11-04 20:26 ` Junio C Hamano
2025-11-05 14:11 ` Karthik Nayak
2025-11-05 18:10 ` Junio C Hamano
2025-11-06 8:18 ` Karthik Nayak
2025-11-04 8:43 ` [PATCH v2 3/5] refs: add a `optimize_required` field to `struct ref_storage_be` Karthik Nayak
2025-11-04 8:43 ` [PATCH v2 4/5] maintenance: add checking logic in `pack_refs_condition()` Karthik Nayak
2025-11-04 8:44 ` [PATCH v2 5/5] maintenance: add 'is-needed' subcommand Karthik Nayak
2025-11-04 15:43 ` [PATCH v2 0/5] maintenance: add an " Junio C Hamano
2025-11-05 14:00 ` Karthik Nayak
2025-11-06 8:22 ` Karthik Nayak [this message]
2025-11-06 8:22 ` [PATCH v3 1/5] reftable/stack: return stack segments directly Karthik Nayak
2025-11-06 8:22 ` [PATCH v3 2/5] reftable/stack: add function to check if optimization is required Karthik Nayak
2025-11-06 18:18 ` Junio C Hamano
2025-11-07 6:06 ` Patrick Steinhardt
2025-11-06 8:22 ` [PATCH v3 3/5] refs: add a `optimize_required` field to `struct ref_storage_be` Karthik Nayak
2025-11-06 8:22 ` [PATCH v3 4/5] maintenance: add checking logic in `pack_refs_condition()` Karthik Nayak
2025-11-06 11:58 ` Patrick Steinhardt
2025-11-06 13:04 ` Karthik Nayak
2025-11-06 15:24 ` Junio C Hamano
2025-11-07 15:58 ` Karthik Nayak
2025-11-07 16:41 ` Junio C Hamano
2025-11-07 15:58 ` Karthik Nayak
2025-11-06 8:22 ` [PATCH v3 5/5] maintenance: add 'is-needed' subcommand Karthik Nayak
2025-11-06 12:02 ` Patrick Steinhardt
2025-11-06 13:07 ` Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 0/5] maintenance: add an " Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 1/5] reftable/stack: return stack segments directly Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 2/5] reftable/stack: add function to check if optimization is required Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 3/5] refs: add a `optimize_required` field to `struct ref_storage_be` Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 4/5] maintenance: add checking logic in `pack_refs_condition()` Karthik Nayak
2025-11-08 21:51 ` [PATCH v4 5/5] maintenance: add 'is-needed' subcommand Karthik Nayak
2025-11-10 6:46 ` [PATCH v4 0/5] maintenance: add an " Patrick Steinhardt
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
List information: http://vger.kernel.org/majordomo-info.html
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20251106-562-add-sub-command-to-check-if-maintenance-is-needed-v3-0-d611a2a95cf5@gmail.com \
--to=karthik.188@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jltobler@gmail.com \
--cc=ps@pks.im \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://80x24.org/mirrors/git.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).