]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/SearchIdxShard.pm
searchidx: remove xref3 support for Xapian
[public-inbox.git] / lib / PublicInbox / SearchIdxShard.pm
1 # Copyright (C) 2018-2020 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # Internal interface for a single Xapian shard in V2 inboxes.
5 # See L<public-inbox-v2-format(5)> for more info on how we shard Xapian
6 package PublicInbox::SearchIdxShard;
7 use strict;
8 use v5.10.1;
9 use parent qw(PublicInbox::SearchIdx);
10 use bytes qw(length);
11 use IO::Handle (); # autoflush
12 use PublicInbox::Eml;
13
14 sub new {
15         my ($class, $v2w, $shard) = @_; # v2w may be ExtSearchIdx
16         my $ibx = $v2w->{ibx};
17         my $self = $ibx ? $class->SUPER::new($ibx, 1, $shard)
18                         : $class->eidx_shard_new($v2w, $shard);
19         # create the DB before forking:
20         $self->idx_acquire;
21         $self->set_metadata_once;
22         $self->idx_release;
23         $self->spawn_worker($v2w, $shard) if $v2w->{parallel};
24         $self;
25 }
26
27 sub spawn_worker {
28         my ($self, $v2w, $shard) = @_;
29         my ($r, $w);
30         pipe($r, $w) or die "pipe failed: $!\n";
31         $w->autoflush(1);
32         my $pid = fork;
33         defined $pid or die "fork failed: $!\n";
34         if ($pid == 0) {
35                 my $bnote = $v2w->atfork_child;
36                 close $w or die "failed to close: $!";
37
38                 # F_SETPIPE_SZ = 1031 on Linux; increasing the pipe size here
39                 # speeds V2Writable batch imports across 8 cores by nearly 20%
40                 fcntl($r, 1031, 1048576) if $^O eq 'linux';
41
42                 eval { shard_worker_loop($self, $v2w, $r, $shard, $bnote) };
43                 die "worker $shard died: $@\n" if $@;
44                 die "unexpected MM $self->{mm}" if $self->{mm};
45                 exit;
46         }
47         $self->{pid} = $pid;
48         $self->{w} = $w;
49         close $r or die "failed to close: $!";
50 }
51
52 sub eml ($$) {
53         my ($r, $len) = @_;
54         my $n = read($r, my $bref, $len) or die "read: $!\n";
55         $n == $len or die "short read: $n != $len\n";
56         PublicInbox::Eml->new(\$bref);
57 }
58
59 # this reads all the writes to $self->{w} from the parent process
60 sub shard_worker_loop ($$$$$) {
61         my ($self, $v2w, $r, $shard, $bnote) = @_;
62         $0 = "shard[$shard]";
63         $self->begin_txn_lazy;
64         while (my $line = readline($r)) {
65                 $v2w->{current_info} = "[$shard] $line";
66                 if ($line eq "commit\n") {
67                         $self->commit_txn_lazy;
68                 } elsif ($line eq "close\n") {
69                         $self->idx_release;
70                 } elsif ($line eq "barrier\n") {
71                         $self->commit_txn_lazy;
72                         # no need to lock < 512 bytes is atomic under POSIX
73                         print $bnote "barrier $shard\n" or
74                                         die "write failed for barrier $!\n";
75                 } elsif ($line =~ /\AD ([a-f0-9]{40,}) ([0-9]+)\n\z/s) {
76                         $self->remove_by_oid($1, $2 + 0);
77                 } elsif ($line =~ s/\A\+X //) {
78                         my ($len, $docid, $oid, $eidx_key) =
79                                                         split(/ /, $line, 4);
80                         $self->add_eidx_info($docid, $oid, $eidx_key,
81                                                         eml($r, $len));
82                 } elsif ($line =~ s/\A-X //) {
83                         my ($len, $docid, $oid, $eidx_key) =
84                                                         split(/ /, $line, 4);
85                         $self->remove_eidx_info($docid, $oid, $eidx_key,
86                                                         eml($r, $len));
87                 } else {
88                         chomp $line;
89                         my $eidx_key;
90                         if ($line =~ s/\AX(.+)\0//) {
91                                 $eidx_key = $1;
92                         }
93                         # n.b. $mid may contain spaces(!)
94                         my ($len, $bytes, $num, $oid, $ds, $ts, $tid, $mid)
95                                 = split(/ /, $line, 8);
96                         $self->begin_txn_lazy;
97                         my $smsg = bless {
98                                 bytes => $bytes,
99                                 num => $num + 0,
100                                 blob => $oid,
101                                 mid => $mid,
102                                 tid => $tid,
103                                 ds => $ds,
104                                 ts => $ts,
105                         }, 'PublicInbox::Smsg';
106                         $smsg->{eidx_key} = $eidx_key if defined($eidx_key);
107                         $self->add_message(eml($r, $len), $smsg);
108                 }
109         }
110         $self->worker_done;
111 }
112
113 sub index_raw {
114         my ($self, $msgref, $eml, $smsg, $ibx) = @_;
115         if (my $w = $self->{w}) {
116                 if ($ibx) {
117                         print $w 'X', $ibx->eidx_key, "\0" or die
118                                 "failed to write shard: $!\n";
119                 }
120                 $msgref //= \($eml->as_string);
121                 $smsg->{raw_bytes} //= length($$msgref);
122                 # mid must be last, it can contain spaces (but not LF)
123                 print $w join(' ', @$smsg{qw(raw_bytes bytes
124                                                 num blob ds ts tid mid)}),
125                         "\n", $$msgref or die "failed to write shard $!\n";
126         } else {
127                 if ($eml) {
128                         undef($$msgref) if $msgref;
129                 } else { # --xapian-only + --sequential-shard:
130                         $eml = PublicInbox::Eml->new($msgref);
131                 }
132                 $self->begin_txn_lazy;
133                 $smsg->{eidx_key} = $ibx->eidx_key if $ibx;
134                 $self->add_message($eml, $smsg);
135         }
136 }
137
138 sub shard_add_eidx_info {
139         my ($self, $docid, $oid, $xibx, $eml) = @_;
140         my $eidx_key = $xibx->eidx_key;
141         if (my $w = $self->{w}) {
142                 my $hdr = $eml->header_obj->as_string;
143                 my $len = length($hdr);
144                 print $w "+X $len $docid $oid $eidx_key\n", $hdr or
145                         die "failed to write shard: $!";
146         } else {
147                 $self->add_eidx_info($docid, $oid, $eidx_key, $eml);
148         }
149 }
150
151 sub shard_remove_eidx_info {
152         my ($self, $docid, $oid, $xibx, $eml) = @_;
153         my $eidx_key = $xibx->eidx_key;
154         if (my $w = $self->{w}) {
155                 my $hdr = $eml->header_obj->as_string;
156                 my $len = length($hdr);
157                 print $w "-X $len $docid $oid $eidx_key\n", $hdr or
158                         die "failed to write shard: $!";
159         } else {
160                 $self->remove_eidx_info($docid, $oid, $eidx_key, $eml);
161         }
162 }
163
164 sub atfork_child {
165         close $_[0]->{w} or die "failed to close write pipe: $!\n";
166 }
167
168 sub shard_barrier {
169         my ($self) = @_;
170         if (my $w = $self->{w}) {
171                 print $w "barrier\n" or die "failed to print: $!";
172         } else {
173                 $self->commit_txn_lazy;
174         }
175 }
176
177 sub shard_commit {
178         my ($self) = @_;
179         if (my $w = $self->{w}) {
180                 print $w "commit\n" or die "failed to write commit: $!";
181         } else {
182                 $self->commit_txn_lazy;
183         }
184 }
185
186 sub shard_close {
187         my ($self) = @_;
188         if (my $w = delete $self->{w}) {
189                 my $pid = delete $self->{pid} or die "no process to wait on\n";
190                 print $w "close\n" or die "failed to write to pid:$pid: $!\n";
191                 close $w or die "failed to close pipe for pid:$pid: $!\n";
192                 waitpid($pid, 0) == $pid or die "remote process did not finish";
193                 $? == 0 or die ref($self)." pid:$pid exited with: $?";
194         } else {
195                 die "transaction in progress $self\n" if $self->{txn};
196                 $self->idx_release if $self->{xdb};
197         }
198 }
199
200 sub shard_remove {
201         my ($self, $oid, $num) = @_;
202         if (my $w = $self->{w}) { # triggers remove_by_oid in a shard child
203                 print $w "D $oid $num\n" or die "failed to write remove $!";
204         } else { # same process
205                 $self->remove_by_oid($oid, $num);
206         }
207 }
208
209 1;