X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=lib%2FPublicInbox%2FSearchIdxShard.pm;h=c0f8be8964939e5c95aa33b4894b0bde8cc05d40;hb=f11e8e72fd42d3d8cbcf5207641d10470a92dcee;hp=544268819070c675bfa9d3e2a3edc92c11ffb2a2;hpb=592f8239dceb6604e538fd51e62bcce50d6e1972;p=public-inbox.git diff --git a/lib/PublicInbox/SearchIdxShard.pm b/lib/PublicInbox/SearchIdxShard.pm index 54426881..c0f8be89 100644 --- a/lib/PublicInbox/SearchIdxShard.pm +++ b/lib/PublicInbox/SearchIdxShard.pm @@ -1,7 +1,7 @@ # Copyright (C) 2018-2020 all contributors # License: AGPL-3.0+ -# used to interface with a single Xapian shard in V2 repos. +# Internal interface for a single Xapian shard in V2 inboxes. # See L for more info on how we shard Xapian package PublicInbox::SearchIdxShard; use strict; @@ -11,14 +11,14 @@ use IO::Handle (); # autoflush use PublicInbox::Eml; sub new { - my ($class, $v2writable, $shard) = @_; - my $ibx = $v2writable->{-inbox}; + my ($class, $v2w, $shard) = @_; + my $ibx = $v2w->{ibx}; my $self = $class->SUPER::new($ibx, 1, $shard); # create the DB before forking: - $self->_xdb_acquire; - $self->set_indexlevel; - $self->_xdb_release; - $self->spawn_worker($v2writable, $shard) if $v2writable->{parallel}; + $self->idx_acquire; + $self->set_metadata_once; + $self->idx_release; + $self->spawn_worker($v2w, $shard) if $v2w->{parallel}; $self; } @@ -47,6 +47,7 @@ sub spawn_worker { close $r or die "failed to close: $!"; } +# this reads all the writes to $self->{w} from the parent process sub shard_worker_loop ($$$$$) { my ($self, $v2w, $r, $shard, $bnote) = @_; $0 = "pi-v2-shard[$shard]"; @@ -56,7 +57,7 @@ sub shard_worker_loop ($$$$$) { if ($line eq "commit\n") { $self->commit_txn_lazy; } elsif ($line eq "close\n") { - $self->_xdb_release; + $self->idx_release; } elsif ($line eq "barrier\n") { $self->commit_txn_lazy; # no need to lock < 512 bytes is atomic under POSIX @@ -87,18 +88,21 @@ sub shard_worker_loop ($$$$$) { $self->worker_done; } -# called by V2Writable sub index_raw { - my ($self, $msgref, $mime, $smsg) = @_; + my ($self, $msgref, $eml, $smsg) = @_; if (my $w = $self->{w}) { # mid must be last, it can contain spaces (but not LF) print $w join(' ', @$smsg{qw(raw_bytes bytes num blob ds ts mid)}), "\n", $$msgref or die "failed to write shard $!\n"; } else { - $$msgref = undef; + if ($eml) { + undef $$msgref; + } else { # --xapian-only + --sequential-shard: + $eml = PublicInbox::Eml->new($msgref); + } $self->begin_txn_lazy; - $self->add_message($mime, $smsg); + $self->add_message($eml, $smsg); } } @@ -106,8 +110,7 @@ sub atfork_child { close $_[0]->{w} or die "failed to close write pipe: $!\n"; } -# called by V2Writable: -sub remote_barrier { +sub shard_barrier { my ($self) = @_; if (my $w = $self->{w}) { print $w "barrier\n" or die "failed to print: $!"; @@ -116,4 +119,36 @@ sub remote_barrier { } } +sub shard_commit { + my ($self) = @_; + if (my $w = $self->{w}) { + print $w "commit\n" or die "failed to write commit: $!"; + } else { + $self->commit_txn_lazy; + } +} + +sub shard_close { + my ($self) = @_; + if (my $w = delete $self->{w}) { + my $pid = delete $self->{pid} or die "no process to wait on\n"; + print $w "close\n" or die "failed to write to pid:$pid: $!\n"; + close $w or die "failed to close pipe for pid:$pid: $!\n"; + waitpid($pid, 0) == $pid or die "remote process did not finish"; + $? == 0 or die ref($self)." pid:$pid exited with: $?"; + } else { + die "transaction in progress $self\n" if $self->{txn}; + $self->idx_release if $self->{xdb}; + } +} + +sub shard_remove { + my ($self, $oid, $num) = @_; + if (my $w = $self->{w}) { # triggers remove_by_oid in a shard child + print $w "D $oid $num\n" or die "failed to write remove $!"; + } else { # same process + $self->remove_by_oid($oid, $num); + } +} + 1;