git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ben Peart <peartben@gmail.com>
To: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>,
	"Duy Nguyen" <pclouds@gmail.com>
Cc: git <git@vger.kernel.org>, Ben Peart <benpeart@microsoft.com>,
	Alex Vandiver <alexmv@dropbox.com>,
	Christian Couder <christian.couder@gmail.com>
Subject: Re: Some rough edges of core.fsmonitor
Date: Tue, 30 Jan 2018 17:41:26 -0500	[thread overview]
Message-ID: <145f8cf4-8ade-7d86-31b6-5d92fcfea3ac@gmail.com> (raw)
In-Reply-To: <878tcjw2gd.fsf@evledraar.gmail.com>



On 1/27/2018 2:01 PM, Ævar Arnfjörð Bjarmason wrote:
> 
> On Sat, Jan 27 2018, Duy Nguyen jotted:
> 
>> On Sat, Jan 27, 2018 at 07:39:27PM +0700, Duy Nguyen wrote:
>>> On Sat, Jan 27, 2018 at 6:43 PM, Ævar Arnfjörð Bjarmason
>>> <avarab@gmail.com> wrote:
>>>> a) no fsmonitor
>>>>
>>>>      $ time GIT_TRACE_PERFORMANCE=1 ~/g/git/git-status
>>>>      12:32:44.947651 read-cache.c:1890       performance: 0.053153609 s: read cache .git/index
>>>>      12:32:44.967943 preload-index.c:112     performance: 0.020161093 s: preload index
>>>>      12:32:44.974217 read-cache.c:1446       performance: 0.006230611 s: refresh index
>>>>
>>>> ...
>>>>
>>>> b) with fsmonitor
>>>>
>>>>      $ time GIT_TRACE_PERFORMANCE=1 ~/g/git/git-status
>>>>      12:34:23.833625 read-cache.c:1890       performance: 0.049485685 s: read cache .git/index
>>>>      12:34:23.838622 preload-index.c:112     performance: 0.001221197 s: preload index
>>>>      12:34:23.858723 fsmonitor.c:170         performance: 0.020059647 s: fsmonitor process '.git/hooks/fsmonitor-watchman'
>>>>      12:34:23.871532 read-cache.c:1446       performance: 0.032870818 s: refresh index
>>>
>>> Hmm.. why does refresh take longer with fsmonitor/watchman? With the
>>> help from watchman, we know what files are modified. We don't need
>>> manual stat()'ing and this line should be lower than the "no
>>> fsmonitor" case, which is 0.006230611s.
>>
>> Ahh.. my patch probably does not see that fsmonitor could be activated
>> lazily inside refresh_index() call. The patch below should fix it.
> 
> Will have to get those numbers to you later, or alternatively clone
> https://github.com/avar/2015-04-03-1M-git (or some other test repo) and
> test it yourself, sorry. Don't have time to follow-up much this weekend.
> 
>> But between your normal refresh time (0.020 preload + 0.006 actual
>> refresh) and fsmonitor taking 0.020 just to talk to watchman, this
>> repo seems "too small" for fsmonitor/watchman to shine.
> 
> Surely that's an implementation limitation and not something inherent,
> given that watchman itself returns in 5ms?
> 
> I.e. status could work like this, no?:
> 
>   1. At start, record the timestamp & find out canonical state via some
>      expansive method.
>   2. Print out xyz changed, abc added etc.
>   3. Record *just* what status would report about xyz, abc etc.
>   4. On subsequent git status, just amend that information, e.g. if
>      watchman says nothing changed $(cat .git/last-status-output).
> 
> We shouldn't need to be reading the entire index in the common case
> where just a few things change.
> 

I agree that reading the entire index in the common case is rather 
expensive. It is, however, the model we have today and all the code in 
git assumes all cache entries are in memory.

We are interested in pursuing a patch series that would enable higher 
performance especially with large and/or sparse repos by making the 
index sparse, hierarchical, and incrementally readable/writable.  As you 
might expect, that is a lot of work and is far beyond what we can 
address in this patch series.

