]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/SearchIdxShard.pm
searchidxshard: ensure we set indexlevel on shard[0]
[public-inbox.git] / lib / PublicInbox / SearchIdxShard.pm
index 21e81b166b8b29194fdbe354ce3afb6a1d6ea34a..1ea01095c4fa6829fd6dc914cefdb0da3dc23f24 100644 (file)
@@ -11,9 +11,11 @@ use IO::Handle (); # autoflush
 
 sub new {
        my ($class, $v2writable, $shard) = @_;
-       my $self = $class->SUPER::new($v2writable->{-inbox}, 1, $shard);
+       my $ibx = $v2writable->{-inbox};
+       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;
@@ -67,19 +69,19 @@ sub shard_worker_loop ($$$$$) {
                        $self->remove_by_oid($oid, $mid);
                } else {
                        chomp $line;
-                       my ($bytes, $num, $blob, $mid, $autime, $cotime) =
+                       my ($bytes, $num, $blob, $mid, $ds, $ts) =
                                                        split(/ /, $line);
                        $self->begin_txn_lazy;
                        my $n = read($r, my $msg, $bytes) or die "read: $!\n";
                        $n == $bytes or die "short read: $n != $bytes\n";
                        my $mime = PublicInbox::MIME->new(\$msg);
-                       $self->{autime} = $autime;
-                       $self->{cotime} = $cotime;
                        my $smsg = bless {
                                bytes => $bytes,
                                num => $num + 0,
                                blob => $blob,
                                mid => $mid,
+                               ds => $ds,
+                               ts => $ts,
                        }, 'PublicInbox::Smsg';
                        $self->add_message($mime, $smsg);
                }
@@ -89,17 +91,13 @@ sub shard_worker_loop ($$$$$) {
 
 # called by V2Writable
 sub index_raw {
-       my ($self, $msgref, $mime, $smsg, $times) = @_;
-       my $at = $times->{autime} // time;
-       my $ct = $times->{cotime} // time;
+       my ($self, $msgref, $mime, $smsg) = @_;
        if (my $w = $self->{w}) {
-               print $w join(' ', @$smsg{qw(bytes num blob mid)}, $at, $ct),
+               print $w join(' ', @$smsg{qw(bytes num blob mid ds ts)}),
                        "\n", $$msgref or die "failed to write shard $!\n";
        } else {
                $$msgref = undef;
                $self->begin_txn_lazy;
-               $self->{autime} = $at;
-               $self->{cotime} = $ct;
                $self->add_message($mime, $smsg);
        }
 }