]> Sergey Matveev's repositories - public-inbox.git/commitdiff
lei note-event: ignore kw_changed exceptions
authorEric Wong <e@80x24.org>
Sun, 26 Sep 2021 00:02:32 +0000 (00:02 +0000)
committerEric Wong <e@80x24.org>
Sun, 26 Sep 2021 00:06:30 +0000 (00:06 +0000)
The note-event worker may see changes before a Xapian shard
commit happens, meaning keyword lookups fail as a result.
Just emit the request to the lei/store worker since it's a
fairly cheap operation at this point.

We'll try harder to look for kw changes, too, since
deduplication changes may lead to multiple docids being
resolved for a single message.

lib/PublicInbox/LeiNoteEvent.pm
lib/PublicInbox/LeiSearch.pm

index d24294850fd26c08c2ede469be448efd1f7b4a10..2a7b52c1348735bb2765b56670b36f803fda2e1e 100644 (file)
@@ -42,7 +42,9 @@ sub eml_event ($$$$) {
                $sto->wq_do('index_eml_only', $eml, $vmd, $xoids);
        } elsif ($state =~ /\Atag-(?:rw|ro)\z/) {
                my $docids = [];
-               my $c = $self->{lse}->kw_changed($eml, $vmd->{kw}, $docids);
+               my $c = eval {
+                       $self->{lse}->kw_changed($eml, $vmd->{kw}, $docids);
+               } // 1; # too new, assume changed since still to-be-committed.
                if (scalar @$docids) { # already in lei/store
                        $sto->wq_do('set_eml_vmd', undef, $vmd, $docids) if $c;
                } elsif (my $xoids = $self->{lei}->ale->xoids_for($eml)) {
index a10e6e1767755c4375d2249dd4799881869bcbfb..568277a6f40443217494e383b609f83f9c5d571f 100644 (file)
@@ -9,6 +9,7 @@ use parent qw(PublicInbox::ExtSearch); # PublicInbox::Search->reopen
 use PublicInbox::Search qw(xap_terms);
 use PublicInbox::ContentHash qw(content_digest content_hash);
 use PublicInbox::MID qw(mids mids_for_index);
+use Carp qw(croak);
 
 # get combined docid from over.num:
 # (not generic Xapian, only works with our sharding scheme)
@@ -131,14 +132,19 @@ sub xoids_for {
 # returns true if $eml is indexed by lei/store and keywords don't match
 sub kw_changed {
        my ($self, $eml, $new_kw_sorted, $docids) = @_;
+       my $cur_kw;
        if ($eml) {
                my $xoids = xoids_for($self, $eml) // return;
                $docids //= [];
                @$docids = sort { $a <=> $b } values %$xoids;
        }
-       my $cur_kw = eval { msg_keywords($self, $docids->[0]) };
-       die "E: #$docids->[0] keyword lookup failure: $@\n" if $@;
-
+       for my $id (@$docids) {
+               $cur_kw = eval { msg_keywords($self, $id) } and last;
+       }
+       if (!defined($cur_kw) && $@) {
+               $docids = join(', num:', @$docids);
+               croak "E: num:$docids keyword lookup failure: $@";
+       }
        # RFC 5550 sec 5.9 on the $Forwarded keyword states:
        # "Once set, the flag SHOULD NOT be cleared"
        if (exists($cur_kw->{forwarded}) &&