Skip to content

Commit 0e66529

Browse files
committed
backfill: add --sparse option
One way to significantly reduce the cost of a Git clone and later fetches is to use a blobless partial clone and combine that with a sparse-checkout that reduces the paths that need to be populated in the working directory. Not only does this reduce the cost of clones and fetches, the sparse-checkout reduces the number of objects needed to download from a promisor remote. However, history investigations can be expensie as computing blob diffs will trigger promisor remote requests for one object at a time. This can be avoided by downloading the blobs needed for the given sparse-checkout using 'git backfill' and its new '--sparse' mode, at a time that the user is willing to pay that extra cost. Note that this is distinctly different from the '--filter=sparse:<oid>' option, as this assumes that the partial clone has all reachable trees and we are using client-side logic to avoid downloading blobs outside of the sparse-checkout cone. This avoids the server-side cost of walking trees while also achieving a similar goal. It also downloads in batches based on similar path names, presenting a resumable download if things are interrupted. This augments the path-walk API to have a possibly-NULL 'pl' member that may point to a 'struct pattern_list'. This could be more general than the sparse-checkout definition at HEAD, but 'git backfill --sparse' is currently the only consumer. Be sure to test this in both cone mode and not cone mode. Cone mode has the benefit that the path-walk can skip certain paths once they would expand beyond the sparse-checkout. Signed-off-by: Derrick Stolee <[email protected]>
1 parent 8c0ced1 commit 0e66529

File tree

10 files changed

+168
-10
lines changed

10 files changed

+168
-10
lines changed

Documentation/git-backfill.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ git-backfill - Download missing objects in a partial clone
99
SYNOPSIS
1010
--------
1111
[verse]
12-
'git backfill' [--batch-size=<n>]
12+
'git backfill' [--batch-size=<n>] [--[no-]sparse]
1313

1414
DESCRIPTION
1515
-----------
@@ -46,6 +46,10 @@ OPTIONS
4646
from the server. This size may be exceeded by the last set of
4747
blobs seen at a given path. Default batch size is 16,000.
4848

49+
--[no-]sparse::
50+
Only download objects if they appear at a path that matches the
51+
current sparse-checkout.
52+
4953
SEE ALSO
5054
--------
5155
linkgit:git-clone[1].

Documentation/technical/api-path-walk.txt

+8
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@ better off using the revision walk API instead.
5656
the revision walk so that the walk emits commits marked with the
5757
`UNINTERESTING` flag.
5858

59+
`pl`::
60+
This pattern list pointer allows focusing the path-walk search to
61+
a set of patterns, only emitting paths that match the given
62+
patterns. See linkgit:gitignore[5] or
63+
linkgit:git-sparse-checkout[1] for details about pattern lists.
64+
When the pattern list uses cone-mode patterns, then the path-walk
65+
API can prune the set of paths it walks to improve performance.
66+
5967
Examples
6068
--------
6169

builtin/backfill.c

+12-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "parse-options.h"
55
#include "repository.h"
66
#include "commit.h"
7+
#include "dir.h"
78
#include "hex.h"
89
#include "tree.h"
910
#include "tree-walk.h"
@@ -21,14 +22,15 @@
2122
#include "path-walk.h"
2223

2324
static const char * const builtin_backfill_usage[] = {
24-
N_("git backfill [--batch-size=<n>]"),
25+
N_("git backfill [--batch-size=<n>] [--[no-]sparse]"),
2526
NULL
2627
};
2728

2829
struct backfill_context {
2930
struct repository *repo;
3031
struct oid_array current_batch;
3132
size_t batch_size;
33+
int sparse;
3234
};
3335

3436
static void clear_backfill_context(struct backfill_context *ctx)
@@ -84,6 +86,12 @@ static int do_backfill(struct backfill_context *ctx)
8486
struct path_walk_info info = PATH_WALK_INFO_INIT;
8587
int ret;
8688

