From: "René Scharfe" <l.s.r@web.de>
To: "Scheffenegger, Richard" <Richard.Scheffenegger@netapp.com>,
Junio C Hamano <gitster@pobox.com>,
"brian m. carlson" <sandals@crustytoothpaste.net>
Cc: "git@vger.kernel.org" <git@vger.kernel.org>
Subject: Re: git --archive
Date: Sat, 24 Sep 2022 20:07:54 +0200 [thread overview]
Message-ID: <b0e84636-d856-eb52-dec0-07727f297b62@web.de> (raw)
In-Reply-To: <712ffe78-c3e3-dacf-c3e3-f339385e9bb4@web.de>
Am 24.09.22 um 15:19 schrieb René Scharfe:
> It could be done by relying on the randomness of the object IDs and
> partitioning by a sub-string. Or perhaps using pseudo-random numbers
> is sufficient:
>
> git ls-tree -r HEAD |
> awk '{print $3}' |
No need for awk here, of course; "git ls-tree -r --object-only HEAD"
does the same. Just saying.
> Here's an idea after all: Using "git ls-tree" without "-r" and handling
> recursing in the prefetch script would allow traversing trees in a
> different order and even in parallel. Not sure how to limit parallelism
> to a sane degree.
How about something like this? xargs -P provides a controlled degree of
parallelism. Sorting by object ID (i.e. hash value) should provide a
fairly random order. Does this thing work for you?
treeish=HEAD
parallelism=8
dir=$(mktemp -d)
echo "$treeish" >"$dir/trees"
# Traverse all sub-trees in randomized order and collect all blob IDs.
while test -s "$dir/trees"
do
sort <"$dir/trees" >"$dir/trees.current"
rm "$dir/trees"
xargs -P "$parallelism" -L 1 git ls-tree <"$dir/trees.current" |
awk -v dir="$dir" -v pieces="$parallelism" '
$2 == "tree" {print $3 > (dir "/trees")}
$2 == "blob" {print $3 >> (dir "/blobs" int(rand() * pieces))}
'
done
# Prefetch all blobs in randomized order.
replstr="%"
command="sort $replstr | git cat-file --batch >/dev/null"
ls "$dir/blobs"* | xargs -P "$parallelism" -I "$replstr" -L 1 sh -c "$command"
rm "$dir/trees.current" "$dir/blobs"*
rmdir "$dir"
next prev parent reply other threads:[~2022-09-24 18:08 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-22 8:57 git --archive Scheffenegger, Richard
2022-09-22 20:13 ` Junio C Hamano
2022-09-22 20:35 ` Scheffenegger, Richard
2022-09-23 0:49 ` brian m. carlson
2022-09-23 16:30 ` Junio C Hamano
2022-09-23 16:51 ` Scheffenegger, Richard
2022-09-24 8:58 ` René Scharfe
2022-09-24 11:34 ` Scheffenegger, Richard
2022-09-24 13:19 ` René Scharfe
2022-09-24 18:07 ` René Scharfe [this message]
2022-09-25 8:17 ` René Scharfe
2022-09-24 19:44 ` Scheffenegger, Richard
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=b0e84636-d856-eb52-dec0-07727f297b62@web.de \
--to=l.s.r@web.de \
--cc=Richard.Scheffenegger@netapp.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=sandals@crustytoothpaste.net \
/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).