oidtree: a crit-bit tree for odb_loose_cache
commit92d8ed8ac101d62183d51f280b90efb1de1bda5c
authorEric Wong <e@80x24.org>
Wed, 7 Jul 2021 23:10:19 +0000 (7 23:10 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 8 Jul 2021 04:28:04 +0000 (7 21:28 -0700)
tree8979963947ae78dcdf979c1fd81a06d0dde1ad28
parent90e07f0a342df836a33b92e179eb105243dba88d
oidtree: a crit-bit tree for odb_loose_cache

This saves 8K per `struct object_directory', meaning it saves
around 800MB in my case involving 100K alternates (half or more
of those alternates are unlikely to hold loose objects).

This is implemented in two parts: a generic, allocation-free
`cbtree' and the `oidtree' wrapper on top of it.  The latter
provides allocation using alloc_state as a memory pool to
improve locality and reduce free(3) overhead.

Unlike oid-array, the crit-bit tree does not require sorting.
Performance is bound by the key length, for oidtree that is
fixed at sizeof(struct object_id).  There's no need to have
256 oidtrees to mitigate the O(n log n) overhead like we did
with oid-array.

Being a prefix trie, it is natively suited for expanding short
object IDs via prefix-limited iteration in
`find_short_object_filename'.

On my busy workstation, p4205 performance seems to be roughly
unchanged (+/-8%).  Startup with 100K total alternates with no
loose objects seems around 10-20% faster on a hot cache.
(800MB in memory savings means more memory for the kernel FS
cache).

The generic cbtree implementation does impose some extra
overhead for oidtree in that it uses memcmp(3) on
"struct object_id" so it wastes cycles comparing 12 extra bytes
on SHA-1 repositories.  I've not yet explored reducing this
overhead, but I expect there are many places in our code base
where we'd want to investigate this.

More information on crit-bit trees: https://cr.yp.to/critbit.html

Signed-off-by: Eric Wong <e@80x24.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 files changed:
Makefile
cbtree.c [new file with mode: 0644]
cbtree.h [new file with mode: 0644]
object-file.c
object-name.c
object-store.h
oidtree.c [new file with mode: 0644]
oidtree.h [new file with mode: 0644]
t/helper/test-oidtree.c [new file with mode: 0644]
t/helper/test-tool.c
t/helper/test-tool.h
t/t0069-oidtree.sh [new file with mode: 0755]