89+
if (ctx->sparse) {
90+
CALLOC_ARRAY(info.pl, 1);
91+
if (get_sparse_checkout_patterns(info.pl))
92+
return error(_("problem loading sparse-checkout"));
93+
}
94+
8795
repo_init_revisions(ctx->repo, &revs, "");
8896
handle_revision_arg("HEAD", &revs, 0, 0);
8997

@@ -110,10 +118,13 @@ int cmd_backfill(int argc, const char **argv, const char *prefix, struct reposit
110118
.repo = repo,
111119
.current_batch = OID_ARRAY_INIT,
112120
.batch_size = 16000,
121+
.sparse = 0,
113122
};
114123
struct option options[] = {
115124
OPT_INTEGER(0, "batch-size", &ctx.batch_size,
116125
N_("Minimun number of objects to request at a time")),
126+
OPT_BOOL(0, "sparse", &ctx.sparse,
127+
N_("Restrict the missing objects to the current sparse-checkout")),
117128
OPT_END(),
118129
};
119130

dir.c

+3-7
Original file line numberDiff line numberDiff line change
@@ -1088,10 +1088,6 @@ static void invalidate_directory(struct untracked_cache *uc,
10881088
dir->dirs[i]->recurse = 0;
10891089
}
10901090

1091-
static int add_patterns_from_buffer(char *buf, size_t size,
1092-
const char *base, int baselen,
1093-
struct pattern_list *pl);
1094-
10951091
/* Flags for add_patterns() */
10961092
#define PATTERN_NOFOLLOW (1<<0)
10971093

@@ -1181,9 +1177,9 @@ static int add_patterns(const char *fname, const char *base, int baselen,
11811177
return 0;
11821178
}
11831179

