]> Sergey Matveev's repositories - public-inbox.git/commit
index: v2: --sequential-shard option
authorEric Wong <e@yhbt.net>
Fri, 7 Aug 2020 01:14:04 +0000 (01:14 +0000)
committerEric Wong <e@yhbt.net>
Fri, 7 Aug 2020 23:45:38 +0000 (23:45 +0000)
commit06a2418fd053c9a5b80217e74d1b47b8e1ca85e1
tree37dc120e64b6f2114164a3e4d2d358373b1b1eb5
parent32f6a1f9498f759041b72d6f4d5cb959088a3dec
index: v2: --sequential-shard option

This gives better page cache utilization for Xapian indexing on
slow storage by improving locality for random I/O activity on
the Xapian DB.

Instead of doing a single-pass to index both SQLite and Xapian;
this indexes them separately.  The first pass is identical to
indexlevel=basic: it indexes both over.sqlite3 and msgmap.sqlite3.

Subsequent passes only operate on a single Xapian shard for
documents belonging to that shard.  Given enough shards, each
individual shard can be made small enough to fit into the kernel
page cache and avoid HDD seeks for read activity.

Doing rough tests with a busy system with a 7200 RPM HDD with ext4,
full indexing of LKML (9 epochs) goes from ~80 hours (-j0) to
~30 hours (-j8) with 16GB RAM with 7 shards configured and fsync(2)
disabled (--no-sync) and `--batch-size=10m'.
Documentation/public-inbox-config.pod
Documentation/public-inbox-index.pod
Documentation/public-inbox-v2-format.pod
lib/PublicInbox/Config.pm
lib/PublicInbox/V2Writable.pm
lib/PublicInbox/WatchMaildir.pm
script/public-inbox-index
t/config.t
t/v2mirror.t