]> Sergey Matveev's repositories - public-inbox.git/log
public-inbox.git
4 years agoMerge remote-tracking branch 'origin/git-cleanup'
Eric Wong [Mon, 3 Jun 2019 10:06:04 +0000 (10:06 +0000)]
Merge remote-tracking branch 'origin/git-cleanup'

* origin/git-cleanup:
  git: drop the deleted err_c file
  git: unconditional expiry

4 years agoMerge remote-tracking branch 'origin/ds'
Eric Wong [Mon, 3 Jun 2019 09:04:01 +0000 (09:04 +0000)]
Merge remote-tracking branch 'origin/ds'

* origin/ds:
  ds: remove PLCMap and per-socket PostLoopCallback
  ds: drop write_set_watch field
  ds: drop unused EVENT: label in epoll code path
  ds: drop checks for invalid descriptors
  ds: drop set_writer_func support
  ds: add a note about planned future changes
  ds: drop more unused subs

4 years agods: remove PLCMap and per-socket PostLoopCallback
Eric Wong [Mon, 3 Jun 2019 09:00:28 +0000 (09:00 +0000)]
ds: remove PLCMap and per-socket PostLoopCallback

We don't need and won't be needing per-socket PostLoopCallbacks.

4 years agot/psgi_search.t: require DBD::SQLite
Eric Wong [Mon, 3 Jun 2019 01:40:06 +0000 (01:40 +0000)]
t/psgi_search.t: require DBD::SQLite

In case we encounter an odd system which has Search::Xapian
but not DBD::SQLite.

4 years agods: drop write_set_watch field
Eric Wong [Sun, 2 Jun 2019 03:39:37 +0000 (03:39 +0000)]
ds: drop write_set_watch field

We never enable write watches ourselves for HTTP and NNTP,
and only enable the write watch with EvCleanup because it's
an "always on" watch.

4 years agods: drop unused EVENT: label in epoll code path
Eric Wong [Sun, 2 Jun 2019 03:39:36 +0000 (03:39 +0000)]
ds: drop unused EVENT: label in epoll code path

This was never used in Danga::Socket 1.61, either.

4 years agods: drop checks for invalid descriptors
Eric Wong [Sun, 2 Jun 2019 03:39:35 +0000 (03:39 +0000)]
ds: drop checks for invalid descriptors

I've used Danga::Socket for well over a decade in various
projects at this point and have never seen the need for it.

If such a bug ever happens; the process should fall over so
it gets fixed ASAP.

4 years agods: drop set_writer_func support
Eric Wong [Sun, 2 Jun 2019 03:39:34 +0000 (03:39 +0000)]
ds: drop set_writer_func support