1184-
static int add_patterns_from_buffer(char *buf, size_t size,
1185-
const char *base, int baselen,
1186-
struct pattern_list *pl)
1180+
int add_patterns_from_buffer(char *buf, size_t size,
1181+
const char *base, int baselen,
1182+
struct pattern_list *pl)
11871183
{
11881184
char *orig = buf;
11891185
int i, lineno = 1;

dir.h

+3
Original file line numberDiff line numberDiff line change
@@ -467,6 +467,9 @@ void add_patterns_from_file(struct dir_struct *, const char *fname);
467467
int add_patterns_from_blob_to_list(struct object_id *oid,
468468
const char *base, int baselen,
469469
struct pattern_list *pl);
470+
int add_patterns_from_buffer(char *buf, size_t size,
471+
const char *base, int baselen,
472+
struct pattern_list *pl);
470473
void parse_path_pattern(const char **string, int *patternlen, unsigned *flags, int *nowildcardlen);
471474
void add_pattern(const char *string, const char *base,
472475
int baselen, struct pattern_list *pl, int srcpos);

path-walk.c

+18
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "list-objects.h"
1212
#include "object.h"
1313
#include "oid-array.h"
14+
#include "repository.h"
1415
#include "revision.h"
1516
#include "string-list.h"
1617
#include "strmap.h"
@@ -131,6 +132,23 @@ static int add_children(struct path_walk_context *ctx,
131132
if (type == OBJ_TREE)
132133
strbuf_addch(&path, '/');
133134

135+
if (ctx->info->pl) {
136+
int dtype;
137+
enum pattern_match_result match;
138+
match = path_matches_pattern_list(path.buf, path.len,
139+
path.buf + base_len, &dtype,
140+
ctx->info->pl,
141+
ctx->repo->index);
142+
143+
if (ctx->info->pl->use_cone_patterns &&
144+
match == NOT_MATCHED)
145+
continue;
146+
else if (!ctx->info->pl->use_cone_patterns &&
147+
type == OBJ_BLOB &&
148+
match != MATCHED)
149+
continue;
150+
}
151+
134152
if (!(list = strmap_get(&ctx->paths_to_lists, path.buf))) {
135153
CALLOC_ARRAY(list, 1);
136154
list->type = type;

path-walk.h

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
struct rev_info;
88
struct oid_array;
9+
struct pattern_list;
910

1011
/**
1112
* The type of a function pointer for the method that is called on a list of
@@ -47,6 +48,16 @@ struct path_walk_info {
4748
* walk the children of such trees.
4849
*/
4950
int prune_all_uninteresting;
51+
52+
/**
53+
* Specify a sparse-checkout definition to match our paths to. Do not
54+
* walk outside of this sparse definition. If the patterns are in
55+
* cone mode, then the search may prune directories that are outside
56+
* of the cone. If not in cone mode, then all tree paths will be
57+
* explored but the path_fn will only be called when the path matches
58+
* the sparse-checkout patterns.
59+
*/
60+
struct pattern_list *pl;
5061
};
5162

5263
#define PATH_WALK_INFO_INIT { \

t/helper/test-path-walk.c

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#define USE_THE_REPOSITORY_VARIABLE
22

33
#include "test-tool.h"
4+
#include "dir.h"
45
#include "environment.h"
56
#include "hex.h"
67
#include "object-name.h"
@@ -9,6 +10,7 @@
910
#include "revision.h"
1011
#include "setup.h"
1112
#include "parse-options.h"
13+
#include "strbuf.h"
1214
#include "path-walk.h"
1315
#include "oid-array.h"
1416

@@ -77,7 +79,7 @@ static int emit_block(const char *path, struct oid_array *oids,
7779

7880
int cmd__path_walk(int argc, const char **argv)
7981
{
80-
int res;
82+
int res, stdin_pl = 0;
8183
struct rev_info revs = REV_INFO_INIT;
8284
struct path_walk_info info = PATH_WALK_INFO_INIT;
8385
struct path_walk_test_data data = { 0 };
@@ -92,6 +94,8 @@ int cmd__path_walk(int argc, const char **argv)
9294
N_("toggle inclusion of tree objects")),
9395
OPT_BOOL(0, "prune", &info.prune_all_uninteresting,
9496
N_("toggle pruning of uninteresting paths")),
97+
OPT_BOOL(0, "stdin-pl", &stdin_pl,
98+
N_("read a pattern list over stdin")),
9599
OPT_END(),
96100
};
97101

@@ -111,6 +115,17 @@ int cmd__path_walk(int argc, const char **argv)
111115
info.path_fn = emit_block;
112116
info.path_fn_data = &data;
113117

118+
if (stdin_pl) {
119+
struct strbuf in = STRBUF_INIT;
120+
CALLOC_ARRAY(info.pl, 1);
121+
122+
info.pl->use_cone_patterns = 1;
123+
124+
strbuf_fread(&in, 2048, stdin);
125+
add_patterns_from_buffer(in.buf, in.len, "", 0, info.pl);
126+
strbuf_release(&in);
127+
}
128+
114129
res = walk_objects_by_path(&info);
115130

116131
printf("commits:%" PRIuMAX "\n"
@@ -119,6 +134,11 @@ int cmd__path_walk(int argc, const char **argv)
119134
"tags:%" PRIuMAX "\n",
120135
data.commit_nr, data.tree_nr, data.blob_nr, data.tag_nr);
121136

137+
if (info.pl) {
138+
clear_pattern_list(info.pl);
139+
free(info.pl);
140+
}
141+
122142
release_revisions(&revs);
123143
return res;
124144
}

t/t5620-backfill.sh

+55
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,61 @@ test_expect_success 'do partial clone 2, backfill batch size' '
7777
test_line_count = 0 revs2
7878
'
7979

80+
test_expect_success 'backfill --sparse' '
81+
git clone --sparse --filter=blob:none \
82+
--single-branch --branch=main \
83+
"file://$(pwd)/srv.bare" backfill3 &&
84+
85+
# Initial checkout includes four files at root.
86+
git -C backfill3 rev-list --quiet --objects --missing=print HEAD >missing &&
87+
test_line_count = 44 missing &&
88+
89+
# Initial sparse-checkout is just the files at root, so we get the
90+
# older versions of the four files at tip.
91+
GIT_TRACE2_EVENT="$(pwd)/sparse-trace1" git \
92+
-C backfill3 backfill --sparse &&
93+
test_trace2_data promisor fetch_count 4 <sparse-trace1 &&
94+
test_trace2_data path-walk paths 5 <sparse-trace1 &&
95+
git -C backfill3 rev-list --quiet --objects --missing=print HEAD >missing &&
96+
test_line_count = 40 missing &&
97+
98+
# Expand the sparse-checkout to include 'd' recursively. This
99+
# engages the algorithm to skip the trees for 'a'. Note that
100+
# the "sparse-checkout set" command downloads the objects at tip
101+
# to satisfy the current checkout.
102+
git -C backfill3 sparse-checkout set d &&
103+
GIT_TRACE2_EVENT="$(pwd)/sparse-trace2" git \
104+
-C backfill3 backfill --sparse &&
105+
test_trace2_data promisor fetch_count 8 <sparse-trace2 &&
106+
test_trace2_data path-walk paths 15 <sparse-trace2 &&
107+
git -C backfill3 rev-list --quiet --objects --missing=print HEAD >missing &&
108+
test_line_count = 24 missing
109+
'
110+
111+
test_expect_success 'backfill --sparse without cone mode' '
112+
git clone --no-checkout --filter=blob:none \
113+
--single-branch --branch=main \
114+
"file://$(pwd)/srv.bare" backfill4 &&
115+
116+
# No blobs yet
117+
git -C backfill4 rev-list --quiet --objects --missing=print HEAD >missing &&
118+
test_line_count = 48 missing &&
119+
120+
# Define sparse-checkout by filename regardless of parent directory.
121+
# This downloads 6 blobs to satisfy the checkout.
122+
git -C backfill4 sparse-checkout set --no-cone "**/file.1.txt" &&
123+
git -C backfill4 checkout main &&
124+
125+
GIT_TRACE2_EVENT="$(pwd)/no-cone-trace1" git \
126+
-C backfill4 backfill --sparse &&
127+
test_trace2_data promisor fetch_count 6 <no-cone-trace1 &&
128+
129+
# This walk needed to visit all directories to search for these paths.
130+
test_trace2_data path-walk paths 12 <no-cone-trace1 &&
131+
git -C backfill4 rev-list --quiet --objects --missing=print HEAD >missing &&
132+
test_line_count = 36 missing
133+
'
134+
80135
. "$TEST_DIRECTORY"/lib-httpd.sh
81136
start_httpd
82137

t/t6601-path-walk.sh

+32
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,38 @@ test_expect_success 'branches and indexed objects mix well' '
176176
test_cmp_sorted expect out
177177
'
178178

179+
test_expect_success 'base & topic, sparse' '
180+
cat >patterns <<-EOF &&
181+
/*
182+
!/*/
183+
/left/
184+
EOF
185+
186+
test-tool path-walk --stdin-pl -- base topic <patterns >out &&
187+
188+
cat >expect <<-EOF &&
189+
COMMIT::$(git rev-parse topic)
190+
COMMIT::$(git rev-parse base)
191+
COMMIT::$(git rev-parse base~1)
192+
COMMIT::$(git rev-parse base~2)
193+
commits:4
194+
TREE::$(git rev-parse topic^{tree})
195+
TREE::$(git rev-parse base^{tree})
196+
TREE::$(git rev-parse base~1^{tree})
197+
TREE::$(git rev-parse base~2^{tree})
198+
TREE:left/:$(git rev-parse base:left)
199+
TREE:left/:$(git rev-parse base~2:left)
200+
trees:6
201+
BLOB:a:$(git rev-parse base~2:a)
202+
BLOB:left/b:$(git rev-parse base~2:left/b)
203+
BLOB:left/b:$(git rev-parse base:left/b)
204+
blobs:3
205+
tags:0
206+
EOF
207+
208+
test_cmp_sorted expect out
209+
'
210+
179211
test_expect_success 'topic only' '
180212
test-tool path-walk -- topic >out &&
181213

0 commit comments

Comments
 (0)