fetch-pack: add tracing for negotiation rounds
Currently, negotiation for V0/V1/V2 fetch have trace2 regions covering the entire negotiation process. However, we'd like additional data, such as timing for each round of negotiation or the number of "haves" in each round. Additionally, "independent negotiation" (AKA push negotiation) has no tracing at all. Having this data would allow us to compare the performance of the various negotation implementations, and to debug unexpectedly slow fetch & push sessions. Add per-round trace2 regions for all negotiation implementations (V0+V1, V2, and independent negotiation), as well as an overall region for independent negotiation. Add trace2 data logging for the number of haves and "in vain" objects for each round, and for the total number of rounds once negotiation completes. Finally, add a few checks into various tests to verify that the number of rounds is logged as expected. Signed-off-by: Josh Steadmon <steadmon@google.com> Acked-by: Jeff Hostetler <jeffhost@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
afa70145a2
commit
a29263cf5f
@ -407,6 +407,7 @@ test_expect_success 'in_vain not triggered before first ACK' '
|
||||
'
|
||||
|
||||
test_expect_success 'in_vain resetted upon ACK' '
|
||||
test_when_finished rm -f log trace2 &&
|
||||
rm -rf myserver myclient &&
|
||||
git init myserver &&
|
||||
|
||||
@ -432,7 +433,8 @@ test_expect_success 'in_vain resetted upon ACK' '
|
||||
# first. The 256th commit is common between the client and the server,
|
||||
# and should reset in_vain. This allows negotiation to continue until
|
||||
# the client reports that first_anotherbranch_commit is common.
|
||||
git -C myclient fetch --progress origin main 2>log &&
|
||||
GIT_TRACE2_EVENT="$(pwd)/trace2" git -C myclient fetch --progress origin main 2>log &&
|
||||
grep \"key\":\"total_rounds\",\"value\":\"6\" trace2 &&
|
||||
test_i18ngrep "Total 3 " log
|
||||
'
|
||||
|
||||
|
Reference in New Issue
Block a user