This is not used by perlbal for OpenSSL support, either;
and it does not appear to be the right layer for doing
write translations anyways (IO::Socket::SSL uses `tie').

4 years agods: add a note about planned future changes
Eric Wong [Sun, 2 Jun 2019 03:39:33 +0000 (03:39 +0000)]
ds: add a note about planned future changes

Sometimes I get bored with the email part of this project and
need a distraction :P

4 years agods: drop more unused subs
Eric Wong [Sun, 2 Jun 2019 03:39:32 +0000 (03:39 +0000)]
ds: drop more unused subs

ToClose and HaveEpoll are of no use to us and I see no
future use for them, either.

4 years agods: fix and test for FD leaks with kqueue on ->Reset
Eric Wong [Sat, 1 Jun 2019 21:43:47 +0000 (21:43 +0000)]
ds: fix and test for FD leaks with kqueue on ->Reset

Even though we currently don't use it repeatedly, ->Reset
should close() kqueue FDs and not cause the process to run
out of descriptors.

Add a close-on-exec test while we're at it.

4 years agodoc/v2: note that Xapian is now optional in v2
Eric Wong [Sat, 1 Jun 2019 07:28:17 +0000 (07:28 +0000)]
doc/v2: note that Xapian is now optional in v2

This is true as of e220b8b2ee5cfd458167dc2c6c92726352c4c80e
("Merge remote-tracking branch 'origin/xap-optional' into master")

4 years agods: set close-on-exec flag on epoll descriptors
Eric Wong [Sat, 1 Jun 2019 00:23:22 +0000 (00:23 +0000)]
ds: set close-on-exec flag on epoll descriptors

We should not be leaking these FDs to git(1) processes,
in case git has a bug that causes it to access the wrong FD.

4 years agogit: drop the deleted err_c file
Eric Wong [Sat, 1 Jun 2019 03:27:55 +0000 (03:27 +0000)]
git: drop the deleted err_c file

No reason to leave that (usually) empty file open after killing off
"cat-file --batch-check".  This wasn't an unbound leak, though,
as respawning the --batch-check process would've clobbered the
old err_c file.

4 years agogit: unconditional expiry
Eric Wong [Sat, 1 Jun 2019 00:20:51 +0000 (00:20 +0000)]
git: unconditional expiry

A constant stream of traffic to either httpd/nntpd would mean
git-cat-file processes never expire.  Things can go bad after a
full repack, as a full repack will unlink old pack indices and
git-cat-file does not currently detect unlinked files.

We could do something complicated by recursively stat-ing
objects/pack of every git directory and alternate;
but that's probably not worth the trouble compared to
occasionally restarting the cat-file process.

So simplify the code and let httpd/nntpd expire them
periodically, since spawning a "git-cat-file --batch" process
isn't too expensive.  We already spawn for every request which
hits git-http-backend, cgit, and git-apply.

In the future, we may optionally support the Git::Raw module
to avoid IPC; but we must remain careful to not leave lingering
FDs open to unlinked files after repack.

4 years agogit: drop the deleted err_c file
Eric Wong [Sat, 1 Jun 2019 03:27:55 +0000 (03:27 +0000)]
git: drop the deleted err_c file

No reason to leave that (usually) empty file open after killing off
"cat-file --batch-check".  This wasn't an unbound leak, though,
as respawning the --batch-check process would've clobbered the
old err_c file.

4 years agogit: unconditional expiry
Eric Wong [Sat, 1 Jun 2019 00:20:51 +0000 (00:20 +0000)]
git: unconditional expiry

A constant stream of traffic to either httpd/nntpd would mean
git-cat-file processes never expire.  Things can go bad after a
full repack, as a full repack will unlink old pack indices and
git-cat-file does not currently detect unlinked files.

We could do something complicated by recursively stat-ing
objects/pack of every git directory and alternate;
but that's probably not worth the trouble compared to
occasionally restarting the cat-file process.

So simplify the code and let httpd/nntpd expire them
periodically, since spawning a "git-cat-file --batch" process
isn't too expensive.  We already spawn for every request which
hits git-http-backend, cgit, and git-apply.

In the future, we may optionally support the Git::Raw module
to avoid IPC; but we must remain careful to not leave lingering
FDs open to unlinked files after repack.

4 years agoTODO: add item for optional Cache::FastMmap
Eric Wong [Fri, 31 May 2019 16:58:46 +0000 (16:58 +0000)]
TODO: add item for optional Cache::FastMmap

Taking one step out of setting up a performant deployment could
make setup and administration easier (at the cost of installing
an extra-but-common XS module).  This can also be useful for
the day NNTP servers see hug-of-death events.

4 years agoviewdiff: avoid repeat variable expansion
Eric Wong [Fri, 31 May 2019 16:46:04 +0000 (16:46 +0000)]
viewdiff: avoid repeat variable expansion

This is worth a 1-2% speedup in t/perf-msgview.t rendering 2620
messages currently in https://public-inbox.org/meta/

4 years agoMerge remote-tracking branch 'origin/v2-noop-speedup'
Eric Wong [Thu, 30 May 2019 19:50:04 +0000 (19:50 +0000)]
Merge remote-tracking branch 'origin/v2-noop-speedup'

* origin/v2-noop-speedup:
  v2writable: short-circuit is_ancestor check on equality
  v2writable: avoid mm_tmp creation without regen
  v2writable: hoist out index_epoch sub
  v2writable: split off unindex_range mapping

4 years agodoc/hosted: drop some links and clarify wording
Eric Wong [Thu, 30 May 2019 06:54:06 +0000 (06:54 +0000)]
doc/hosted: drop some links and clarify wording

I don't have time to check and train spam for all these
projects.

Spam filtering is especially difficult on ruby-core: it
enters via Redmine, so it doesn't have a distinct Received:
chain, and also gets mixed with non-spam bug-report text,
throwing off Bayes training.

And I'm not sure if those mirrors did anybody any good, even;
so lets not say its' a "service" to anybody :P

The actual mirrors remain up, for now, but who knows...
I care about decentralization too much to ask anybody
to trust me to keep anything up :P

4 years agov2writable: short-circuit is_ancestor check on equality
Eric Wong [Thu, 30 May 2019 06:35:05 +0000 (06:35 +0000)]
v2writable: short-circuit is_ancestor check on equality

We don't need to use git to check ancestry if object IDs
match on a string comparison.

This saves 100ms or so and brings down the ~0.5s no-op time on
lore.kernel.org/lkml down to ~0.4s.

4 years agov2writable: avoid mm_tmp creation without regen
Eric Wong [Thu, 30 May 2019 03:59:40 +0000 (03:59 +0000)]
v2writable: avoid mm_tmp creation without regen

Creating mm_tmp is an expensive operation with large inboxes
and can be avoided if there are no new messages to process.

Since git-fetch(1) currently lacks an --exit-code option(*),
mirrors will run `public-inbox-index' unconditionally after
fetch, which is an expensive op if it needs to duplicate
a large SQLite DB.

This speeds up the mirror case of:

git --git-dir=git/$EPOCH.git fetch && public-inbox-index

This reduces the no-op `public-inbox-index' time from over 8s to
~0.5s on a (currently) 7-epoch clone of https://lore.kernel.org/lkml/
on my system.

(*) WIP --exit-code for git-fetch:
    https://public-inbox.org/git/87ftphw7mv.fsf@evledraar.gmail.com/

4 years agov2writable: hoist out index_epoch sub
Eric Wong [Thu, 30 May 2019 03:59:39 +0000 (03:59 +0000)]
v2writable: hoist out index_epoch sub

This will make future changes easier-to-follow.

4 years agov2writable: split off unindex_range mapping
Eric Wong [Thu, 30 May 2019 03:59:38 +0000 (03:59 +0000)]
v2writable: split off unindex_range mapping

It'll make it easier to detect if we have anything to
unindex and run git-log on, at all.

4 years agosearchidx: store indexlevel=medium as metadata
Eric Wong [Wed, 29 May 2019 20:56:32 +0000 (20:56 +0000)]
searchidx: store indexlevel=medium as metadata

And use it from Admin.

It's easy to tell what indexlevel=basic is from unconfigured
inboxes, but distinguishing between 'medium' and 'full' would
require stat()-ing position.* files which is fragile and
Xapian-implementation-dependent.

So use the metadata facility of Xapian and store it in the main
partition so Admin tools can deal better with unconfigured
inboxes copied using generic tools like cp(1) or rsync(1).

4 years agoindex: remove warning on unconfigured inboxes
Eric Wong [Wed, 29 May 2019 20:56:31 +0000 (20:56 +0000)]
index: remove warning on unconfigured inboxes

It's annoying for people using "git fetch && public-inbox-index"
as one user; and running -httpd/-nntpd as a different user
(where users see different config files).

4 years agoMerge branch 'v2-idx-progress'
Eric Wong [Wed, 29 May 2019 08:45:49 +0000 (08:45 +0000)]
Merge branch 'v2-idx-progress'

* v2-idx-progress:
  v2writable: show progress updates for index_sync
  index: support --verbose option
  v2writable: move index_sync options to sync state
  v2writable: use prototypes for internal subs
  v2writable: localize unindex-range.$EPOCH to $sync state
  v2writable: move {ranges} into $sync state
  v2writable: move {regen} into $sync state
  v2writable: move {reindex} field to $sync state
  v2writable: sync: move delete markers into $sync state
  v2writable: introduce $sync state and put mm_tmp in it

4 years agoMakefile.PL: enable prove warnings
Eric Wong [Wed, 29 May 2019 08:37:54 +0000 (08:37 +0000)]
Makefile.PL: enable prove warnings

We already "use warnings" everywhere, but could miss some spots.
This ought to cover that, and usually Perl module authors are
consistent about avoiding warnings that we won't clutter our
test outputs.

4 years agoMakefile.PL: allow `N' variable to be set in local config.mak
Eric Wong [Wed, 29 May 2019 08:29:30 +0000 (08:29 +0000)]
Makefile.PL: allow `N' variable to be set in local config.mak

This can useful for limiting test resource use without relying
on remembering the variable command-line.

4 years agov2writable: show progress updates for index_sync
Eric Wong [Tue, 28 May 2019 23:48:55 +0000 (23:48 +0000)]
v2writable: show progress updates for index_sync

We can show progress whenever we commit changes to the FS.

4 years agoindex: support --verbose option
Eric Wong [Tue, 28 May 2019 23:48:52 +0000 (23:48 +0000)]
index: support --verbose option

It doesn't implement progress of batches, yet, but it wires
up the parsing of the command-line while preserving output
compatibility.

This output is NOT meant to be stable.

4 years agov2writable: move index_sync options to sync state
Eric Wong [Tue, 28 May 2019 23:48:51 +0000 (23:48 +0000)]
v2writable: move index_sync options to sync state

And use singular `opt' to be consistent with the common name
of 'getopt'.

4 years agov2writable: use prototypes for internal subs
Eric Wong [Tue, 28 May 2019 23:48:50 +0000 (23:48 +0000)]
v2writable: use prototypes for internal subs

Hopefully this improves maintainability by allowing Perl
to do some arg checking for us.

4 years agov2writable: localize unindex-range.$EPOCH to $sync state
Eric Wong [Tue, 28 May 2019 23:48:49 +0000 (23:48 +0000)]
v2writable: localize unindex-range.$EPOCH to $sync state

We don't need to stuff that into $self (V2Writable) which can be
longer-lived than a ->index_sync invocation.

4 years agov2writable: move {ranges} into $sync state
Eric Wong [Tue, 28 May 2019 23:48:48 +0000 (23:48 +0000)]
v2writable: move {ranges} into $sync state

Yet another temporary variable with no use outside of index_sync.

4 years agov2writable: move {regen} into $sync state
Eric Wong [Tue, 28 May 2019 23:48:47 +0000 (23:48 +0000)]
v2writable: move {regen} into $sync state

regen is always enabled for index_sync nowadays (and has
been for a while).

Rename `index_prepare' to `sync_prepare' to show it's for
->index_sync; and not the online indexing we do for ->add.

4 years agov2writable: move {reindex} field to $sync state
Eric Wong [Tue, 28 May 2019 23:48:46 +0000 (23:48 +0000)]
v2writable: move {reindex} field to $sync state

reindexing info is not used outside of the index_sync code path.

4 years agov2writable: sync: move delete markers into $sync state
Eric Wong [Tue, 28 May 2019 23:48:45 +0000 (23:48 +0000)]
v2writable: sync: move delete markers into $sync state

Another small step to reduce parameters passed to reindex_oid.

4 years agov2writable: introduce $sync state and put mm_tmp in it
Eric Wong [Tue, 28 May 2019 23:48:44 +0000 (23:48 +0000)]
v2writable: introduce $sync state and put mm_tmp in it

A first step towards making the v2 index_sync code
easier-to-follow.  More fields to follow...

4 years agov2: fix reindex skipping NNTP article numbers
Eric Wong [Mon, 27 May 2019 18:45:45 +0000 (18:45 +0000)]
v2: fix reindex skipping NNTP article numbers

`public-inbox-index --reindex' could cause NNTP article number
gaps to form when it also has to deal with new,
never-before-seen commits in mirrors running off `git fetch'.

Fix this by running two distinct invocations of ->index_sync;
once to only reindex old commits, and a second time to index
new commits.

This does not appear to be a problem on v1 at the moment,
but I'll need more time to analyze this.

4 years agosearchidx: fix obvious typo
Eric Wong [Mon, 27 May 2019 18:45:44 +0000 (18:45 +0000)]
searchidx: fix obvious typo

We can't pass an empty string to `git merge-base --is-ancestor'
AFAIK, this did NOT present issues in the current test suite.

4 years agot/v1reindex.t: fix typo in setting `indexlevel'
Eric Wong [Mon, 27 May 2019 18:45:43 +0000 (18:45 +0000)]
t/v1reindex.t: fix typo in setting `indexlevel'

It did not cause a test failure because the default fallback
is `indexlevel=full'

4 years agoviewvcs: keep temporary Solver dir for large streams
Eric Wong [Sun, 26 May 2019 08:24:46 +0000 (08:24 +0000)]
viewvcs: keep temporary Solver dir for large streams

Streaming large blobs can take multiple iterations of the event
loop in our -httpd; so we must not let the File::Temp::Dir
result go out-of-scope when streaming large blobs created from
patches.

4 years agov2writable: fix assertions around reindexing
Eric Wong [Sat, 25 May 2019 19:18:09 +0000 (19:18 +0000)]
v2writable: fix assertions around reindexing

Fix a misspelling and ensure line context is printed by
`die' by leaving out the final '\n'.  Also, `delete' was
pointless.

4 years agocontrib/css: mark as CC0 (public domain)
Eric Wong [Sat, 25 May 2019 19:10:00 +0000 (19:10 +0000)]
contrib/css: mark as CC0 (public domain)

No reason to copyright colour schemes :P

4 years agov2writable: drop unused $last_commits var
Eric Wong [Sat, 25 May 2019 09:42:03 +0000 (09:42 +0000)]
v2writable: drop unused $last_commits var

Apparently it's never been used and we write to msgmap directly.

4 years agot/indexlevels: fix indexlevel of ro_mirror
Eric Wong [Sat, 25 May 2019 09:42:08 +0000 (09:42 +0000)]
t/indexlevels: fix indexlevel of ro_mirror

Don't hard-code "basic", since we already ran -init with the
intended indexlevel.

4 years agomsgmap: remove double negative
Eric Wong [Sat, 25 May 2019 04:34:20 +0000 (04:34 +0000)]
msgmap: remove double negative

I have never not found double negatives to be confusing...

4 years agoTODO: more stuff: bundles, synonyms, dogfooding
Eric Wong [Fri, 24 May 2019 08:55:56 +0000 (08:55 +0000)]
TODO: more stuff: bundles, synonyms, dogfooding

git bundles could/should make self-hosting easier.

Being able to configure synonym (and spelling) lists would make
some searches more useful.

Might as well dogfood kernel stuff, too, given the overlap and
history between this project, git and the Linux kernel.  Would
be interesting to have *BSD folks throw their hat in the ring,
too.

Building/testing userspace stuff is often the most
time-consuming, but necessary to ensure future compatibility.

4 years agoMANIFEST: add extman.perl
Eric Wong [Fri, 24 May 2019 07:55:29 +0000 (07:55 +0000)]
MANIFEST: add extman.perl

Oops :x

4 years agodoc: add URLs for Xapian manpages
Eric Wong [Fri, 24 May 2019 02:57:58 +0000 (02:57 +0000)]
doc: add URLs for Xapian manpages

Since we go through the effort of hosting these manpages,
link to them.

4 years agodoc: xcpdb: add switch documentation
Eric Wong [Fri, 24 May 2019 02:57:57 +0000 (02:57 +0000)]
doc: xcpdb: add switch documentation

In particular, the '--compact' switch is really useful since it
works without holding the inbox-wide lock for minutes at a time
on giant inboxes (inboxes where copies can take dozens, if not
hundreds of minutes).

4 years agodoc: generate manpages for some Xapian commands
Eric Wong [Fri, 24 May 2019 02:57:56 +0000 (02:57 +0000)]
doc: generate manpages for some Xapian commands

They're nowhere to be found on Xapian.org, and links to
external services are either too long (for manpages.debian.org)
or have privacy-invasive tracking JS on them.

4 years agodoc: sync .txt mtime to .pod mtime
Eric Wong [Fri, 24 May 2019 02:57:55 +0000 (02:57 +0000)]
doc: sync .txt mtime to .pod mtime

Otherwise timestamps for .html files get screwed up, too;
and that hurts caching.

4 years agodoc: don't barf on missing `git set-file-times'
Eric Wong [Fri, 24 May 2019 02:57:54 +0000 (02:57 +0000)]
doc: don't barf on missing `git set-file-times'

It's not critical, but it's nice to have for cache-friendliness
(otherwise I would not have written it :P)

I guess I should follow up on getting it into 'git contrib/':
https://public-inbox.org/git/20100702033709.GA6818@burratino/

4 years agodoc: daemon: fix manpage section for nginx
Eric Wong [Fri, 24 May 2019 02:57:53 +0000 (02:57 +0000)]
doc: daemon: fix manpage section for nginx

The nginx manpage is in section 8.

4 years agodoc: index: fix miscapitalization of "SQLite"
Eric Wong [Fri, 24 May 2019 02:57:52 +0000 (02:57 +0000)]
doc: index: fix miscapitalization of "SQLite"

Oops :x

4 years agosearch: don't log all warnings on retry_reopen
Eric Wong [Fri, 24 May 2019 01:12:08 +0000 (01:12 +0000)]
search: don't log all warnings on retry_reopen

Some users (or bots :P) can trigger horrible queries which
the caller can choose to either log or ignore.  This prevents
horrible queries from ExtMsg from logging confusing "ref: "
messages when $@ is not a Perl reference.

4 years agodoc: various updates to reflect current state
Eric Wong [Thu, 23 May 2019 10:37:38 +0000 (10:37 +0000)]
doc: various updates to reflect current state

-index documentation avoid redundant v1 information and refers
readers to apropriate v1/v2 manpages.  Search::Xapian can also
be optional, now, as only the PSGI search interface uses it.

Favor "INBOX_DIR" where appropriate, since "REPO_DIR" can be
confused for code repos which we also support.

XAPIAN_FLUSH_THRESHOLD is documented for all relevant
bulk commands.

4 years agoxapcmd: do not reset %SIG until last Xtmpdir is done
Eric Wong [Thu, 23 May 2019 09:37:04 +0000 (09:37 +0000)]
xapcmd: do not reset %SIG until last Xtmpdir is done

To properly handle compact tmpdir cleanup in single process
situations, we need to carefully account for Xtmpdir not
being a singleton and ensuring we don't clobber signal
handlers which belong to other Xtmpdirs.

4 years agoxcpdb|compact: support --jobs/-j flag like gmake(1)
Eric Wong [Thu, 23 May 2019 09:37:03 +0000 (09:37 +0000)]
xcpdb|compact: support --jobs/-j flag like gmake(1)

We don't have to be tied to the number of partitions in case
we made a bad choice at initialization.  This doesn't affect
reindexing, but the copying phase is already intensive.

And optimize away the extra process when we only have a single
job which won't parallelize.

The wording for the (v2) reindexing phase could be improved,
later.  I also plan to allow repartitioning of existing
Xapian DBs.

4 years agoxapcmd: cleanup on interrupted xcpdb "--compact"
Eric Wong [Thu, 23 May 2019 09:37:02 +0000 (09:37 +0000)]
xapcmd: cleanup on interrupted xcpdb "--compact"

We should not have leftover junk on interrupted invocations.

4 years agoxcpdb|compact: support some xapian-compact switches
Eric Wong [Thu, 23 May 2019 09:37:01 +0000 (09:37 +0000)]
xcpdb|compact: support some xapian-compact switches

Allow users to specify the --blocksize <B>, --no-full, --fuller
options for xapian-compact(1) for fine-tuning compact behavior
for low-traffic/inactive inboxes.

We also won't support --multipass, since it doesn't seem
compatible with our requirement to use --no-renumber.

We also won't support --single-file, since it only seems
intended for totally dead inboxes; and it doesn't seem
worth the support overhead when "totally dead" turns out
to be a misdiagnosis.

4 years agocompact: reuse infrastructure from xcpdb
Eric Wong [Thu, 23 May 2019 09:37:00 +0000 (09:37 +0000)]
compact: reuse infrastructure from xcpdb

Since -xcpdb is a superset of -compact, we can reuse much of
that code used for driving compact.

For compact (only), this is slightly less memory efficient since
it requires an extra process per-partition, but we get to prefix
the output with the partition name for more readable output.

4 years agoxcpdb: remove temporary directories on aborts
Eric Wong [Thu, 23 May 2019 09:36:59 +0000 (09:36 +0000)]
xcpdb: remove temporary directories on aborts

Cleanup temporary directories on common termination signals
(INT, HUP, PIPE, TERM), but only if it's not in the process
of being committed via rename() sequence.

4 years agoxcpdb: show re-indexing progress
Eric Wong [Thu, 23 May 2019 09:36:58 +0000 (09:36 +0000)]
xcpdb: show re-indexing progress

Emit information about reindexing git revision ranges when used
with xcpdb.  Additionally, distinguish Xapian copy output from
v2 git epoch counting by increasing directory context info.

For now, v1 batches batches are emitted.  v2 indexing is still
missing progress reporting for batches, as the data structures
for reindexing would benefit from a refactoring, first.

This does not currently affect the use of public-inbox-index,
but may in the future.

4 years agoxapcmd: use "print STDERR" for progress reporting
Eric Wong [Thu, 23 May 2019 09:36:57 +0000 (09:36 +0000)]
xapcmd: use "print STDERR" for progress reporting

`warn' is reserved for actual warnings, as it respects
$SIG{__WARN__} and we rely on that override to print
message context information when we are indexing.

4 years agodoc: xcpdb: update to reflect the current state
Eric Wong [Thu, 23 May 2019 09:36:56 +0000 (09:36 +0000)]
doc: xcpdb: update to reflect the current state

It is no longer a wrapper around copydatabase(1), since
copydatabase did not recover from DatabaseModifiedError.

4 years agoxapcmd: avoid EXDEV when finalizing changes
Eric Wong [Thu, 23 May 2019 09:36:55 +0000 (09:36 +0000)]
xapcmd: avoid EXDEV when finalizing changes

By creating temporary directories as deep as possible,
we can allow v2 repositories to have `xap$SCHEMA_VERSION'
(e.g. `xap15') reside on a separate FS.

We also check st_dev ahead-of-time to avoid doing work which
will fail with EXDEV.  Of course, another process may still
move/change things around.

4 years agoxcpdb: cleanup error handling and diagnosis
Eric Wong [Thu, 23 May 2019 09:36:54 +0000 (09:36 +0000)]
xcpdb: cleanup error handling and diagnosis

Running a full "public-inbox-index --reindex" in parallel
with "public-inbox-xcpdb" on the same inbox can still cause
problems, though.

4 years agoxcpdb: implement progress reporting
Eric Wong [Thu, 23 May 2019 09:36:53 +0000 (09:36 +0000)]
xcpdb: implement progress reporting

Copying an entire Xapian DB is horribly slow whether it's done
via Perl or copydatabase(1).  So displaying some progress
indication is good for user experience.

While we're at it, prefix xapian-compact output, too; since
parallel processes end up clobbering each other.

4 years agoxcpdb: use fine-grained locking
Eric Wong [Thu, 23 May 2019 09:36:52 +0000 (09:36 +0000)]
xcpdb: use fine-grained locking

Copying an entire Xapian DB takes a long time, so update our
reindexing code to support partial reindexing, snapshot the
pre-copydatabase git revisions, perform the lengthy copy,
and do a partial reindex when the copy + renames are done.

4 years agov2writable: hoist out log_range sub for readability
Eric Wong [Thu, 23 May 2019 09:36:51 +0000 (09:36 +0000)]
v2writable: hoist out log_range sub for readability

This is preparation to to support partial reindexing

4 years agoxapcmd: xcpdb supports compaction
Eric Wong [Thu, 23 May 2019 09:36:50 +0000 (09:36 +0000)]
xapcmd: xcpdb supports compaction

To minimize the delay on active inboxes, it's actually ideal to
run xapian-compact at the end of the per-partition cpdb process;
since the new DB isn't accessible yet and so we don't have to
deal with lock contention with -mda or -watch processes.  The
downside is temporary file overhead (3x instead of 2x) required.

4 years agoxcpdb: implement using Perl bindings
Eric Wong [Thu, 23 May 2019 09:36:49 +0000 (09:36 +0000)]
xcpdb: implement using Perl bindings

By avoid copydatabase(1) entirely, we can make further changes
to avoid locking the entire inbox for a long operation and
switch to fine-grained locking.

4 years agoadmin: move index_inbox over
Eric Wong [Thu, 23 May 2019 09:36:48 +0000 (09:36 +0000)]
admin: move index_inbox over

We will be reindexing after copydatabase

4 years agoxapcmd: do not cleanup on errors
Eric Wong [Thu, 23 May 2019 09:36:47 +0000 (09:36 +0000)]
xapcmd: do not cleanup on errors

We move the old directory into the new directory, so avoid the
situation where a bug or error could cause the tempdir cleanup to run
and destroy both our old and new directories.

4 years agoxcpdb: new tool which wraps Xapian's copydatabase(1)
Eric Wong [Thu, 23 May 2019 09:36:46 +0000 (09:36 +0000)]
xcpdb: new tool which wraps Xapian's copydatabase(1)

copydatabase(1) is an existing Xapian tool which is the
recommended way to upgrade existing DBs to the latest Xapian
database format (currently "glass" for stable/released
versions).  Our use of Xapian relies on preserving document IDs,
so we'll wrap it like we do xapian-compact(1) and use the
"--no-renumber" switch.

I could not name the tool "public-inbox-copydatabase" since it
would be ambiguous as to which DB it's actually copying.  So, I
abbreviated the suffix to "xcpdb" (Xapian CoPy DataBase), which
I hope is acceptable and unambiguous.

4 years agoxapcmd: support spawn options
Eric Wong [Thu, 23 May 2019 09:36:45 +0000 (09:36 +0000)]
xapcmd: support spawn options

copydatabase(1) is exceptionally noisy and it's output is
confusing when run in parallel.  Support redirects at least, and
env while we're at it to give us future options.

We can also stuff a -jobs parameter into the options to limit
parallelism since it can be useful for low-priority upgrade
jobs.

4 years agoadmin: hoist out resolve_inboxes for -compact and -index
Eric Wong [Thu, 23 May 2019 09:36:44 +0000 (09:36 +0000)]
admin: hoist out resolve_inboxes for -compact and -index

Both of these index-affecting commands should work similarly
on the command-line.

public-inbox-index no longer complains about unconfigured
~/.public-inbox/config; but often I found myself being
annoyed by that, anyways...

4 years agoxapcmd: new module for wrapping Xapian commands
Eric Wong [Thu, 23 May 2019 09:36:43 +0000 (09:36 +0000)]
xapcmd: new module for wrapping Xapian commands

Port public-inbox-compact(1) over to using it, and we will need
to wrap copydatabase(1) to ease glass migrations, too.

4 years agosearch: reenable phrase search on non-chert Xapian
Eric Wong [Thu, 23 May 2019 09:36:42 +0000 (09:36 +0000)]
search: reenable phrase search on non-chert Xapian

This is assuming nobody uses flint or earlier, anymore;
as flint predates the existence of this project.

4 years agodoc: document the reason for --no-renumber
Eric Wong [Thu, 23 May 2019 09:36:41 +0000 (09:36 +0000)]
doc: document the reason for --no-renumber

We're going to need copydatabase, too

4 years agov1writable: retire in favor of InboxWritable
Eric Wong [Thu, 23 May 2019 09:36:40 +0000 (09:36 +0000)]
v1writable: retire in favor of InboxWritable

In retrospect, introducing V1Writable was unnecessary and
InboxWritable->importer is in a better position to abstract
away differences between v1 and v2 writers.

So teach InboxWritable to initialize inboxes and get rid
of V1Writable.

4 years agot/convert-compact: skip on missing xapian-compact(1)
Eric Wong [Thu, 23 May 2019 09:36:39 +0000 (09:36 +0000)]
t/convert-compact: skip on missing xapian-compact(1)

Can't run the test if the required Xapian tools are missing.

4 years agoMerge branch 'ds-cleanup'
Eric Wong [Wed, 22 May 2019 21:54:21 +0000 (21:54 +0000)]
Merge branch 'ds-cleanup'

* ds-cleanup:
  DS: warn on deprecations
  DS: remove IPPROTO_TCP import
  DS: drop $VERSION var
  DS: remove support OtherFds code
  DS: get rid of unused methods and aliases

4 years agoDS: warn on deprecations
Eric Wong [Wed, 22 May 2019 21:46:59 +0000 (21:46 +0000)]
DS: warn on deprecations

Enabling deprecation warnings didn't seem to have any
noticeable effects with "perl -w -c", so whatever reason
Danga had for it is long irrelevant.

4 years agoDS: remove IPPROTO_TCP import
Eric Wong [Wed, 22 May 2019 21:46:58 +0000 (21:46 +0000)]
DS: remove IPPROTO_TCP import

Unlike Danga::Socket, we do not support TCP_CORK, either

4 years agoDS: drop $VERSION var
Eric Wong [Wed, 22 May 2019 21:46:57 +0000 (21:46 +0000)]
DS: drop $VERSION var

It was only relevant to Danga::Socket.

4 years agoDS: remove support OtherFds code
Eric Wong [Wed, 22 May 2019 21:46:56 +0000 (21:46 +0000)]
DS: remove support OtherFds code

It's easy enough to wrap FDs in classes that can use
all of the functionality of the event loop, not just
the read-only interface AddOtherFds provided.

4 years agoDS: get rid of unused methods and aliases
Eric Wong [Wed, 22 May 2019 21:46:55 +0000 (21:46 +0000)]
DS: get rid of unused methods and aliases

"make syntax" is clean, now

4 years agousercontent: stop relying on autodie
Eric Wong [Wed, 22 May 2019 07:27:52 +0000 (07:27 +0000)]
usercontent: stop relying on autodie

It's a non-standard package on CentOS-7, actually; and we
shouldn't bloat the PSGI server by loading a module which
isn't strictly needed.

4 years agoci: support CentOS-7
Eric Wong [Wed, 22 May 2019 02:14:02 +0000 (02:14 +0000)]
ci: support CentOS-7

Tested on an amd64 chroot built with rinse 3.4

4 years agot/search*: require DBI and DBD::SQLite, too
Eric Wong [Wed, 22 May 2019 02:14:01 +0000 (02:14 +0000)]
t/search*: require DBI and DBD::SQLite, too

None of the Search::Xapian-dependent stuff works without DBI
and DBD::SQLite.

There are no plans to support Xapian w/o DBD::SQLite since
SQLite is more common and less resource-intensive than Xapian.

4 years agogit: workaround old git-rev-parse(1) (--git-path)
Eric Wong [Wed, 22 May 2019 02:14:00 +0000 (02:14 +0000)]
git: workaround old git-rev-parse(1) (--git-path)

git < 2.5.0 was missing --git-path support.  This means any
users relying on some rare environment variables will need git
2.5.0+

4 years agot/watch_filter_rubylang: disable v2 test for git < 2.6
Eric Wong [Wed, 22 May 2019 02:13:59 +0000 (02:13 +0000)]
t/watch_filter_rubylang: disable v2 test for git < 2.6

This test was not disabled properly for ancient versions of
git without get-mark support.

4 years agoinit: preserve permissions for git prior to 2.1.0
Eric Wong [Wed, 22 May 2019 02:13:58 +0000 (02:13 +0000)]
init: preserve permissions for git prior to 2.1.0

"git config" did not preserve permissions of the config file it
modifies prior to git 2.1.0, so workaround that.

4 years agoMerge remote-tracking branch 'origin/xap-optional' into master
Eric Wong [Tue, 21 May 2019 23:22:05 +0000 (23:22 +0000)]
Merge remote-tracking branch 'origin/xap-optional' into master

* origin/xap-optional:
  admin: improve warnings and errors for missing modules
  searchidx: do not create empty Xapian partitions for basic
  lazy load Xapian and make it optional for v2
  www: use Inbox->over where appropriate
  nntp: use Inbox->over directly
  inbox: add ->over method to ease access

4 years agosearchidx: remove unused Compress::Zlib import
Eric Wong [Tue, 21 May 2019 06:54:27 +0000 (06:54 +0000)]
searchidx: remove unused Compress::Zlib import

We only compress in OverIdx, now; since we no longer do overview
stuff in Xapian (and Xapian compresses document data, anyways).