about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-14 07:55:35 +0000
committerEric Wong <e@80x24.org>2019-06-14 21:56:40 +0000
commite48df4770cffd4ef9672a884ea827cbcf566e469 (patch)
tree6c6279230b2e845de37a2d4c051bfbb6dc2f178e
parentd304870c3c1e82f0421272e7986fc5c9aafa2889 (diff)
downloadpublic-inbox-e48df4770cffd4ef9672a884ea827cbcf566e469.tar.gz
We'll name our process title with "shard" instead, and
update a few error messages and comments to match.
-rw-r--r--lib/PublicInbox/SearchIdxPart.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/PublicInbox/SearchIdxPart.pm b/lib/PublicInbox/SearchIdxPart.pm
index 51d81a0a..77fb7d90 100644
--- a/lib/PublicInbox/SearchIdxPart.pm
+++ b/lib/PublicInbox/SearchIdxPart.pm
@@ -1,8 +1,8 @@
 # Copyright (C) 2018 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
-# used to interface with a single Xapian partition in V2 repos.
-# See L<public-inbox-v2-format(5)> for more info on how we partition Xapian
+# used to interface with a single Xapian shard in V2 repos.
+# See L<public-inbox-v2-format(5)> for more info on how we shard Xapian
 package PublicInbox::SearchIdxPart;
 use strict;
 use warnings;
@@ -47,7 +47,7 @@ sub spawn_worker {
 
 sub partition_worker_loop ($$$$) {
         my ($self, $r, $part, $bnote) = @_;
-        $0 = "pi-v2-partition[$part]";
+        $0 = "pi-v2-shard[$part]";
         my $current_info = '';
         my $warn_cb = $SIG{__WARN__} || sub { print STDERR @_ };
         local $SIG{__WARN__} = sub {
@@ -89,7 +89,7 @@ sub index_raw {
         my ($self, $bytes, $msgref, $artnum, $oid, $mid0, $mime) = @_;
         if (my $w = $self->{w}) {
                 print $w "$bytes $artnum $oid $mid0\n", $$msgref or die
-                        "failed to write partition $!\n";
+                        "failed to write shard $!\n";
                 $w->flush or die "failed to flush: $!\n";
         } else {
                 $$msgref = undef;