> There's also a lot of things that use status to just check "are we
> clean?", those would only need to record the last known timestamp when
> the tree was clean, and then ask watchman if there were any changes, if
> not we're done.
> 
>> I'm still a bit curious that refresh index time, after excluding 0.020
>> for fsmonitor, is stil 0.012s. What does it do? It should really be
>> doing nothing. Either way, read index time seems to be the elephant in
>> the room now.
>>
>> -- 8< --
>> diff --git a/read-cache.c b/read-cache.c
>> index eac74bc9f1..d60e0a8480 100644
>> --- a/read-cache.c
>> +++ b/read-cache.c
>> @@ -1367,12 +1367,21 @@ int refresh_index(struct index_state *istate, unsigned int flags,
>>   	unsigned int options = (CE_MATCH_REFRESH |
>>   				(really ? CE_MATCH_IGNORE_VALID : 0) |
>>   				(not_new ? CE_MATCH_IGNORE_MISSING : 0));
>> +	int ignore_fsmonitor = options & CE_MATCH_IGNORE_FSMONITOR;
>>   	const char *modified_fmt;
>>   	const char *deleted_fmt;
>>   	const char *typechange_fmt;
>>   	const char *added_fmt;
>>   	const char *unmerged_fmt;
>> -	uint64_t start = getnanotime();
>> +	uint64_t start;
>> +
>> +	/*
>> +	 * If fsmonitor is used, force its communication early to
>> +	 * accurately measure how long this function takes without it.
>> +	 */
>> +	if (!ignore_fsmonitor)
>> +		refresh_fsmonitor(istate);
>> +	start = getnanotime();
>>
>>   	modified_fmt = (in_porcelain ? "M\t%s\n" : "%s: needs update\n");
>>   	deleted_fmt = (in_porcelain ? "D\t%s\n" : "%s: needs update\n");
>> -- 8< --

  reply	other threads:[~2018-01-30 22:41 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-27  0:28 Some rough edges of core.fsmonitor Ævar Arnfjörð Bjarmason
2018-01-27  1:36 ` Duy Nguyen
2018-01-27  1:39   ` [PATCH] trace: measure where the time is spent in the index-heavy operations Nguyễn Thái Ngọc Duy
2018-01-27 11:58     ` Thomas Gummerer
2018-01-27 12:27       ` [PATCH v2] " Nguyễn Thái Ngọc Duy
2018-01-27 11:43   ` Some rough edges of core.fsmonitor Ævar Arnfjörð Bjarmason
2018-01-27 12:39     ` Duy Nguyen
2018-01-27 13:09       ` Duy Nguyen
2018-01-27 19:01         ` Ævar Arnfjörð Bjarmason
2018-01-30 22:41           ` Ben Peart [this message]
2018-01-29  9:40     ` Duy Nguyen
2018-01-29 23:16       ` Ben Peart
2018-02-01 10:40         ` Duy Nguyen
2018-01-28 20:44 ` Johannes Schindelin
2018-01-28 22:28   ` Ævar Arnfjörð Bjarmason
2018-01-30  1:21     ` Ben Peart
2018-01-31 10:15       ` Duy Nguyen
2018-02-04  9:38         ` [PATCH] dir.c: ignore paths containing .git when invalidating untracked cache Nguyễn Thái Ngọc Duy
2018-02-05 17:44           ` Ben Peart
2018-02-06 12:02             ` Duy Nguyen
2018-02-07  9:21           ` [PATCH v2] " Nguyễn Thái Ngọc Duy
2018-02-07  9:21             ` Nguyễn Thái Ngọc Duy
2018-02-07 16:59               ` Ben Peart
2018-02-13 10:00                 ` Duy Nguyen
2018-02-13 17:57                   ` Junio C Hamano
2018-02-14  1:24                     ` Duy Nguyen
2018-02-14  8:00                       ` Junio C Hamano
2018-01-30 22:57 ` Some rough edges of core.fsmonitor Ben Peart
2018-01-30 23:16   ` Ævar Arnfjörð Bjarmason
2018-01-31 16:12     ` Ben Peart

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=145f8cf4-8ade-7d86-31b6-5d92fcfea3ac@gmail.com \
    --to=peartben@gmail.com \
    --cc=alexmv@dropbox.com \
    --cc=avarab@gmail.com \
    --cc=benpeart@microsoft.com \
    --cc=christian.couder@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=pclouds@gmail.com \
    /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.
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 NNTP newsgroup(s).