Phillip Wood <phillip.wood123@xxxxxxxxx> writes: > Hi Stolee > > On 03/04/2020 21:48, Derrick Stolee via GitGitGadget wrote: >> From: Derrick Stolee <dstolee@xxxxxxxxxxxxx> >> >> The 'git run-job' command will be used to execute a short-lived set >> of maintenance activities by a background job manager. The intention >> is to perform small batches of work that reduce the foreground time >> taken by repository maintenance such as 'git gc --auto'. >> >> This change does the absolute minimum to create the builtin and show >> the usage output. >> >> Provide an explicit warning that this command is experimental. The >> set of jobs may change, and each job could alter its behavior in >> future versions. >> >> RFC QUESTION: This builtin is based on the background maintenance in >> Scalar. Specifically, this builtin is based on the "scalar run <job>" >> command [1] [2]. My default thought was to make this a "git run <job>" >> command to maximize similarity. However, it seems like "git run" is >> too generic. Or, am I being overly verbose for no reason? > > Having read through this series I wondered if we wanted a single git > command such as 'git maintenance' (suggestions of better names > welcome) and then 'git run-job' could become 'git maintenance run', > 'git job-runner' would become another subcommand (run-jobs or > schedule-jobs?) and the 'git please-run-maintenance-on-this-repo' you > mentioned in you email to Junio could become 'git maintenance init' > (or maybe setup) I had a very similar impression. In addition to what you already said, a few more were: - Why the existing "git repack" isn't such "maintenance" command? IOW why do we even need [01/15]? After all, "repack" may have started its life as a tool to reorganize the PACKFILES, but it is no longer limited to 'git/objects/pack/*.pack' files with its knowledge about the loose object files and the "--prune" option. Consolidating pieces of information spread across multiple .idx files, reachability bitmaps and commit graph files, into a newer and more performant forms can just be part of "packing the pieces of information in a repository for optimum performance", which is a better way to understand why "repack" has a word 'pack' in its name. - Many of the "maintenance" operations this series proposes do make sense, just like other "maintenance" operations we already have in "repack", "prune", "prune-packed" etc., which are welcome additions. - Like the individual steps that appear in e.g. "repack", however, some of the individual steps in this series can be triggered by calling underlying tools directly, allowing scripted maintenance commands that suit individual needs better than the canned invocation of "run-job", but I didn't get the impression that the series strives to make sure that all knobs of these individual steps are available to scripters who want to deviate from what "run-job" prescribes. If it is not doing so, we probably should. - Again, I do not think we want a reimplementation of cron, at or inetd that is not specific to "git" at all. Thanks.