manticoresearch icon indicating copy to clipboard operation
manticoresearch copied to clipboard

WARNING: RotateIndexMT error - failed to rename lock

Open KirbyDE opened this issue 1 year ago • 16 comments

Describe the bug Sometimes tables fail to rotate and become unusable / missing after indexer run

To Reproduce This seems to happen every now and then with various tables but unfurtunately it is not really reproducable.

Expected behavior Tables rotate without issues and don't become unusable

Describe the environment:

  • Manticore Search version (top line in output of bin/searchd -v or bin/indexer -v): e.g. Manticore 6.2.12 dc5144d35@230822
  • OS version (uname -a if on a Unix-like system): Ubuntu 22.04

Messages from log files: WARNING: RotateIndexMT error: table <redacted>, error rename to '.new' failed: failed to rename lock /var/lib/manticore/<redacted>.new.spl to /var/lib/manticore/<redacted>.spl, fd=85, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE

Additional context To me this looks like a timing issue / race condition when multiple indexes finish rebuild at the same time

KirbyDE avatar Jan 11 '24 15:01 KirbyDE

Hello. Thanks for letting us know! Do I understand it right that you run multiple indexer --rotate commands with different tables and they finish at the same time which causes this issue?

Could you run set global log_level=debug in the instance, wait until the issue manifests again and share the searchd log?

sanikolaev avatar Jan 11 '24 15:01 sanikolaev

Yes, we are running multiple indexer --rotate commands for distinct tables at the same time. I've got no evidence so far that they are (sometimes) finishing at the same time, that was just an assumption.

I've set log level to debugvv (via systemd unit), will have to wait to see when the issue reoccurs.

KirbyDE avatar Jan 11 '24 16:01 KirbyDE

debugvv is too verbose you need to set debug verbosity to investigate this issue

tomatolog avatar Jan 11 '24 16:01 tomatolog

We experienced the same issue on another instance (which unfortunately did not have debug enabled at that time yet):

[Wed Jan 17 19:00:02.664 2024] [4033626] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jan 17 19:00:02.730 2024] [4033629] rotating table '<table1>': started
[Wed Jan 17 19:00:02.731 2024] [4033629] RW-idx for rename to .old, acquiring...
[Wed Jan 17 19:00:02.731 2024] [4033629] RW-idx for rename to .old, acquired...
[Wed Jan 17 19:00:02.732 2024] [4033629] rotating table '<table1>': success
[Wed Jan 17 19:00:02.732 2024] [4033629] rotating table '<table2>': started
[Wed Jan 17 19:00:02.733 2024] [4033629] RW-idx for rename to .old, acquiring...
[Wed Jan 17 19:00:02.733 2024] [4033629] RW-idx for rename to .old, acquired...
[Wed Jan 17 19:00:02.734 2024] [4033629] rotating table '<table2>': success
[Wed Jan 17 19:00:02.734 2024] [4033629] rotating table: all tables done
[Wed Jan 17 19:00:02.741 2024] [4033626] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jan 17 19:00:02.804 2024] [4033627] rotating table '<table3>': started
[Wed Jan 17 19:00:02.805 2024] [4033627] RW-idx for rename to .old, acquiring...
[Wed Jan 17 19:00:02.805 2024] [4033627] RW-idx for rename to .old, acquired...
[Wed Jan 17 19:00:02.807 2024] [4033627] rotating table '<table3>': success
[Wed Jan 17 19:00:02.807 2024] [4033627] rotating table '<table4>': started
[Wed Jan 17 19:00:02.808 2024] [4033627] RW-idx for rename to .old, acquiring...
[Wed Jan 17 19:00:02.808 2024] [4033627] RW-idx for rename to .old, acquired...
[Wed Jan 17 19:00:02.809 2024] [4033627] rotating table '<table4>': success
[Wed Jan 17 19:00:02.809 2024] [4033627] rotating table '<table5>': started
[Wed Jan 17 19:00:02.809 2024] [4033626] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Wed Jan 17 19:00:02.814 2024] [4033627] RW-idx for rename to .old, acquiring...
[Wed Jan 17 19:00:02.814 2024] [4033627] RW-idx for rename to .old, acquired...
[Wed Jan 17 19:00:02.814 2024] [4033627] WARNING: RotateIndexMT error: table <table5>, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/<table5>.new.spl to /var/lib/manticore/data/<table5>.spl, fd=138, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Wed Jan 17 19:00:02.816 2024] [4033627] WARNING: table '<table5>': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/<table5>.new.spl to /var/lib/manticore/data/<table5>.spl, fd=138, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE

To me this looks like the first 4 tables produce this log sequence:

  1. SIGHUP
  2. Rotate Start
  3. Rotate Success

But at Wed Jan 17 19:00:02.809 2024 another SIGHUP was received while rotation for table 5 was already in progress.

KirbyDE avatar Jan 18 '24 10:01 KirbyDE

A few days ago this happend again - this time debug was enabled:

[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: seamless rotate local table <table>
[Thu Apr 11 08:45:03.206 2024] [75705] rotating table '<table>': started
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.207 2024] [75705] WARNING: missing /path/to/table.new.spidx; secondary index(es) disabled, consider using ALTER REBUILD SECONDARY to recover the secondary index
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: Locking the table via file /path/to/table.new.spl
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: lock /path/to/table.new.spl success
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: CSphIndex_VLN::Preread invoked '<table>'(/path/to/table.new)
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: activate new table
[Thu Apr 11 08:45:03.207 2024] [75705] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.207 2024] [75705] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.208 2024] [75702] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Thu Apr 11 08:45:03.210 2024] [75705] WARNING: RotateIndexMT error: table <table>, error rename to '.new' failed: failed to rename lock /path/to/table.new.spl to /path/to/table.spl, fd=103, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu Apr 11 08:45:03.211 2024] [75705] DEBUG: Unlocking the table (lock /path/to/table.spl)
[Thu Apr 11 08:45:03.211 2024] [75705] DEBUG: File ID ok, closing lock FD 217, unlinking /path/to/table.spl
[Thu Apr 11 08:45:03.211 2024] [75705] WARNING: table '<table>': rename to '.new' failed: failed to rename lock /path/to/table.new.spl to /path/to/table.spl, fd=103, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu Apr 11 08:45:03.211 2024] [75705] rotating table: all tables done
[Thu Apr 11 08:45:03.213 2024] [75705] DEBUG: Unlocking the table (lock /path/to/table.new.spl)
[Thu Apr 11 08:45:03.213 2024] [75705] DEBUG: File ID ok, closing lock FD 103, unlinking /path/to/table.new.spl
[Thu Apr 11 08:45:03.226 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=1)
[Thu Apr 11 08:45:03.226 2024] [75703] DEBUG: CheckRotate invoked

KirbyDE avatar Apr 19 '24 11:04 KirbyDE

I've discussed it with the team. It's still not clear what may be the root cause. It would be great to have an MRE which reproduces the issue.

sanikolaev avatar May 06 '24 05:05 sanikolaev

@KirbyDE can it be that you have some concurrency when building the table meaning that when a previous indexation is not yet fully complete, another one is already running?

sanikolaev avatar May 06 '24 05:05 sanikolaev

I'd be happy if I could provide a MRE, but unfortunately I can't really reproduce the issue as it just happens sporadically.

Concurrent rebuilds on the same table are very unlikely: Rebuilds run every 15 minutes and finish within a few seconds.

Here is the full log of the last incident inculding the last logged line from the previous rebuild:

[Thu Apr 11 08:30:04.428 2024] [75705] nothing to rotate after SIGHUP
[Thu Apr 11 08:45:03.155 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu Apr 11 08:45:03.155 2024] [75705] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbforum_post_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_post_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.202 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: will rotate esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: will rotate esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: will rotate esoterikforum_de_vbforum_post_delta
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: TaskRotation starts with 3 deferred tables
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: seamless rotate local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.203 2024] [75705] rotating table 'esoterikforum_de_vbblog_blogcomment_delta': started
[Thu Apr 11 08:45:03.203 2024] [75705] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.new.spl
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.new.spl success
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbblog_blogcomment_delta'(/var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.new)
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: activate new table
[Thu Apr 11 08:45:03.204 2024] [75705] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.204 2024] [75705] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbblog_blogcomment_delta': applying other tables killlists
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbblog_blogcomment_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbblog_blogcomment_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbblog_blogcomment_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.204 2024] [75705] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.old
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.old.spl)
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: File ID ok, closing lock FD 74, unlinking /var/lib/manticore/data/esoterikforum_de/vbblog_blogcommentdelta.old.spl
[Thu Apr 11 08:45:03.205 2024] [75705] rotating table 'esoterikforum_de_vbblog_blogcomment_delta': success
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: seamless rotate local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.205 2024] [75705] rotating table 'esoterikforum_de_vbforum_visitormessage_delta': started
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.new.spl
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.new.spl success
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_visitormessage_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.new)
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.205 2024] [75705] DEBUG: activate new table
[Thu Apr 11 08:45:03.205 2024] [75705] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.205 2024] [75705] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbforum_visitormessage_delta': applying other tables killlists
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbforum_visitormessage_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.old
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.old.spl)
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: File ID ok, closing lock FD 108, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_visitormessagedelta.old.spl
[Thu Apr 11 08:45:03.206 2024] [75705] rotating table 'esoterikforum_de_vbforum_visitormessage_delta': success
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: seamless rotate local table esoterikforum_de_vbforum_post_delta
[Thu Apr 11 08:45:03.206 2024] [75705] rotating table 'esoterikforum_de_vbforum_post_delta': started
[Thu Apr 11 08:45:03.206 2024] [75705] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.207 2024] [75705] WARNING: missing /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spidx; secondary index(es) disabled, consider using ALTER REBUILD SECONDARY to recover the secondary index
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl success
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_post_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new)
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.207 2024] [75705] DEBUG: activate new table
[Thu Apr 11 08:45:03.207 2024] [75705] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.207 2024] [75705] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.208 2024] [75702] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Thu Apr 11 08:45:03.210 2024] [75705] WARNING: RotateIndexMT error: table esoterikforum_de_vbforum_post_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl to /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.spl, fd=103, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu Apr 11 08:45:03.211 2024] [75705] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.spl)
[Thu Apr 11 08:45:03.211 2024] [75705] DEBUG: File ID ok, closing lock FD 217, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.spl
[Thu Apr 11 08:45:03.211 2024] [75705] WARNING: table 'esoterikforum_de_vbforum_post_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl to /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.spl, fd=103, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu Apr 11 08:45:03.211 2024] [75705] rotating table: all tables done
[Thu Apr 11 08:45:03.213 2024] [75705] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl)
[Thu Apr 11 08:45:03.213 2024] [75705] DEBUG: File ID ok, closing lock FD 103, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_postdelta.new.spl
[Thu Apr 11 08:45:03.226 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=1)
[Thu Apr 11 08:45:03.226 2024] [75703] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: add deferred table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.270 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: add deferred table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: will rotate esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: will rotate esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: TaskRotation starts with 2 deferred tables
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: seamless rotate local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.271 2024] [75703] rotating table 'esoterikforum_de_vbblog_blogentry_delta': started
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.new.spl
[Thu Apr 11 08:45:03.271 2024] [75703] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.new.spl success
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbblog_blogentry_delta'(/var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.new)
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: activate new table
[Thu Apr 11 08:45:03.272 2024] [75703] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.272 2024] [75703] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbblog_blogentry_delta': applying other tables killlists
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbblog_blogentry_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbblog_blogentry_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbblog_blogentry_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.272 2024] [75703] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.old
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.old.spl)
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: File ID ok, closing lock FD 156, unlinking /var/lib/manticore/data/esoterikforum_de/vbblog_blogentrydelta.old.spl
[Thu Apr 11 08:45:03.273 2024] [75703] rotating table 'esoterikforum_de_vbblog_blogentry_delta': success
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: seamless rotate local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.273 2024] [75703] rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': started
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.new.spl
[Thu Apr 11 08:45:03.273 2024] [75703] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.new.spl success
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_socialgroupmessage_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.new)
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: activate new table
[Thu Apr 11 08:45:03.274 2024] [75703] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.274 2024] [75703] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.274 2024] [75703] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.old
[Thu Apr 11 08:45:03.275 2024] [75703] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.old.spl)
[Thu Apr 11 08:45:03.275 2024] [75703] DEBUG: File ID ok, closing lock FD 184, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupmessagedelta.old.spl
[Thu Apr 11 08:45:03.275 2024] [75703] rotating table 'esoterikforum_de_vbforum_socialgroupmessage_delta': success
[Thu Apr 11 08:45:03.275 2024] [75703] rotating table: all tables done
[Thu Apr 11 08:45:03.293 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu Apr 11 08:45:03.293 2024] [75705] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: will rotate esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.336 2024] [75705] DEBUG: will rotate esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.336 2024] [75703] DEBUG: TaskRotation starts with 2 deferred tables
[Thu Apr 11 08:45:03.336 2024] [75703] DEBUG: seamless rotate local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.336 2024] [75703] rotating table 'esoterikforum_de_vbforum_socialgroup_delta': started
[Thu Apr 11 08:45:03.336 2024] [75703] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.new.spl
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.new.spl success
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_socialgroup_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.new)
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: activate new table
[Thu Apr 11 08:45:03.337 2024] [75703] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.337 2024] [75703] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.337 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroup_delta': applying other tables killlists
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroup_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.old
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.old.spl)
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: File ID ok, closing lock FD 236, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_socialgroupdelta.old.spl
[Thu Apr 11 08:45:03.338 2024] [75703] rotating table 'esoterikforum_de_vbforum_socialgroup_delta': success
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: seamless rotate local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.338 2024] [75703] rotating table 'esoterikforum_de_vbforum_forum_delta': started
[Thu Apr 11 08:45:03.338 2024] [75703] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.new.spl
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.new.spl success
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_forum_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.new)
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: activate new table
[Thu Apr 11 08:45:03.339 2024] [75703] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.339 2024] [75703] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_forum_delta': applying other tables killlists
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_forum_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_forum_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_forum_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.339 2024] [75703] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.340 2024] [75703] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.old
[Thu Apr 11 08:45:03.340 2024] [75703] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.old.spl)
[Thu Apr 11 08:45:03.340 2024] [75703] DEBUG: File ID ok, closing lock FD 220, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_forumdelta.old.spl
[Thu Apr 11 08:45:03.340 2024] [75703] rotating table 'esoterikforum_de_vbforum_forum_delta': success
[Thu Apr 11 08:45:03.340 2024] [75703] rotating table: all tables done
[Thu Apr 11 08:45:03.719 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu Apr 11 08:45:03.719 2024] [75705] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: add deferred table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.759 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:03.760 2024] [75705] DEBUG: will rotate esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.760 2024] [75704] DEBUG: TaskRotation starts with 1 deferred tables
[Thu Apr 11 08:45:03.760 2024] [75704] DEBUG: seamless rotate local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:03.760 2024] [75704] rotating table 'esoterikforum_de_vbcms_article_delta': started
[Thu Apr 11 08:45:03.760 2024] [75704] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.new.spl
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.new.spl success
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbcms_article_delta'(/var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.new)
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:03.761 2024] [75702] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: activate new table
[Thu Apr 11 08:45:03.761 2024] [75704] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:03.761 2024] [75704] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:03.761 2024] [75704] DEBUG: rotating table 'esoterikforum_de_vbcms_article_delta': applying other tables killlists
[Thu Apr 11 08:45:03.762 2024] [75704] DEBUG: rotating table 'esoterikforum_de_vbcms_article_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:03.762 2024] [75704] DEBUG: rotating table 'esoterikforum_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:03.762 2024] [75704] DEBUG: rotating table 'esoterikforum_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:03.762 2024] [75704] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:03.762 2024] [75704] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.old
[Thu Apr 11 08:45:03.763 2024] [75704] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.old.spl)
[Thu Apr 11 08:45:03.763 2024] [75704] DEBUG: File ID ok, closing lock FD 239, unlinking /var/lib/manticore/data/esoterikforum_de/vbcms_articledelta.old.spl
[Thu Apr 11 08:45:03.764 2024] [75704] rotating table 'esoterikforum_de_vbcms_article_delta': success
[Thu Apr 11 08:45:03.764 2024] [75704] rotating table: all tables done
[Thu Apr 11 08:45:04.262 2024] [75704] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:04.309 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: add deferred table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:04.310 2024] [75704] DEBUG: will rotate esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.310 2024] [75705] DEBUG: TaskRotation starts with 1 deferred tables
[Thu Apr 11 08:45:04.310 2024] [75705] DEBUG: seamless rotate local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.310 2024] [75705] rotating table 'esoterikforum_de_vbcms_staticpage_delta': started
[Thu Apr 11 08:45:04.310 2024] [75705] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.new.spl
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.new.spl success
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbcms_staticpage_delta'(/var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.new)
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: activate new table
[Thu Apr 11 08:45:04.311 2024] [75705] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:04.311 2024] [75705] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbcms_staticpage_delta': applying other tables killlists
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbcms_staticpage_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: rotating table 'esoterikforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:04.311 2024] [75705] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:04.312 2024] [75705] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.old
[Thu Apr 11 08:45:04.312 2024] [75705] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.old.spl)
[Thu Apr 11 08:45:04.312 2024] [75705] DEBUG: File ID ok, closing lock FD 238, unlinking /var/lib/manticore/data/esoterikforum_de/vbcms_staticpagedelta.old.spl
[Thu Apr 11 08:45:04.312 2024] [75705] rotating table 'esoterikforum_de_vbcms_staticpage_delta': success
[Thu Apr 11 08:45:04.312 2024] [75705] rotating table: all tables done
[Thu Apr 11 08:45:04.705 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu Apr 11 08:45:04.705 2024] [75703] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: add deferred table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:04.748 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: will rotate esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: TaskRotation starts with 1 deferred tables
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: seamless rotate local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:04.749 2024] [75703] rotating table 'esoterikforum_de_vbforum_thread_delta': started
[Thu Apr 11 08:45:04.749 2024] [75703] DEBUG: prealloc enough RAM and lock new table
[Thu Apr 11 08:45:04.750 2024] [75703] DEBUG: Locking the table via file /var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.new.spl
[Thu Apr 11 08:45:04.750 2024] [75703] DEBUG: lock /var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.new.spl success
[Thu Apr 11 08:45:04.750 2024] [75703] DEBUG: CSphIndex_VLN::Preread invoked 'esoterikforum_de_vbforum_thread_delta'(/var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.new)
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: Preread successfully finished
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: activate new table
[Thu Apr 11 08:45:04.751 2024] [75703] RW-idx for rename to .old, acquiring...
[Thu Apr 11 08:45:04.751 2024] [75703] RW-idx for rename to .old, acquired...
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_thread_delta': applying other tables killlists
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_thread_delta': applying other tables killlists... DONE
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: rotating table 'esoterikforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu Apr 11 08:45:04.751 2024] [75703] DEBUG: all went fine; swap them
[Thu Apr 11 08:45:04.752 2024] [75703] DEBUG: unlink /var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.old
[Thu Apr 11 08:45:04.754 2024] [75703] DEBUG: Unlocking the table (lock /var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.old.spl)
[Thu Apr 11 08:45:04.754 2024] [75703] DEBUG: File ID ok, closing lock FD 245, unlinking /var/lib/manticore/data/esoterikforum_de/vbforum_threaddelta.old.spl
[Thu Apr 11 08:45:04.754 2024] [75703] rotating table 'esoterikforum_de_vbforum_thread_delta': success
[Thu Apr 11 08:45:04.754 2024] [75703] rotating table: all tables done
[Thu Apr 11 08:45:05.249 2024] [75702] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu Apr 11 08:45:05.249 2024] [75703] DEBUG: CheckRotate invoked
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  testindex
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table testindex
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum_delta
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_forum
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_post
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup_delta
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroup
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:05.289 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_socialgroupmessage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_thread
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbforum_visitormessage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogcomment
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbblog_blogentry
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_article
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage_delta
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_vbcms_staticpage
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: keep existing table  esoterikforum_de_searchterms
[Thu Apr 11 08:45:05.290 2024] [75703] DEBUG: Keep existing before local table esoterikforum_de_searchterms
[Thu Apr 11 08:45:05.290 2024] [75703] nothing to rotate after SIGHUP

Could the issue be related to killlist updates? As far as I can see from the logs, killlists are also applied to other tables so it could happen that such an apply action happens on a table that is being rebuild at the same time?

KirbyDE avatar May 06 '24 08:05 KirbyDE

could you add indexer events to another log with timestamps in format similar to searchd.log has, like

indexer ... | tee -a indexer.log

not sure how to add timestamp to this pipeline but after we will line up indexer.log with searchd.log events we could figure out what breaks index rotation in the daemon

If you issue multiple indexer it could be better to add indexer_pid along with event timestamp

tomatolog avatar May 06 '24 14:05 tomatolog

I think I managed to get the desired log by pipeing indexer output through a little script that adds timestamps and PID

This log now looks like

[Tue May 7 14:45:02.843 2024] [2064501] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate esoterikforum_de_vbcms_article_delta esoterikforum_de_vbcms_staticpage_delta
[Tue May 7 14:45:02.848 2024] [2064506] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate esoterikforum_de_vbforum_visitormessage_delta esoterikforum_de_vbforum_thread_delta
[Tue May 7 14:45:02.854 2024] [2064498] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate esoterikforum_de_vbblog_blogcomment_delta esoterikforum_de_vbblog_blogentry_delta
[Tue May 7 14:45:02.866 2024] [2064508] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate esoterikforum_de_vbforum_socialgroupmessage_delta esoterikforum_de_vbforum_forum_delta
[Tue May 7 14:45:02.868 2024] [2064510] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate esoterikforum_de_vbforum_post_delta esoterikforum_de_vbforum_socialgroup_delta
[Tue May 7 14:45:02.907 2024] [2064501] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Tue May 7 14:45:02.907 2024] [2064501] Copyright (c) 2001-2016, Andrew Aksyonoff
[Tue May 7 14:45:02.907 2024] [2064501] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Tue May 7 14:45:02.907 2024] [2064501] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Tue May 7 14:45:02.907 2024] [2064501] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Tue May 7 14:45:02.907 2024] [2064501] indexing table 'esoterikforum_de_vbcms_article_delta'...
[Tue May 7 14:45:02.913 2024] [2064498] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Tue May 7 14:45:02.913 2024] [2064498] Copyright (c) 2001-2016, Andrew Aksyonoff
[Tue May 7 14:45:02.913 2024] [2064498] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Tue May 7 14:45:02.913 2024] [2064498] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Tue May 7 14:45:02.913 2024] [2064498] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Tue May 7 14:45:02.913 2024] [2064498] indexing table 'esoterikforum_de_vbblog_blogcomment_delta'...
[Tue May 7 14:45:02.947 2024] [2064508] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Tue May 7 14:45:02.947 2024] [2064508] Copyright (c) 2001-2016, Andrew Aksyonoff
[Tue May 7 14:45:02.947 2024] [2064508] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Tue May 7 14:45:02.947 2024] [2064508] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Tue May 7 14:45:02.947 2024] [2064508] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Tue May 7 14:45:02.947 2024] [2064508] indexing table 'esoterikforum_de_vbforum_socialgroupmessage_delta'...
[Tue May 7 14:45:02.953 2024] [2064510] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Tue May 7 14:45:02.953 2024] [2064510] Copyright (c) 2001-2016, Andrew Aksyonoff
[Tue May 7 14:45:02.953 2024] [2064510] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Tue May 7 14:45:02.953 2024] [2064510] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Tue May 7 14:45:02.953 2024] [2064510] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Tue May 7 14:45:02.953 2024] [2064510] indexing table 'esoterikforum_de_vbforum_post_delta'...
[Tue May 7 14:45:02.988 2024] [2064506] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Tue May 7 14:45:02.988 2024] [2064506] Copyright (c) 2001-2016, Andrew Aksyonoff
[Tue May 7 14:45:02.988 2024] [2064506] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Tue May 7 14:45:02.988 2024] [2064506] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Tue May 7 14:45:02.988 2024] [2064506] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Tue May 7 14:45:02.988 2024] [2064506] indexing table 'esoterikforum_de_vbforum_visitormessage_delta'...
[Tue May 7 14:45:03.098 2024] [2064510] collected 148 docs, 0.0 MB
[Tue May 7 14:45:03.100 2024] [2064510] creating secondary index
[...]

Is that want you wanted to have? If so I'll provide that log when the issue appears again.

KirbyDE avatar May 07 '24 12:05 KirbyDE

yes that is but I do not see the indexer rotation message like this

...
rotating tables: successfully sent SIGHUP to searchd (pid=68341).

just to make sure that you cut the full log but that message exists and we could line up indexation finish and the daemon rotation events

tomatolog avatar May 07 '24 13:05 tomatolog

It happend again, unfortunately this time on an instance that did not have debug logging enabled (I've enabled debug logging for this instance now as well).

I am posting the logs anyway, maybe they are still somewhat useful?

indexer.log

[Wed May 8 08:45:02.778 2024] [79287] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_socialgroup_delta 
[Wed May 8 08:45:02.779 2024] [79292] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_post_delta 
[Wed May 8 08:45:02.782 2024] [79270] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_visitormessage_delta 
[Wed May 8 08:45:02.792 2024] [79282] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_thread_delta 
[Wed May 8 08:45:02.798 2024] [79273] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbcms_article_delta 
[Wed May 8 08:45:02.801 2024] [79290] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbcms_staticpage_delta 
[Wed May 8 08:45:02.806 2024] [79284] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_socialgroupmessage_delta 
[Wed May 8 08:45:02.822 2024] [79294] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_forum_delta 
[Wed May 8 08:45:02.833 2024] [79273] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.833 2024] [79273] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.833 2024] [79273] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.833 2024] [79273] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.834 2024] [79273] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.834 2024] [79273] indexing table 'seatforum_de_vbcms_article_delta'...
[Wed May 8 08:45:02.861 2024] [79284] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.861 2024] [79284] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.861 2024] [79284] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.861 2024] [79284] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.861 2024] [79284] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.861 2024] [79284] indexing table 'seatforum_de_vbforum_socialgroupmessage_delta'...
[Wed May 8 08:45:02.872 2024] [79282] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.872 2024] [79282] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.872 2024] [79282] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.872 2024] [79282] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.872 2024] [79282] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.872 2024] [79282] indexing table 'seatforum_de_vbforum_thread_delta'...
[Wed May 8 08:45:02.892 2024] [79270] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.892 2024] [79270] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.892 2024] [79270] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.892 2024] [79270] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.892 2024] [79270] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.892 2024] [79270] indexing table 'seatforum_de_vbforum_visitormessage_delta'...
[Wed May 8 08:45:02.900 2024] [79287] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.900 2024] [79287] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.900 2024] [79287] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.900 2024] [79287] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.900 2024] [79287] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.900 2024] [79287] indexing table 'seatforum_de_vbforum_socialgroup_delta'...
[Wed May 8 08:45:02.904 2024] [79292] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.904 2024] [79292] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.904 2024] [79292] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.904 2024] [79292] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.904 2024] [79292] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.904 2024] [79292] indexing table 'seatforum_de_vbforum_post_delta'...
[Wed May 8 08:45:02.907 2024] [79294] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.907 2024] [79294] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.907 2024] [79294] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.907 2024] [79294] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.907 2024] [79294] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.907 2024] [79294] indexing table 'seatforum_de_vbforum_forum_delta'...
[Wed May 8 08:45:02.950 2024] [79290] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Wed May 8 08:45:02.950 2024] [79290] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed May 8 08:45:02.950 2024] [79290] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed May 8 08:45:02.950 2024] [79290] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Wed May 8 08:45:02.950 2024] [79290] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed May 8 08:45:02.950 2024] [79290] indexing table 'seatforum_de_vbcms_staticpage_delta'...
[Wed May 8 08:45:03.123 2024] [79284] collected 0 docs, 0.0 MB
[Wed May 8 08:45:03.126 2024] [79284] creating secondary index
[Wed May 8 08:45:03.136 2024] [79292] collected 29 docs, 0.0 MB
[Wed May 8 08:45:03.137 2024] [79284] total 0 docs, 0 bytes
[Wed May 8 08:45:03.137 2024] [79284] total 0.164 sec, 0 bytes/sec, 0.00 docs/sec
[Wed May 8 08:45:03.137 2024] [79284] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.137 2024] [79284] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.137 2024] [79284] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.137 2024] [79284] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.143 2024] [79270] collected 0 docs, 0.0 MB
[Wed May 8 08:45:03.146 2024] [79292] creating secondary index
[Wed May 8 08:45:03.151 2024] [79292] WARNING: kill-list not empty but no killlist_target specified
[Wed May 8 08:45:03.151 2024] [79292] creating lookup: 0.0 Kdocs, 100.0% done
[Wed May 8 08:45:03.153 2024] [79292] sorted 0.0 Mhits, 100.0% done
[Wed May 8 08:45:03.156 2024] [79270] creating secondary index
[Wed May 8 08:45:03.160 2024] [79292] total 29 docs, 19738 bytes
[Wed May 8 08:45:03.160 2024] [79292] total 0.189 sec, 103988 bytes/sec, 152.78 docs/sec
[Wed May 8 08:45:03.160 2024] [79292] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.160 2024] [79292] total 70 reads, 0.001 sec, 101.2 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.160 2024] [79292] total 18 writes, 0.000 sec, 7.8 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.160 2024] [79292] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.166 2024] [79270] total 0 docs, 0 bytes
[Wed May 8 08:45:03.166 2024] [79270] total 0.156 sec, 0 bytes/sec, 0.00 docs/sec
[Wed May 8 08:45:03.166 2024] [79270] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.166 2024] [79270] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.166 2024] [79270] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.166 2024] [79270] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.180 2024] [79294] collected 8 docs, 0.0 MB
[Wed May 8 08:45:03.204 2024] [79294] creating secondary index
[Wed May 8 08:45:03.204 2024] [79294] WARNING: kill-list not empty but no killlist_target specified
[Wed May 8 08:45:03.204 2024] [79294] creating lookup: 0.0 Kdocs, 100.0% done
[Wed May 8 08:45:03.208 2024] [79294] sorted 0.0 Mhits, 100.0% done
[Wed May 8 08:45:03.212 2024] [79294] total 8 docs, 694 bytes
[Wed May 8 08:45:03.212 2024] [79294] total 0.201 sec, 3446 bytes/sec, 39.73 docs/sec
[Wed May 8 08:45:03.212 2024] [79294] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.212 2024] [79294] total 70 reads, 0.001 sec, 100.2 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.212 2024] [79294] total 18 writes, 0.000 sec, 0.6 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.212 2024] [79294] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.220 2024] [79287] collected 0 docs, 0.0 MB
[Wed May 8 08:45:03.228 2024] [79287] creating secondary index
[Wed May 8 08:45:03.236 2024] [79287] total 0 docs, 0 bytes
[Wed May 8 08:45:03.236 2024] [79287] total 0.218 sec, 0 bytes/sec, 0.00 docs/sec
[Wed May 8 08:45:03.236 2024] [79287] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.236 2024] [79287] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.236 2024] [79287] total 10 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.236 2024] [79287] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.261 2024] [79290] collected 4 docs, 0.0 MB
[Wed May 8 08:45:03.263 2024] [79290] creating secondary index
[Wed May 8 08:45:03.264 2024] [79290] WARNING: kill-list not empty but no killlist_target specified
[Wed May 8 08:45:03.264 2024] [79290] creating lookup: 0.0 Kdocs, 100.0% done
[Wed May 8 08:45:03.266 2024] [79290] sorted 0.0 Mhits, 100.0% done
[Wed May 8 08:45:03.280 2024] [79290] total 4 docs, 22937 bytes
[Wed May 8 08:45:03.280 2024] [79290] total 0.225 sec, 101590 bytes/sec, 17.71 docs/sec
[Wed May 8 08:45:03.280 2024] [79290] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.280 2024] [79290] total 70 reads, 0.001 sec, 100.8 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.280 2024] [79290] total 18 writes, 0.000 sec, 4.8 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.280 2024] [79290] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.351 2024] [79273] collected 151 docs, 0.7 MB
[Wed May 8 08:45:03.351 2024] [79273] creating secondary index
[Wed May 8 08:45:03.351 2024] [79273] WARNING: kill-list not empty but no killlist_target specified
[Wed May 8 08:45:03.351 2024] [79273] creating lookup: 0.1 Kdocs, 100.0% done
[Wed May 8 08:45:03.370 2024] [79273] sorted 0.1 Mhits, 100.0% done
[Wed May 8 08:45:03.384 2024] [79273] total 151 docs, 723644 bytes
[Wed May 8 08:45:03.384 2024] [79273] total 0.432 sec, 1673606 bytes/sec, 349.22 docs/sec
[Wed May 8 08:45:03.384 2024] [79273] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.384 2024] [79273] total 70 reads, 0.001 sec, 120.0 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.384 2024] [79273] total 21 writes, 0.002 sec, 135.4 kb/call avg, 0.1 msec/call avg
[Wed May 8 08:45:03.384 2024] [79273] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.787 2024] [79282] collected 22685 docs, 0.7 MB
[Wed May 8 08:45:03.836 2024] [79282] creating secondary index
[Wed May 8 08:45:03.874 2024] [79282] WARNING: kill-list not empty but no killlist_target specified
[Wed May 8 08:45:03.874 2024] [79282] creating lookup: 22.6 Kdocs, 100.0% done
[Wed May 8 08:45:03.904 2024] [79282] sorted 0.2 Mhits, 100.0% done
[Wed May 8 08:45:03.922 2024] [79282] total 22685 docs, 796521 bytes
[Wed May 8 08:45:03.922 2024] [79282] total 0.933 sec, 853365 bytes/sec, 24303.93 docs/sec
[Wed May 8 08:45:03.922 2024] [79282] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[Wed May 8 08:45:03.922 2024] [79282] total 70 reads, 0.002 sec, 130.5 kb/call avg, 0.0 msec/call avg
[Wed May 8 08:45:03.922 2024] [79282] total 34 writes, 0.006 sec, 207.4 kb/call avg, 0.2 msec/call avg
[Wed May 8 08:45:03.922 2024] [79282] rotating tables: successfully sent SIGHUP to searchd (pid=1113).

searchd.log

[Wed May  8 08:45:03.132 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed May  8 08:45:03.198 2024] [1114] rotating table 'seatforum_de_vbforum_visitormessage_delta': started
[Wed May  8 08:45:03.199 2024] [1114] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.199 2024] [1114] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.201 2024] [1114] rotating table 'seatforum_de_vbforum_visitormessage_delta': success
[Wed May  8 08:45:03.201 2024] [1114] rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': started
[Wed May  8 08:45:03.201 2024] [1114] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.201 2024] [1114] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.202 2024] [1114] rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': success
[Wed May  8 08:45:03.202 2024] [1114] rotating table 'seatforum_de_vbforum_post_delta': started
[Wed May  8 08:45:03.203 2024] [1114] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.203 2024] [1114] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.204 2024] [1114] rotating table 'seatforum_de_vbforum_post_delta': success
[Wed May  8 08:45:03.204 2024] [1114] rotating table: all tables done
[Wed May  8 08:45:03.210 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed May  8 08:45:03.275 2024] [1116] rotating table 'seatforum_de_vbcms_staticpage_delta': started
[Wed May  8 08:45:03.276 2024] [1116] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.276 2024] [1116] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.276 2024] [1116] WARNING: RotateIndexMT error: table seatforum_de_vbcms_staticpage_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl to /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.spl, fd=211, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Wed May  8 08:45:03.277 2024] [1116] WARNING: table 'seatforum_de_vbcms_staticpage_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl to /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.spl, fd=211, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Wed May  8 08:45:03.277 2024] [1116] rotating table 'seatforum_de_vbforum_socialgroup_delta': started
[Wed May  8 08:45:03.278 2024] [1116] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.278 2024] [1116] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.278 2024] [1116] rotating table 'seatforum_de_vbforum_socialgroup_delta': success
[Wed May  8 08:45:03.278 2024] [1116] rotating table 'seatforum_de_vbforum_forum_delta': started
[Wed May  8 08:45:03.279 2024] [1116] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.279 2024] [1116] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.288 2024] [1116] rotating table 'seatforum_de_vbforum_forum_delta': success
[Wed May  8 08:45:03.288 2024] [1116] rotating table: all tables done
[Wed May  8 08:45:03.383 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed May  8 08:45:03.421 2024] [1116] rotating table 'seatforum_de_vbcms_article_delta': started
[Wed May  8 08:45:03.422 2024] [1116] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.422 2024] [1116] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.423 2024] [1116] rotating table 'seatforum_de_vbcms_article_delta': success
[Wed May  8 08:45:03.423 2024] [1116] rotating table: all tables done
[Wed May  8 08:45:03.921 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed May  8 08:45:03.963 2024] [1116] rotating table 'seatforum_de_vbforum_thread_delta': started
[Wed May  8 08:45:03.965 2024] [1116] RW-idx for rename to .old, acquiring...
[Wed May  8 08:45:03.965 2024] [1116] RW-idx for rename to .old, acquired...
[Wed May  8 08:45:03.969 2024] [1116] rotating table 'seatforum_de_vbforum_thread_delta': success
[Wed May  8 08:45:03.969 2024] [1116] rotating table: all tables done
[Wed May  8 08:45:04.464 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed May  8 08:45:04.499 2024] [1114] nothing to rotate after SIGHUP

KirbyDE avatar May 08 '24 07:05 KirbyDE

not quite sure

unfortunately this time on an instance that did not have debug logging enabled

but it seems indexation of the seatforum_de_vbforum_forum_delta started at 08:45:02 and rotation works sequentially

[08:45:02.822 2024] [79294] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_forum_delta 
[08:45:02.907 2024] [79294] indexing table 'seatforum_de_vbforum_forum_delta'...
[08:45:03.180 2024] [79294] collected 8 docs, 0.0 MB
[08:45:03.204 2024] [79294] creating secondary index
[08:45:03.204 2024] [79294] WARNING: kill-list not empty but no killlist_target specified
[08:45:03.204 2024] [79294] creating lookup: 0.0 Kdocs, 100.0% done
[08:45:03.208 2024] [79294] sorted 0.0 Mhits, 100.0% done
[08:45:03.212 2024] [79294] total 8 docs, 694 bytes
[08:45:03.212 2024] [79294] total 0.201 sec, 3446 bytes/sec, 39.73 docs/sec
[08:45:03.212 2024] [79294] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
[08:45:03.212 2024] [79294] total 70 reads, 0.001 sec, 100.2 kb/call avg, 0.0 msec/call avg
[08:45:03.212 2024] [79294] total 18 writes, 0.000 sec, 0.6 kb/call avg, 0.0 msec/call avg
[08:45:03.212 2024] [79294] rotating tables: successfully sent SIGHUP to searchd (pid=1113).
...

[08:45:03.210 2024] [1113] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[08:45:03.275 2024] [1116] rotating table 'seatforum_de_vbcms_staticpage_delta': started
[08:45:03.276 2024] [1116] RW-idx for rename to .old, acquiring...
[08:45:03.276 2024] [1116] RW-idx for rename to .old, acquired...
[08:45:03.276 2024] [1116] WARNING: RotateIndexMT error: table seatforum_de_vbcms_staticpage_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl to /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.spl, fd=211, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[08:45:03.277 2024] [1116] WARNING: table 'seatforum_de_vbcms_staticpage_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl to /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.spl, fd=211, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[08:45:03.277 2024] [1116] rotating table 'seatforum_de_vbforum_socialgroup_delta': started
...

but I do not see how index could be broken maybe more logs could show something new

tomatolog avatar May 08 '24 10:05 tomatolog

I did some kind of burn-in test, eg. let the indexes rebuild in an endless loop using a clone of a production instance.

After letting this run for a few hours the issue appeared again.

indexer.log

[Fri May 10 15:53:52.667 2024] [422530] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:52.671 2024] [422517] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbcms_article_delta
[Fri May 10 15:53:52.673 2024] [422527] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:52.677 2024] [422534] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_post_delta
[Fri May 10 15:53:52.720 2024] [422517] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.720 2024] [422517] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.720 2024] [422517] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.720 2024] [422517] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.720 2024] [422517] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.720 2024] [422517] indexing table 'seatforum_de_vbcms_article_delta'...
[Fri May 10 15:53:52.730 2024] [422514] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.743 2024] [422536] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.749 2024] [422525] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.749 2024] [422525] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.749 2024] [422525] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.749 2024] [422525] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.749 2024] [422525] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.749 2024] [422525] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.749 2024] [422525] indexing table 'seatforum_de_vbcms_staticpage_delta'...
[Fri May 10 15:53:52.750 2024] [422532] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:52.750 2024] [422532] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.750 2024] [422532] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.750 2024] [422532] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.750 2024] [422532] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.750 2024] [422532] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.750 2024] [422532] indexing table 'seatforum_de_vbforum_thread_delta'...
[Fri May 10 15:53:52.768 2024] [422514] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.768 2024] [422514] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.768 2024] [422514] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.768 2024] [422514] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.768 2024] [422514] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.768 2024] [422514] indexing table 'seatforum_de_vbforum_visitormessage_delta'...
[Fri May 10 15:53:52.780 2024] [422527] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.780 2024] [422527] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.780 2024] [422527] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.780 2024] [422527] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.780 2024] [422527] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.780 2024] [422527] indexing table 'seatforum_de_vbforum_socialgroupmessage_delta'...
[Fri May 10 15:53:52.785 2024] [422536] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.785 2024] [422536] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.785 2024] [422536] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.785 2024] [422536] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.785 2024] [422536] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.785 2024] [422536] indexing table 'seatforum_de_vbforum_forum_delta'...
[Fri May 10 15:53:52.800 2024] [422534] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.800 2024] [422534] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.800 2024] [422534] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.800 2024] [422534] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.800 2024] [422534] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.800 2024] [422534] indexing table 'seatforum_de_vbforum_post_delta'...
[Fri May 10 15:53:52.819 2024] [422530] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Fri May 10 15:53:52.819 2024] [422530] Copyright (c) 2001-2016, Andrew Aksyonoff
[Fri May 10 15:53:52.819 2024] [422530] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Fri May 10 15:53:52.819 2024] [422530] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Fri May 10 15:53:52.819 2024] [422530] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Fri May 10 15:53:52.819 2024] [422530] indexing table 'seatforum_de_vbforum_socialgroup_delta'...
[Fri May 10 15:53:52.905 2024] [422514] collected 0 docs, 0.0 MB
[Fri May 10 15:53:52.906 2024] [422525] collected 4 docs, 0.0 MB
[Fri May 10 15:53:52.907 2024] [422525] creating secondary index
[Fri May 10 15:53:52.907 2024] [422525] WARNING: kill-list not empty but no killlist_target specified
[Fri May 10 15:53:52.907 2024] [422525] creating lookup: 0.0 Kdocs, 100.0% done
[Fri May 10 15:53:52.908 2024] [422525] sorted 0.0 Mhits, 100.0% done
[Fri May 10 15:53:52.911 2024] [422514] creating secondary index
[Fri May 10 15:53:52.915 2024] [422525] total 4 docs, 22937 bytes
[Fri May 10 15:53:52.915 2024] [422525] total 0.085 sec, 267044 bytes/sec, 46.57 docs/sec
[Fri May 10 15:53:52.915 2024] [422525] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:52.915 2024] [422525] total 70 reads, 0.000 sec, 100.8 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.915 2024] [422525] total 18 writes, 0.000 sec, 4.8 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.915 2024] [422525] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:52.918 2024] [422514] total 0 docs, 0 bytes
[Fri May 10 15:53:52.918 2024] [422514] total 0.074 sec, 0 bytes/sec, 0.00 docs/sec
[Fri May 10 15:53:52.918 2024] [422514] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:52.918 2024] [422514] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.918 2024] [422514] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.918 2024] [422514] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:52.961 2024] [422536] collected 8 docs, 0.0 MB
[Fri May 10 15:53:52.963 2024] [422536] creating secondary index
[Fri May 10 15:53:52.963 2024] [422536] WARNING: kill-list not empty but no killlist_target specified
[Fri May 10 15:53:52.963 2024] [422536] creating lookup: 0.0 Kdocs, 100.0% done
[Fri May 10 15:53:52.963 2024] [422536] sorted 0.0 Mhits, 100.0% done
[Fri May 10 15:53:52.981 2024] [422536] total 8 docs, 694 bytes
[Fri May 10 15:53:52.981 2024] [422536] total 0.124 sec, 5556 bytes/sec, 64.04 docs/sec
[Fri May 10 15:53:52.981 2024] [422536] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:52.981 2024] [422536] total 70 reads, 0.000 sec, 100.2 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.981 2024] [422536] total 18 writes, 0.000 sec, 0.6 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:52.981 2024] [422536] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.005 2024] [422527] collected 0 docs, 0.0 MB
[Fri May 10 15:53:53.005 2024] [422527] creating secondary index
[Fri May 10 15:53:53.005 2024] [422527] total 0 docs, 0 bytes
[Fri May 10 15:53:53.006 2024] [422527] total 0.119 sec, 0 bytes/sec, 0.00 docs/sec
[Fri May 10 15:53:53.006 2024] [422527] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.006 2024] [422527] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.006 2024] [422527] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.006 2024] [422527] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.013 2024] [422530] collected 0 docs, 0.0 MB
[Fri May 10 15:53:53.014 2024] [422530] creating secondary index
[Fri May 10 15:53:53.016 2024] [422530] total 0 docs, 0 bytes
[Fri May 10 15:53:53.016 2024] [422530] total 0.089 sec, 0 bytes/sec, 0.00 docs/sec
[Fri May 10 15:53:53.016 2024] [422530] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.016 2024] [422530] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.016 2024] [422530] total 10 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.016 2024] [422530] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.036 2024] [422534] collected 31 docs, 0.0 MB
[Fri May 10 15:53:53.038 2024] [422534] creating secondary index
[Fri May 10 15:53:53.038 2024] [422534] WARNING: kill-list not empty but no killlist_target specified
[Fri May 10 15:53:53.038 2024] [422534] creating lookup: 0.0 Kdocs, 100.0% done
[Fri May 10 15:53:53.039 2024] [422534] sorted 0.0 Mhits, 100.0% done
[Fri May 10 15:53:53.041 2024] [422534] total 31 docs, 20993 bytes
[Fri May 10 15:53:53.041 2024] [422534] total 0.145 sec, 144422 bytes/sec, 213.26 docs/sec
[Fri May 10 15:53:53.041 2024] [422534] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.041 2024] [422534] total 70 reads, 0.000 sec, 101.3 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.041 2024] [422534] total 18 writes, 0.000 sec, 8.2 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.041 2024] [422534] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.060 2024] [422517] collected 151 docs, 0.7 MB
[Fri May 10 15:53:53.063 2024] [422517] creating secondary index
[Fri May 10 15:53:53.064 2024] [422517] WARNING: kill-list not empty but no killlist_target specified
[Fri May 10 15:53:53.064 2024] [422517] creating lookup: 0.1 Kdocs, 100.0% done
[Fri May 10 15:53:53.084 2024] [422517] sorted 0.1 Mhits, 100.0% done
[Fri May 10 15:53:53.104 2024] [422517] total 151 docs, 723644 bytes
[Fri May 10 15:53:53.104 2024] [422517] total 0.322 sec, 2244121 bytes/sec, 468.27 docs/sec
[Fri May 10 15:53:53.104 2024] [422517] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.104 2024] [422517] total 70 reads, 0.001 sec, 120.0 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.104 2024] [422517] total 21 writes, 0.001 sec, 135.4 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.104 2024] [422517] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.618 2024] [422532] collected 33145 docs, 1.1 MB
[Fri May 10 15:53:53.683 2024] [422532] creating secondary index
[Fri May 10 15:53:53.696 2024] [422532] WARNING: kill-list not empty but no killlist_target specified
[Fri May 10 15:53:53.696 2024] [422532] creating lookup: 33.1 Kdocs, 100.0% done
[Fri May 10 15:53:53.727 2024] [422532] sorted 0.3 Mhits, 100.0% done
[Fri May 10 15:53:53.744 2024] [422532] total 33145 docs, 1169260 bytes
[Fri May 10 15:53:53.744 2024] [422532] total 0.903 sec, 1294226 bytes/sec, 36687.42 docs/sec
[Fri May 10 15:53:53.744 2024] [422532] rotating tables: successfully sent SIGHUP to searchd (pid=1874).
[Fri May 10 15:53:53.744 2024] [422532] total 70 reads, 0.001 sec, 142.4 kb/call avg, 0.0 msec/call avg
[Fri May 10 15:53:53.744 2024] [422532] total 40 writes, 0.006 sec, 245.3 kb/call avg, 0.1 msec/call avg
[Fri May 10 15:53:53.744 2024] [422532] rotating tables: successfully sent SIGHUP to searchd (pid=1874).

searchd.log

[Fri May 10 15:53:52.909 2024] [1874] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Fri May 10 15:53:52.909 2024] [1876] DEBUG: CheckRotate invoked
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  testindex
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table testindex
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: add deferred table seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_forum
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_forum
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_post_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_post
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_post
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_thread
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_thread
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: add deferred table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_article_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_article
[Fri May 10 15:53:52.976 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_article
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: add deferred table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_staticpage
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: keep existing table  seatforum_de_searchterms
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: Keep existing before local table seatforum_de_searchterms
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: will rotate seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: will rotate seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: will rotate seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: TaskRotation starts with 3 deferred tables
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:52.977 2024] [1876] rotating table 'seatforum_de_vbcms_staticpage_delta': started
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new.spl success
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbcms_staticpage_delta'(/var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.new)
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:52.977 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:52.977 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:52.977 2024] [1876] DEBUG: rotating table 'seatforum_de_vbcms_staticpage_delta': applying other tables killlists
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: rotating table 'seatforum_de_vbcms_staticpage_delta': applying other tables killlists... DONE
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: rotating table 'seatforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: rotating table 'seatforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: all went fine; swap them
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.old
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.old.spl)
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: File ID ok, closing lock FD 210, unlinking /var/lib/manticore/data/seatforum_de/vbcms_staticpagedelta.old.spl
[Fri May 10 15:53:52.978 2024] [1876] rotating table 'seatforum_de_vbcms_staticpage_delta': success
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:52.978 2024] [1876] rotating table 'seatforum_de_vbforum_visitormessage_delta': started
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.new.spl
[Fri May 10 15:53:52.978 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.new.spl success
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_visitormessage_delta'(/var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.new)
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:52.979 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:52.979 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_visitormessage_delta': applying other tables killlists
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_visitormessage_delta': applying other tables killlists... DONE
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: all went fine; swap them
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.old
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.old.spl)
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: File ID ok, closing lock FD 142, unlinking /var/lib/manticore/data/seatforum_de/vbforum_visitormessagedelta.old.spl
[Fri May 10 15:53:52.979 2024] [1876] rotating table 'seatforum_de_vbforum_visitormessage_delta': success
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbforum_forum_delta
[Fri May 10 15:53:52.979 2024] [1876] rotating table 'seatforum_de_vbforum_forum_delta': started
[Fri May 10 15:53:52.979 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:52.980 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl
[Fri May 10 15:53:52.980 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl success
[Fri May 10 15:53:52.980 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_forum_delta'(/var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new)
[Fri May 10 15:53:52.980 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:52.980 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:52.980 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:52.980 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:52.980 2024] [1874] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Fri May 10 15:53:52.980 2024] [1874] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=1)
[Fri May 10 15:53:52.980 2024] [1876] WARNING: RotateIndexMT error: table seatforum_de_vbforum_forum_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.spl, fd=208, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Fri May 10 15:53:52.981 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.spl)
[Fri May 10 15:53:52.981 2024] [1876] DEBUG: File ID ok, closing lock FD 170, unlinking /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.spl
[Fri May 10 15:53:52.981 2024] [1876] WARNING: table 'seatforum_de_vbforum_forum_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.spl, fd=208, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Fri May 10 15:53:52.981 2024] [1876] rotating table: all tables done
[Fri May 10 15:53:52.981 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl)
[Fri May 10 15:53:52.981 2024] [1876] DEBUG: File ID ok, closing lock FD 208, unlinking /var/lib/manticore/data/seatforum_de/vbforum_forumdelta.new.spl
[Fri May 10 15:53:53.004 2024] [1874] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=1)
[Fri May 10 15:53:53.004 2024] [1876] DEBUG: CheckRotate invoked
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: keep existing table  testindex
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: Keep existing before local table testindex
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_forum
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_forum
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: add deferred table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.046 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_post
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_post
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: add deferred table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: add deferred table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_thread
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_thread
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_article
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_article
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: keep existing table  seatforum_de_searchterms
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Keep existing before local table seatforum_de_searchterms
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: will rotate seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: will rotate seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: will rotate seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: TaskRotation starts with 3 deferred tables
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.047 2024] [1876] rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': started
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.new.spl
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.new.spl success
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_socialgroupmessage_delta'(/var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.new)
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:53.047 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:53.047 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:53.047 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists... DONE
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: all went fine; swap them
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.old
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.old.spl)
[Fri May 10 15:53:53.048 2024] [1876] DEBUG: File ID ok, closing lock FD 99, unlinking /var/lib/manticore/data/seatforum_de/vbforum_socialgroupmessagedelta.old.spl
[Fri May 10 15:53:53.049 2024] [1876] rotating table 'seatforum_de_vbforum_socialgroupmessage_delta': success
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.049 2024] [1876] rotating table 'seatforum_de_vbforum_socialgroup_delta': started
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.new.spl
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.new.spl success
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_socialgroup_delta'(/var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.new)
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:53.049 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:53.049 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:53.049 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroup_delta': applying other tables killlists
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroup_delta': applying other tables killlists... DONE
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: all went fine; swap them
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.old
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.old.spl)
[Fri May 10 15:53:53.050 2024] [1876] DEBUG: File ID ok, closing lock FD 146, unlinking /var/lib/manticore/data/seatforum_de/vbforum_socialgroupdelta.old.spl
[Fri May 10 15:53:53.051 2024] [1876] rotating table 'seatforum_de_vbforum_socialgroup_delta': success
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: seamless rotate local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.051 2024] [1876] rotating table 'seatforum_de_vbforum_post_delta': started
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_postdelta.new.spl
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_postdelta.new.spl success
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_post_delta'(/var/lib/manticore/data/seatforum_de/vbforum_postdelta.new)
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: Preread successfully finished
[Fri May 10 15:53:53.051 2024] [1876] DEBUG: activate new table
[Fri May 10 15:53:53.051 2024] [1876] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:53.051 2024] [1876] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_post_delta': applying other tables killlists
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_post_delta': applying other tables killlists... DONE
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: rotating table 'seatforum_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: all went fine; swap them
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbforum_postdelta.old
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_postdelta.old.spl)
[Fri May 10 15:53:53.052 2024] [1876] DEBUG: File ID ok, closing lock FD 161, unlinking /var/lib/manticore/data/seatforum_de/vbforum_postdelta.old.spl
[Fri May 10 15:53:53.052 2024] [1876] rotating table 'seatforum_de_vbforum_post_delta': success
[Fri May 10 15:53:53.052 2024] [1876] rotating table: all tables done
[Fri May 10 15:53:53.097 2024] [1874] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Fri May 10 15:53:53.098 2024] [1875] DEBUG: CheckRotate invoked
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  testindex
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table testindex
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_forum
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_forum
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_post
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_post
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_thread
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_thread
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: add deferred table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbcms_article
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbcms_article
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: keep existing table  seatforum_de_searchterms
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: Keep existing before local table seatforum_de_searchterms
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: will rotate seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: TaskRotation starts with 1 deferred tables
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: seamless rotate local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.131 2024] [1875] rotating table 'seatforum_de_vbcms_article_delta': started
[Fri May 10 15:53:53.131 2024] [1875] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:53.132 2024] [1875] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbcms_articledelta.new.spl
[Fri May 10 15:53:53.132 2024] [1875] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbcms_articledelta.new.spl success
[Fri May 10 15:53:53.132 2024] [1875] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbcms_article_delta'(/var/lib/manticore/data/seatforum_de/vbcms_articledelta.new)
[Fri May 10 15:53:53.132 2024] [1875] DEBUG: Preread successfully finished
[Fri May 10 15:53:53.132 2024] [1875] DEBUG: activate new table
[Fri May 10 15:53:53.132 2024] [1875] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:53.132 2024] [1875] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: rotating table 'seatforum_de_vbcms_article_delta': applying other tables killlists
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: rotating table 'seatforum_de_vbcms_article_delta': applying other tables killlists... DONE
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: rotating table 'seatforum_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: rotating table 'seatforum_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: all went fine; swap them
[Fri May 10 15:53:53.133 2024] [1875] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbcms_articledelta.old
[Fri May 10 15:53:53.134 2024] [1875] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbcms_articledelta.old.spl)
[Fri May 10 15:53:53.134 2024] [1875] DEBUG: File ID ok, closing lock FD 203, unlinking /var/lib/manticore/data/seatforum_de/vbcms_articledelta.old.spl
[Fri May 10 15:53:53.134 2024] [1875] rotating table 'seatforum_de_vbcms_article_delta': success
[Fri May 10 15:53:53.134 2024] [1875] rotating table: all tables done
[Fri May 10 15:53:53.632 2024] [1874] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Fri May 10 15:53:53.632 2024] [1877] DEBUG: CheckRotate invoked
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  testindex
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table testindex
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_forum
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_forum
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_post
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_post
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_thread
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_thread
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_article
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_article
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: keep existing table  seatforum_de_searchterms
[Fri May 10 15:53:53.673 2024] [1877] DEBUG: Keep existing before local table seatforum_de_searchterms
[Fri May 10 15:53:53.673 2024] [1877] nothing to rotate after SIGHUP
[Fri May 10 15:53:53.744 2024] [1874] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Fri May 10 15:53:53.744 2024] [1877] DEBUG: CheckRotate invoked
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  testindex
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table testindex
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_forum
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_forum
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_post_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_post
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_post
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroup
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_socialgroupmessage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: add deferred table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_thread
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_thread
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbforum_visitormessage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_article_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_article
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_article
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage_delta
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_vbcms_staticpage
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: keep existing table  seatforum_de_searchterms
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: Keep existing before local table seatforum_de_searchterms
[Fri May 10 15:53:53.776 2024] [1877] DEBUG: will rotate seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.776 2024] [1875] DEBUG: TaskRotation starts with 1 deferred tables
[Fri May 10 15:53:53.776 2024] [1875] DEBUG: seamless rotate local table seatforum_de_vbforum_thread_delta
[Fri May 10 15:53:53.776 2024] [1875] rotating table 'seatforum_de_vbforum_thread_delta': started
[Fri May 10 15:53:53.776 2024] [1875] DEBUG: prealloc enough RAM and lock new table
[Fri May 10 15:53:53.777 2024] [1875] DEBUG: Locking the table via file /var/lib/manticore/data/seatforum_de/vbforum_threaddelta.new.spl
[Fri May 10 15:53:53.777 2024] [1875] DEBUG: lock /var/lib/manticore/data/seatforum_de/vbforum_threaddelta.new.spl success
[Fri May 10 15:53:53.777 2024] [1875] DEBUG: CSphIndex_VLN::Preread invoked 'seatforum_de_vbforum_thread_delta'(/var/lib/manticore/data/seatforum_de/vbforum_threaddelta.new)
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: Preread successfully finished
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: activate new table
[Fri May 10 15:53:53.778 2024] [1875] RW-idx for rename to .old, acquiring...
[Fri May 10 15:53:53.778 2024] [1875] RW-idx for rename to .old, acquired...
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: rotating table 'seatforum_de_vbforum_thread_delta': applying other tables killlists
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: rotating table 'seatforum_de_vbforum_thread_delta': applying other tables killlists... DONE
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: rotating table 'seatforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: rotating table 'seatforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Fri May 10 15:53:53.778 2024] [1875] DEBUG: all went fine; swap them
[Fri May 10 15:53:53.779 2024] [1875] DEBUG: unlink /var/lib/manticore/data/seatforum_de/vbforum_threaddelta.old
[Fri May 10 15:53:53.780 2024] [1875] DEBUG: Unlocking the table (lock /var/lib/manticore/data/seatforum_de/vbforum_threaddelta.old.spl)
[Fri May 10 15:53:53.780 2024] [1875] DEBUG: File ID ok, closing lock FD 211, unlinking /var/lib/manticore/data/seatforum_de/vbforum_threaddelta.old.spl
[Fri May 10 15:53:53.781 2024] [1875] rotating table 'seatforum_de_vbforum_thread_delta': success
[Fri May 10 15:53:53.781 2024] [1875] rotating table: all tables done

KirbyDE avatar May 10 '24 19:05 KirbyDE

Logs from another production instance.

indexer.log

[Sat May 11 20:45:02.720 2024] [3334914] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbcms_article_delta
[Sat May 11 20:45:02.720 2024] [3334930] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_post_delta
[Sat May 11 20:45:02.721 2024] [3334927] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:02.722 2024] [3334917] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:02.729 2024] [3334933] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_thread_delta
[Sat May 11 20:45:02.738 2024] [3334926] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:02.740 2024] [3334924] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:02.746 2024] [3334935] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate campen_de_vbforum_forum_delta
[Sat May 11 20:45:02.793 2024] [3334927] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.793 2024] [3334927] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.793 2024] [3334927] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.793 2024] [3334927] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.793 2024] [3334927] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.793 2024] [3334927] indexing table 'campen_de_vbforum_socialgroupmessage_delta'...
[Sat May 11 20:45:02.801 2024] [3334926] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.801 2024] [3334926] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.801 2024] [3334926] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.801 2024] [3334926] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.801 2024] [3334926] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.801 2024] [3334926] indexing table 'campen_de_vbforum_socialgroup_delta'...
[Sat May 11 20:45:02.805 2024] [3334914] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.805 2024] [3334914] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.805 2024] [3334914] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.805 2024] [3334914] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.805 2024] [3334914] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.805 2024] [3334914] indexing table 'campen_de_vbcms_article_delta'...
[Sat May 11 20:45:02.810 2024] [3334924] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.810 2024] [3334924] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.810 2024] [3334924] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.810 2024] [3334924] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.810 2024] [3334924] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.810 2024] [3334924] indexing table 'campen_de_vbforum_visitormessage_delta'...
[Sat May 11 20:45:02.817 2024] [3334917] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.817 2024] [3334917] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.817 2024] [3334917] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.817 2024] [3334917] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.817 2024] [3334917] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.817 2024] [3334917] indexing table 'campen_de_vbcms_staticpage_delta'...
[Sat May 11 20:45:02.827 2024] [3334935] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.827 2024] [3334935] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.827 2024] [3334935] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.827 2024] [3334935] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.827 2024] [3334935] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.827 2024] [3334935] indexing table 'campen_de_vbforum_forum_delta'...
[Sat May 11 20:45:02.835 2024] [3334930] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.835 2024] [3334930] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.835 2024] [3334930] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.835 2024] [3334930] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.835 2024] [3334930] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.835 2024] [3334930] indexing table 'campen_de_vbforum_post_delta'...
[Sat May 11 20:45:02.842 2024] [3334933] Manticore 6.2.12 dc5144d35@230822
[Sat May 11 20:45:02.842 2024] [3334933] Copyright (c) 2001-2016, Andrew Aksyonoff
[Sat May 11 20:45:02.842 2024] [3334933] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Sat May 11 20:45:02.842 2024] [3334933] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Sat May 11 20:45:02.842 2024] [3334933] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Sat May 11 20:45:02.842 2024] [3334933] indexing table 'campen_de_vbforum_thread_delta'...
[Sat May 11 20:45:02.996 2024] [3334926] collected 3 docs, 0.0 MB
[Sat May 11 20:45:02.998 2024] [3334926] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:02.998 2024] [3334926] creating lookup: 0.0 Kdocs, 100.0% done
[Sat May 11 20:45:03.000 2024] [3334927] collected 0 docs, 0.0 MB
[Sat May 11 20:45:03.000 2024] [3334926] sorted 0.0 Mhits, 100.0% done
[Sat May 11 20:45:03.003 2024] [3334917] collected 2 docs, 0.0 MB
[Sat May 11 20:45:03.007 2024] [3334917] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:03.007 2024] [3334917] creating lookup: 0.0 Kdocs, 100.0% done
[Sat May 11 20:45:03.007 2024] [3334926] total 3 docs, 281 bytes
[Sat May 11 20:45:03.007 2024] [3334926] total 0.122 sec, 2285 bytes/sec, 24.39 docs/sec
[Sat May 11 20:45:03.007 2024] [3334926] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.007 2024] [3334926] total 70 reads, 0.001 sec, 100.2 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.007 2024] [3334926] total 18 writes, 0.001 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.007 2024] [3334926] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.011 2024] [3334927] total 0 docs, 0 bytes
[Sat May 11 20:45:03.011 2024] [3334927] total 0.119 sec, 0 bytes/sec, 0.00 docs/sec
[Sat May 11 20:45:03.011 2024] [3334927] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.011 2024] [3334927] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.011 2024] [3334927] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.011 2024] [3334927] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.024 2024] [3334935] collected 24 docs, 0.0 MB
[Sat May 11 20:45:03.041 2024] [3334917] sorted 0.0 Mhits, 100.0% done
[Sat May 11 20:45:03.042 2024] [3334917] total 2 docs, 14331 bytes
[Sat May 11 20:45:03.042 2024] [3334917] total 0.160 sec, 89137 bytes/sec, 12.43 docs/sec
[Sat May 11 20:45:03.042 2024] [3334917] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.042 2024] [3334917] total 70 reads, 0.001 sec, 100.6 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.042 2024] [3334917] total 18 writes, 0.000 sec, 3.3 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.042 2024] [3334917] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.043 2024] [3334935] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:03.043 2024] [3334935] creating lookup: 0.0 Kdocs, 100.0% done
[Sat May 11 20:45:03.044 2024] [3334935] sorted 0.0 Mhits, 100.0% done
[Sat May 11 20:45:03.062 2024] [3334935] total 24 docs, 2108 bytes
[Sat May 11 20:45:03.062 2024] [3334935] total 0.166 sec, 12623 bytes/sec, 143.71 docs/sec
[Sat May 11 20:45:03.062 2024] [3334935] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.062 2024] [3334935] total 70 reads, 0.001 sec, 100.3 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.062 2024] [3334935] total 18 writes, 0.000 sec, 1.4 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.062 2024] [3334935] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.085 2024] [3334924] collected 0 docs, 0.0 MB
[Sat May 11 20:45:03.091 2024] [3334924] total 0 docs, 0 bytes
[Sat May 11 20:45:03.091 2024] [3334924] total 0.171 sec, 0 bytes/sec, 0.00 docs/sec
[Sat May 11 20:45:03.091 2024] [3334924] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.091 2024] [3334924] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.091 2024] [3334924] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.091 2024] [3334924] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.129 2024] [3334930] collected 572 docs, 0.2 MB
[Sat May 11 20:45:03.130 2024] [3334930] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:03.130 2024] [3334930] creating lookup: 0.5 Kdocs, 100.0% done
[Sat May 11 20:45:03.138 2024] [3334930] sorted 0.0 Mhits, 100.0% done
[Sat May 11 20:45:03.145 2024] [3334930] total 572 docs, 245850 bytes
[Sat May 11 20:45:03.145 2024] [3334930] total 0.232 sec, 1056428 bytes/sec, 2457.91 docs/sec
[Sat May 11 20:45:03.145 2024] [3334930] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.145 2024] [3334930] total 70 reads, 0.001 sec, 109.8 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.145 2024] [3334930] total 18 writes, 0.001 sec, 75.8 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.145 2024] [3334930] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.236 2024] [3334914] collected 189 docs, 0.9 MB
[Sat May 11 20:45:03.237 2024] [3334914] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:03.237 2024] [3334914] creating lookup: 0.1 Kdocs, 100.0% done
[Sat May 11 20:45:03.255 2024] [3334914] sorted 0.2 Mhits, 100.0% done
[Sat May 11 20:45:03.270 2024] [3334914] total 189 docs, 902399 bytes
[Sat May 11 20:45:03.270 2024] [3334914] total 0.368 sec, 2446978 bytes/sec, 512.49 docs/sec
[Sat May 11 20:45:03.270 2024] [3334914] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:03.270 2024] [3334914] total 70 reads, 0.001 sec, 125.6 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.270 2024] [3334914] total 24 writes, 0.002 sec, 150.9 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:03.270 2024] [3334914] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:04.288 2024] [3334933] collected 43479 docs, 1.6 MB
[Sat May 11 20:45:04.309 2024] [3334933] WARNING: kill-list not empty but no killlist_target specified
[Sat May 11 20:45:04.309 2024] [3334933] creating lookup: 43.4 Kdocs, 100.0% done
[Sat May 11 20:45:04.351 2024] [3334933] sorted 0.4 Mhits, 100.0% done
[Sat May 11 20:45:04.382 2024] [3334933] total 43479 docs, 1640173 bytes
[Sat May 11 20:45:04.382 2024] [3334933] total 1.448 sec, 1132196 bytes/sec, 30013.15 docs/sec
[Sat May 11 20:45:04.382 2024] [3334933] rotating tables: successfully sent SIGHUP to searchd (pid=120012).
[Sat May 11 20:45:04.382 2024] [3334933] total 70 reads, 0.002 sec, 157.4 kb/call avg, 0.0 msec/call avg
[Sat May 11 20:45:04.382 2024] [3334933] total 49 writes, 0.009 sec, 263.9 kb/call avg, 0.1 msec/call avg
[Sat May 11 20:45:04.382 2024] [3334933] rotating tables: successfully sent SIGHUP to searchd (pid=120012).

searchd.log

[Sat May 11 20:45:03.004 2024] [120012] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Sat May 11 20:45:03.004 2024] [120016] DEBUG: CheckRotate invoked
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  testindex
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table testindex
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  campen_de_marketplaceitem
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table campen_de_marketplaceitem
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: add deferred table campen_de_vbforum_forum_delta
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_forum_delta
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_forum_delta
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_forum
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_forum
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_post_delta
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_post
[Sat May 11 20:45:03.054 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_post
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: add deferred table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: add deferred table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_thread
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_thread
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_article_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_article
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_article
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: add deferred table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_staticpage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_staticpage
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: keep existing table  campen_de_searchterms
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: Keep existing before local table campen_de_searchterms
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: will rotate campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: will rotate campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: will rotate campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: will rotate campen_de_vbforum_forum_delta
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: TaskRotation starts with 4 deferred tables
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: seamless rotate local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.055 2024] [120016] rotating table 'campen_de_vbcms_staticpage_delta': started
[Sat May 11 20:45:03.055 2024] [120016] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.056 2024] [120016] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbcms_staticpagedelta.new.spl
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: lock /var/lib/manticore/data/campen_de/vbcms_staticpagedelta.new.spl success
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbcms_staticpage_delta'(/var/lib/manticore/data/campen_de/vbcms_staticpagedelta.new)
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: activate new table
[Sat May 11 20:45:03.056 2024] [120016] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.056 2024] [120016] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: rotating table 'campen_de_vbcms_staticpage_delta': applying other tables killlists
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: rotating table 'campen_de_vbcms_staticpage_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: rotating table 'campen_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: rotating table 'campen_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.056 2024] [120016] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.057 2024] [120016] DEBUG: unlink /var/lib/manticore/data/campen_de/vbcms_staticpagedelta.old
[Sat May 11 20:45:03.057 2024] [120016] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbcms_staticpagedelta.old.spl)
[Sat May 11 20:45:03.057 2024] [120016] DEBUG: File ID ok, closing lock FD 205, unlinking /var/lib/manticore/data/campen_de/vbcms_staticpagedelta.old.spl
[Sat May 11 20:45:03.057 2024] [120016] rotating table 'campen_de_vbcms_staticpage_delta': success
[Sat May 11 20:45:03.057 2024] [120016] DEBUG: seamless rotate local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.057 2024] [120016] rotating table 'campen_de_vbforum_socialgroupmessage_delta': started
[Sat May 11 20:45:03.057 2024] [120016] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.058 2024] [120016] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.new.spl
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.new.spl success
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_socialgroupmessage_delta'(/var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.new)
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: activate new table
[Sat May 11 20:45:03.058 2024] [120016] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.058 2024] [120016] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroupmessage_delta': applying other tables killlists
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroupmessage_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.058 2024] [120016] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.059 2024] [120016] DEBUG: unlink /var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.old
[Sat May 11 20:45:03.059 2024] [120016] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.old.spl)
[Sat May 11 20:45:03.059 2024] [120016] DEBUG: File ID ok, closing lock FD 158, unlinking /var/lib/manticore/data/campen_de/vbforum_socialgroupmessagedelta.old.spl
[Sat May 11 20:45:03.059 2024] [120016] rotating table 'campen_de_vbforum_socialgroupmessage_delta': success
[Sat May 11 20:45:03.059 2024] [120016] DEBUG: seamless rotate local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.059 2024] [120016] rotating table 'campen_de_vbforum_socialgroup_delta': started
[Sat May 11 20:45:03.059 2024] [120016] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.060 2024] [120016] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.new.spl
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.new.spl success
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_socialgroup_delta'(/var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.new)
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: activate new table
[Sat May 11 20:45:03.060 2024] [120016] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.060 2024] [120016] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroup_delta': applying other tables killlists
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroup_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: rotating table 'campen_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.060 2024] [120016] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: unlink /var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.old
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.old.spl)
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: File ID ok, closing lock FD 192, unlinking /var/lib/manticore/data/campen_de/vbforum_socialgroupdelta.old.spl
[Sat May 11 20:45:03.061 2024] [120016] rotating table 'campen_de_vbforum_socialgroup_delta': success
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: seamless rotate local table campen_de_vbforum_forum_delta
[Sat May 11 20:45:03.061 2024] [120016] rotating table 'campen_de_vbforum_forum_delta': started
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.061 2024] [120016] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl success
[Sat May 11 20:45:03.061 2024] [120016] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_forum_delta'(/var/lib/manticore/data/campen_de/vbforum_forumdelta.new)
[Sat May 11 20:45:03.064 2024] [120016] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.064 2024] [120016] DEBUG: activate new table
[Sat May 11 20:45:03.064 2024] [120016] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.064 2024] [120016] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.064 2024] [120016] WARNING: RotateIndexMT error: table campen_de_vbforum_forum_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/campen_de/vbforum_forumdelta.spl, fd=192, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Sat May 11 20:45:03.068 2024] [120016] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_forumdelta.spl)
[Sat May 11 20:45:03.068 2024] [120016] DEBUG: File ID ok, closing lock FD 183, unlinking /var/lib/manticore/data/campen_de/vbforum_forumdelta.spl
[Sat May 11 20:45:03.068 2024] [120016] WARNING: table 'campen_de_vbforum_forum_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/campen_de/vbforum_forumdelta.spl, fd=192, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Sat May 11 20:45:03.068 2024] [120016] rotating table: all tables done
[Sat May 11 20:45:03.069 2024] [120016] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl)
[Sat May 11 20:45:03.069 2024] [120016] DEBUG: File ID ok, closing lock FD 192, unlinking /var/lib/manticore/data/campen_de/vbforum_forumdelta.new.spl
[Sat May 11 20:45:03.087 2024] [120012] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Sat May 11 20:45:03.087 2024] [120014] DEBUG: CheckRotate invoked
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  testindex
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table testindex
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_marketplaceitem
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_marketplaceitem
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_forum
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_forum
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: add deferred table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: keep existing table  campen_de_searchterms
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: Keep existing before local table campen_de_searchterms
[Sat May 11 20:45:03.142 2024] [120014] DEBUG: will rotate campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.142 2024] [120015] DEBUG: TaskRotation starts with 1 deferred tables
[Sat May 11 20:45:03.142 2024] [120015] DEBUG: seamless rotate local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.142 2024] [120015] rotating table 'campen_de_vbforum_visitormessage_delta': started
[Sat May 11 20:45:03.142 2024] [120015] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.143 2024] [120015] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.143 2024] [120015] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.new.spl
[Sat May 11 20:45:03.143 2024] [120015] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.new.spl success
[Sat May 11 20:45:03.143 2024] [120015] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_visitormessage_delta'(/var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.new)
[Sat May 11 20:45:03.143 2024] [120015] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.143 2024] [120015] DEBUG: activate new table
[Sat May 11 20:45:03.143 2024] [120015] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.143 2024] [120015] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: rotating table 'campen_de_vbforum_visitormessage_delta': applying other tables killlists
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: rotating table 'campen_de_vbforum_visitormessage_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: rotating table 'campen_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: rotating table 'campen_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: unlink /var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.old
[Sat May 11 20:45:03.144 2024] [120012] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=0)
[Sat May 11 20:45:03.144 2024] [120012] caught SIGHUP (seamless=1, in_rotate=1, need_rotate=1)
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.old.spl)
[Sat May 11 20:45:03.144 2024] [120015] DEBUG: File ID ok, closing lock FD 100, unlinking /var/lib/manticore/data/campen_de/vbforum_visitormessagedelta.old.spl
[Sat May 11 20:45:03.145 2024] [120015] rotating table 'campen_de_vbforum_visitormessage_delta': success
[Sat May 11 20:45:03.145 2024] [120015] rotating table: all tables done
[Sat May 11 20:45:03.270 2024] [120012] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=1)
[Sat May 11 20:45:03.270 2024] [120014] DEBUG: CheckRotate invoked
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  testindex
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table testindex
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_marketplaceitem
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_marketplaceitem
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_forum
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_forum
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: add deferred table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post_delta
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.308 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: add deferred table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: keep existing table  campen_de_searchterms
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Keep existing before local table campen_de_searchterms
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: will rotate campen_de_vbcms_article_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: will rotate campen_de_vbforum_post_delta
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: TaskRotation starts with 2 deferred tables
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: seamless rotate local table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.309 2024] [120014] rotating table 'campen_de_vbcms_article_delta': started
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.309 2024] [120014] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbcms_articledelta.new.spl
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: lock /var/lib/manticore/data/campen_de/vbcms_articledelta.new.spl success
[Sat May 11 20:45:03.309 2024] [120014] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbcms_article_delta'(/var/lib/manticore/data/campen_de/vbcms_articledelta.new)
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: activate new table
[Sat May 11 20:45:03.310 2024] [120014] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.310 2024] [120014] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: rotating table 'campen_de_vbcms_article_delta': applying other tables killlists
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: rotating table 'campen_de_vbcms_article_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: rotating table 'campen_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: rotating table 'campen_de_vbcms_article_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.310 2024] [120014] DEBUG: unlink /var/lib/manticore/data/campen_de/vbcms_articledelta.old
[Sat May 11 20:45:03.311 2024] [120014] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbcms_articledelta.old.spl)
[Sat May 11 20:45:03.311 2024] [120014] DEBUG: File ID ok, closing lock FD 204, unlinking /var/lib/manticore/data/campen_de/vbcms_articledelta.old.spl
[Sat May 11 20:45:03.311 2024] [120014] rotating table 'campen_de_vbcms_article_delta': success
[Sat May 11 20:45:03.311 2024] [120014] DEBUG: seamless rotate local table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.311 2024] [120014] rotating table 'campen_de_vbforum_post_delta': started
[Sat May 11 20:45:03.311 2024] [120014] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:03.311 2024] [120014] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_postdelta.new.spl
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_postdelta.new.spl success
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_post_delta'(/var/lib/manticore/data/campen_de/vbforum_postdelta.new)
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: Preread successfully finished
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: activate new table
[Sat May 11 20:45:03.312 2024] [120014] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:03.312 2024] [120014] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_post_delta': applying other tables killlists
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_post_delta': applying other tables killlists... DONE
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: all went fine; swap them
[Sat May 11 20:45:03.312 2024] [120014] DEBUG: unlink /var/lib/manticore/data/campen_de/vbforum_postdelta.old
[Sat May 11 20:45:03.313 2024] [120014] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_postdelta.old.spl)
[Sat May 11 20:45:03.313 2024] [120014] DEBUG: File ID ok, closing lock FD 197, unlinking /var/lib/manticore/data/campen_de/vbforum_postdelta.old.spl
[Sat May 11 20:45:03.313 2024] [120014] rotating table 'campen_de_vbforum_post_delta': success
[Sat May 11 20:45:03.313 2024] [120014] rotating table: all tables done
[Sat May 11 20:45:03.809 2024] [120012] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Sat May 11 20:45:03.809 2024] [120016] DEBUG: CheckRotate invoked
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  testindex
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table testindex
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_marketplaceitem
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_marketplaceitem
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_forum
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_forum
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_post_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_post_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_post
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_post
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_thread
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_thread
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_article_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_article_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_article
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_article
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_vbcms_staticpage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_vbcms_staticpage
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: keep existing table  campen_de_searchterms
[Sat May 11 20:45:03.859 2024] [120016] DEBUG: Keep existing before local table campen_de_searchterms
[Sat May 11 20:45:03.859 2024] [120016] nothing to rotate after SIGHUP
[Sat May 11 20:45:04.379 2024] [120012] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Sat May 11 20:45:04.379 2024] [120014] DEBUG: CheckRotate invoked
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  testindex
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table testindex
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_marketplaceitem
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_marketplaceitem
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_forum
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_forum
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_post
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_post
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroup
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroup
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_socialgroupmessage
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: add deferred table campen_de_vbforum_thread_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_thread
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_thread
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbforum_visitormessage
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbforum_visitormessage
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_article
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_article
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage_delta
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: keep existing table  campen_de_vbcms_staticpage
[Sat May 11 20:45:04.416 2024] [120014] DEBUG: Keep existing before local table campen_de_vbcms_staticpage
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: keep existing table  campen_de_searchterms
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: Keep existing before local table campen_de_searchterms
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: will rotate campen_de_vbforum_thread_delta
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: TaskRotation starts with 1 deferred tables
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: seamless rotate local table campen_de_vbforum_thread_delta
[Sat May 11 20:45:04.417 2024] [120014] rotating table 'campen_de_vbforum_thread_delta': started
[Sat May 11 20:45:04.417 2024] [120014] DEBUG: prealloc enough RAM and lock new table
[Sat May 11 20:45:04.418 2024] [120014] WARNING: secondary library not loaded; secondary index(es) disabled
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: Locking the table via file /var/lib/manticore/data/campen_de/vbforum_threaddelta.new.spl
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: lock /var/lib/manticore/data/campen_de/vbforum_threaddelta.new.spl success
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: CSphIndex_VLN::Preread invoked 'campen_de_vbforum_thread_delta'(/var/lib/manticore/data/campen_de/vbforum_threaddelta.new)
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: Preread successfully finished
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: activate new table
[Sat May 11 20:45:04.418 2024] [120014] RW-idx for rename to .old, acquiring...
[Sat May 11 20:45:04.418 2024] [120014] RW-idx for rename to .old, acquired...
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_thread_delta': applying other tables killlists
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_thread_delta': applying other tables killlists... DONE
[Sat May 11 20:45:04.418 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)
[Sat May 11 20:45:04.419 2024] [120014] DEBUG: rotating table 'campen_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Sat May 11 20:45:04.419 2024] [120014] DEBUG: all went fine; swap them
[Sat May 11 20:45:04.419 2024] [120014] DEBUG: unlink /var/lib/manticore/data/campen_de/vbforum_threaddelta.old
[Sat May 11 20:45:04.421 2024] [120014] DEBUG: Unlocking the table (lock /var/lib/manticore/data/campen_de/vbforum_threaddelta.old.spl)
[Sat May 11 20:45:04.421 2024] [120014] DEBUG: File ID ok, closing lock FD 177, unlinking /var/lib/manticore/data/campen_de/vbforum_threaddelta.old.spl
[Sat May 11 20:45:04.421 2024] [120014] rotating table 'campen_de_vbforum_thread_delta': success
[Sat May 11 20:45:04.421 2024] [120014] rotating table: all tables done

KirbyDE avatar May 12 '24 19:05 KirbyDE

Another case from another production instance

indexer.log

[Thu May 16 10:30:02.231 2024] [1747631] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.266 2024] [1747629] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.269 2024] [1747639] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.272 2024] [1747643] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.276 2024] [1747641] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.280 2024] [1747649] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.286 2024] [1747647] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.294 2024] [1747645] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.360 2024] [1747631] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.360 2024] [1747631] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.360 2024] [1747631] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.360 2024] [1747631] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.360 2024] [1747631] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.360 2024] [1747631] indexing table 'bastelforum_de_vbcms_article_delta'...
[Thu May 16 10:30:02.368 2024] [1747641] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.368 2024] [1747641] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.368 2024] [1747641] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.368 2024] [1747641] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.368 2024] [1747641] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.368 2024] [1747641] indexing table 'bastelforum_de_vbcms_staticpage_delta'...
[Thu May 16 10:30:02.379 2024] [1747643] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.379 2024] [1747643] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.379 2024] [1747643] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.379 2024] [1747643] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.379 2024] [1747643] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.379 2024] [1747643] indexing table 'bastelforum_de_vbforum_socialgroupmessage_delta'...
[Thu May 16 10:30:02.382 2024] [1747629] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.382 2024] [1747629] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.383 2024] [1747629] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.383 2024] [1747629] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.383 2024] [1747629] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.383 2024] [1747629] indexing table 'bastelforum_de_vbforum_visitormessage_delta'...
[Thu May 16 10:30:02.393 2024] [1747647] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.393 2024] [1747647] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.393 2024] [1747647] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.393 2024] [1747647] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.393 2024] [1747647] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.393 2024] [1747647] indexing table 'bastelforum_de_vbforum_socialgroup_delta'...
[Thu May 16 10:30:02.401 2024] [1747639] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.401 2024] [1747639] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.401 2024] [1747639] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.401 2024] [1747639] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.401 2024] [1747639] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.401 2024] [1747639] indexing table 'bastelforum_de_vbforum_thread_delta'...
[Thu May 16 10:30:02.456 2024] [1747649] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.457 2024] [1747649] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.457 2024] [1747649] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.457 2024] [1747649] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.457 2024] [1747649] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.457 2024] [1747649] indexing table 'bastelforum_de_vbforum_forum_delta'...
[Thu May 16 10:30:02.486 2024] [1747645] Manticore 6.2.12 dc5144d35@230822 (columnar 2.2.4 5aec342@230822) (secondary 2.2.4 5aec342@230822)
[Thu May 16 10:30:02.486 2024] [1747645] Copyright (c) 2001-2016, Andrew Aksyonoff
[Thu May 16 10:30:02.486 2024] [1747645] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Thu May 16 10:30:02.486 2024] [1747645] Copyright (c) 2017-2023, Manticore Software LTD (https://manticoresearch.com)
[Thu May 16 10:30:02.486 2024] [1747645] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Thu May 16 10:30:02.486 2024] [1747645] indexing table 'bastelforum_de_vbforum_post_delta'...
[Thu May 16 10:30:02.626 2024] [1747643] collected 0 docs, 0.0 MB
[Thu May 16 10:30:02.642 2024] [1747643] creating secondary index
[Thu May 16 10:30:02.650 2024] [1747631] collected 25 docs, 0.1 MB
[Thu May 16 10:30:02.656 2024] [1747631] creating secondary index
[Thu May 16 10:30:02.657 2024] [1747631] WARNING: kill-list not empty but no killlist_target specified
[Thu May 16 10:30:02.657 2024] [1747631] creating lookup: 0.0 Kdocs, 100.0% done
[Thu May 16 10:30:02.660 2024] [1747631] sorted 0.0 Mhits, 100.0% done
[Thu May 16 10:30:02.662 2024] [1747643] total 0 docs, 0 bytes
[Thu May 16 10:30:02.662 2024] [1747643] total 0.152 sec, 0 bytes/sec, 0.00 docs/sec
[Thu May 16 10:30:02.662 2024] [1747643] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.662 2024] [1747643] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.662 2024] [1747643] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.662 2024] [1747643] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.694 2024] [1747631] total 25 docs, 110370 bytes
[Thu May 16 10:30:02.694 2024] [1747631] total 0.260 sec, 423753 bytes/sec, 95.98 docs/sec
[Thu May 16 10:30:02.694 2024] [1747631] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.694 2024] [1747631] total 70 reads, 0.001 sec, 103.9 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.694 2024] [1747631] total 18 writes, 0.005 sec, 27.7 kb/call avg, 0.3 msec/call avg
[Thu May 16 10:30:02.694 2024] [1747631] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.740 2024] [1747629] collected 0 docs, 0.0 MB
[Thu May 16 10:30:02.740 2024] [1747629] creating secondary index
[Thu May 16 10:30:02.744 2024] [1747647] collected 0 docs, 0.0 MB
[Thu May 16 10:30:02.744 2024] [1747641] collected 2 docs, 0.0 MB
[Thu May 16 10:30:02.745 2024] [1747641] creating secondary index
[Thu May 16 10:30:02.746 2024] [1747641] WARNING: kill-list not empty but no killlist_target specified
[Thu May 16 10:30:02.746 2024] [1747641] creating lookup: 0.0 Kdocs, 100.0% done
[Thu May 16 10:30:02.746 2024] [1747641] sorted 0.0 Mhits, 100.0% done
[Thu May 16 10:30:02.748 2024] [1747641] total 2 docs, 14670 bytes
[Thu May 16 10:30:02.749 2024] [1747641] total 0.202 sec, 72364 bytes/sec, 9.86 docs/sec
[Thu May 16 10:30:02.749 2024] [1747641] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.749 2024] [1747641] total 70 reads, 0.000 sec, 100.6 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.749 2024] [1747641] total 18 writes, 0.000 sec, 2.9 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.749 2024] [1747641] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.757 2024] [1747647] creating secondary index
[Thu May 16 10:30:02.759 2024] [1747629] total 0 docs, 0 bytes
[Thu May 16 10:30:02.759 2024] [1747629] total 0.192 sec, 0 bytes/sec, 0.00 docs/sec
[Thu May 16 10:30:02.759 2024] [1747629] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.759 2024] [1747629] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.759 2024] [1747629] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.759 2024] [1747629] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.771 2024] [1747647] total 0 docs, 0 bytes
[Thu May 16 10:30:02.771 2024] [1747647] total 0.208 sec, 0 bytes/sec, 0.00 docs/sec
[Thu May 16 10:30:02.771 2024] [1747647] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.771 2024] [1747647] total 67 reads, 0.000 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.771 2024] [1747647] total 10 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.771 2024] [1747647] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.815 2024] [1747649] collected 3 docs, 0.0 MB
[Thu May 16 10:30:02.817 2024] [1747649] creating secondary index
[Thu May 16 10:30:02.821 2024] [1747649] WARNING: kill-list not empty but no killlist_target specified
[Thu May 16 10:30:02.821 2024] [1747649] creating lookup: 0.0 Kdocs, 100.0% done
[Thu May 16 10:30:02.821 2024] [1747649] sorted 0.0 Mhits, 100.0% done
[Thu May 16 10:30:02.824 2024] [1747645] collected 4 docs, 0.0 MB
[Thu May 16 10:30:02.825 2024] [1747649] total 3 docs, 240 bytes
[Thu May 16 10:30:02.825 2024] [1747649] total 0.205 sec, 1166 bytes/sec, 14.57 docs/sec
[Thu May 16 10:30:02.825 2024] [1747649] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.825 2024] [1747649] total 70 reads, 0.000 sec, 100.2 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.825 2024] [1747649] total 18 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.825 2024] [1747649] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.826 2024] [1747645] creating secondary index
[Thu May 16 10:30:02.828 2024] [1747645] WARNING: kill-list not empty but no killlist_target specified
[Thu May 16 10:30:02.828 2024] [1747645] creating lookup: 0.0 Kdocs, 100.0% done
[Thu May 16 10:30:02.830 2024] [1747645] sorted 0.0 Mhits, 100.0% done
[Thu May 16 10:30:02.834 2024] [1747645] total 4 docs, 1857 bytes
[Thu May 16 10:30:02.834 2024] [1747645] total 0.203 sec, 9116 bytes/sec, 19.63 docs/sec
[Thu May 16 10:30:02.834 2024] [1747645] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.834 2024] [1747645] total 70 reads, 0.000 sec, 100.3 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.834 2024] [1747645] total 18 writes, 0.000 sec, 1.1 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.834 2024] [1747645] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.881 2024] [1747639] collected 5011 docs, 0.1 MB
[Thu May 16 10:30:02.894 2024] [1747639] creating secondary index
[Thu May 16 10:30:02.899 2024] [1747639] WARNING: kill-list not empty but no killlist_target specified
[Thu May 16 10:30:02.899 2024] [1747639] creating lookup: 5.0 Kdocs, 100.0% done
[Thu May 16 10:30:02.903 2024] [1747639] sorted 0.0 Mhits, 100.0% done
[Thu May 16 10:30:02.913 2024] [1747639] total 5011 docs, 121952 bytes
[Thu May 16 10:30:02.913 2024] [1747639] total 0.431 sec, 282765 bytes/sec, 11618.82 docs/sec
[Thu May 16 10:30:02.913 2024] [1747639] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).
[Thu May 16 10:30:02.913 2024] [1747639] total 70 reads, 0.001 sec, 106.9 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.913 2024] [1747639] total 20 writes, 0.001 sec, 82.0 kb/call avg, 0.0 msec/call avg
[Thu May 16 10:30:02.913 2024] [1747639] rotating tables: successfully sent SIGHUP to searchd (pid=1564089).

searchd.log

[Thu May 16 10:30:02.647 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:02.647 2024] [1564090] DEBUG: CheckRotate invoked
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: keep existing table  testindex
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:02.685 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: will rotate bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: will rotate bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: TaskRotation starts with 2 deferred tables
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbcms_article_delta
[Thu May 16 10:30:02.686 2024] [1564090] rotating table 'bastelforum_de_vbcms_article_delta': started
[Thu May 16 10:30:02.686 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.687 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl
[Thu May 16 10:30:02.693 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl success
[Thu May 16 10:30:02.693 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbcms_article_delta'(/var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new)
[Thu May 16 10:30:02.693 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.693 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.693 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.693 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.694 2024] [1564090] WARNING: RotateIndexMT error: table bastelforum_de_vbcms_article_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl to /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.spl, fd=202, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu May 16 10:30:02.694 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.spl)
[Thu May 16 10:30:02.694 2024] [1564090] DEBUG: File ID ok, closing lock FD 201, unlinking /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.spl
[Thu May 16 10:30:02.694 2024] [1564090] WARNING: table 'bastelforum_de_vbcms_article_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl to /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.spl, fd=202, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Thu May 16 10:30:02.694 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.694 2024] [1564090] rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': started
[Thu May 16 10:30:02.694 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.new.spl
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.new.spl success
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_socialgroupmessage_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.new)
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.695 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.695 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.old
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.old.spl)
[Thu May 16 10:30:02.695 2024] [1564090] DEBUG: File ID ok, closing lock FD 125, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupmessagedelta.old.spl
[Thu May 16 10:30:02.695 2024] [1564090] rotating table 'bastelforum_de_vbforum_socialgroupmessage_delta': success
[Thu May 16 10:30:02.695 2024] [1564090] rotating table: all tables done
[Thu May 16 10:30:02.696 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:02.696 2024] [1564091] DEBUG: CheckRotate invoked
[Thu May 16 10:30:02.696 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl)
[Thu May 16 10:30:02.696 2024] [1564090] DEBUG: File ID ok, closing lock FD 202, unlinking /var/lib/manticore/data/bastelforum_de/vbcms_articledelta.new.spl
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  testindex
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:02.742 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:02.742 2024] [1564091] nothing to rotate after SIGHUP
[Thu May 16 10:30:02.747 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:02.747 2024] [1564090] DEBUG: CheckRotate invoked
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  testindex
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: will rotate bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: will rotate bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: will rotate bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: TaskRotation starts with 3 deferred tables
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.792 2024] [1564090] rotating table 'bastelforum_de_vbcms_staticpage_delta': started
[Thu May 16 10:30:02.792 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.new.spl
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.new.spl success
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbcms_staticpage_delta'(/var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.new)
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.793 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.793 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbcms_staticpage_delta': applying other tables killlists
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbcms_staticpage_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbcms_staticpage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.793 2024] [1564090] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.795 2024] [1564090] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.old
[Thu May 16 10:30:02.795 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.old.spl)
[Thu May 16 10:30:02.795 2024] [1564090] DEBUG: File ID ok, closing lock FD 203, unlinking /var/lib/manticore/data/bastelforum_de/vbcms_staticpagedelta.old.spl
[Thu May 16 10:30:02.796 2024] [1564090] rotating table 'bastelforum_de_vbcms_staticpage_delta': success
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.796 2024] [1564090] rotating table 'bastelforum_de_vbforum_visitormessage_delta': started
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.new.spl
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.new.spl success
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_visitormessage_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.new)
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.796 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.796 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_visitormessage_delta': applying other tables killlists
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_visitormessage_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.old
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.old.spl)
[Thu May 16 10:30:02.796 2024] [1564090] DEBUG: File ID ok, closing lock FD 124, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_visitormessagedelta.old.spl
[Thu May 16 10:30:02.797 2024] [1564090] rotating table 'bastelforum_de_vbforum_visitormessage_delta': success
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.797 2024] [1564090] rotating table 'bastelforum_de_vbforum_socialgroup_delta': started
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.new.spl
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.new.spl success
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_socialgroup_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.new)
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.797 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.797 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroup_delta': applying other tables killlists
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroup_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.old
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.old.spl)
[Thu May 16 10:30:02.797 2024] [1564090] DEBUG: File ID ok, closing lock FD 113, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_socialgroupdelta.old.spl
[Thu May 16 10:30:02.798 2024] [1564090] rotating table 'bastelforum_de_vbforum_socialgroup_delta': success
[Thu May 16 10:30:02.798 2024] [1564090] rotating table: all tables done
[Thu May 16 10:30:02.818 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:02.818 2024] [1564091] DEBUG: CheckRotate invoked
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  testindex
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: add deferred table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: add deferred table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.856 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: will rotate bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: will rotate bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: TaskRotation starts with 2 deferred tables
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: seamless rotate local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.857 2024] [1564091] rotating table 'bastelforum_de_vbforum_post_delta': started
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_postdelta.new.spl
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_postdelta.new.spl success
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_post_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_postdelta.new)
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.857 2024] [1564091] DEBUG: activate new table
[Thu May 16 10:30:02.857 2024] [1564091] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.857 2024] [1564091] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_post_delta': applying other tables killlists
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_post_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_postdelta.old
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_postdelta.old.spl)
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: File ID ok, closing lock FD 196, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_postdelta.old.spl
[Thu May 16 10:30:02.858 2024] [1564091] rotating table 'bastelforum_de_vbforum_post_delta': success
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: seamless rotate local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.858 2024] [1564091] rotating table 'bastelforum_de_vbforum_forum_delta': started
[Thu May 16 10:30:02.858 2024] [1564091] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.new.spl
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.new.spl success
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_forum_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.new)
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: activate new table
[Thu May 16 10:30:02.859 2024] [1564091] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.859 2024] [1564091] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_forum_delta': applying other tables killlists
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_forum_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_forum_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: rotating table 'bastelforum_de_vbforum_forum_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.old
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.old.spl)
[Thu May 16 10:30:02.859 2024] [1564091] DEBUG: File ID ok, closing lock FD 200, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_forumdelta.old.spl
[Thu May 16 10:30:02.859 2024] [1564091] rotating table 'bastelforum_de_vbforum_forum_delta': success
[Thu May 16 10:30:02.859 2024] [1564091] rotating table: all tables done
[Thu May 16 10:30:02.908 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:02.908 2024] [1564090] DEBUG: CheckRotate invoked
[Thu May 16 10:30:02.941 2024] [1564090] DEBUG: keep existing table  testindex
[Thu May 16 10:30:02.941 2024] [1564090] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: add deferred table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: will rotate bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: TaskRotation starts with 1 deferred tables
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: seamless rotate local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:02.942 2024] [1564090] rotating table 'bastelforum_de_vbforum_thread_delta': started
[Thu May 16 10:30:02.942 2024] [1564090] DEBUG: prealloc enough RAM and lock new table
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: Locking the table via file /var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.new.spl
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: lock /var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.new.spl success
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: CSphIndex_VLN::Preread invoked 'bastelforum_de_vbforum_thread_delta'(/var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.new)
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: Preread successfully finished
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: activate new table
[Thu May 16 10:30:02.943 2024] [1564090] RW-idx for rename to .old, acquiring...
[Thu May 16 10:30:02.943 2024] [1564090] RW-idx for rename to .old, acquired...
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_thread_delta': applying other tables killlists
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_thread_delta': applying other tables killlists... DONE
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: rotating table 'bastelforum_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: all went fine; swap them
[Thu May 16 10:30:02.943 2024] [1564090] DEBUG: unlink /var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.old
[Thu May 16 10:30:02.944 2024] [1564090] DEBUG: Unlocking the table (lock /var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.old.spl)
[Thu May 16 10:30:02.944 2024] [1564090] DEBUG: File ID ok, closing lock FD 163, unlinking /var/lib/manticore/data/bastelforum_de/vbforum_threaddelta.old.spl
[Thu May 16 10:30:02.944 2024] [1564090] rotating table 'bastelforum_de_vbforum_thread_delta': success
[Thu May 16 10:30:02.944 2024] [1564090] rotating table: all tables done
[Thu May 16 10:30:03.444 2024] [1564089] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Thu May 16 10:30:03.444 2024] [1564091] DEBUG: CheckRotate invoked
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  testindex
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table testindex
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_forum
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_forum
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_post
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_post
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroup
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_socialgroupmessage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_thread
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_thread
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbforum_visitormessage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_article
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_article
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage_delta
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_vbcms_staticpage
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: keep existing table  bastelforum_de_searchterms
[Thu May 16 10:30:03.481 2024] [1564091] DEBUG: Keep existing before local table bastelforum_de_searchterms
[Thu May 16 10:30:03.481 2024] [1564091] nothing to rotate after SIGHUP

KirbyDE avatar May 17 '24 08:05 KirbyDE

Note sure if further logs provide any useful additional info, but it happend again on another production instance.

searchd.log

[Wed Jun  5 06:45:03.363 2024] [3883720] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jun  5 06:45:03.363 2024] [3883722] DEBUG: CheckRotate invoked
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table testindex
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table testindex
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: add deferred table biologielk_de_vbforum_forum_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_forum_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_forum_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: add deferred table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: add deferred table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: add deferred table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: keep existing table biologielk_de_searchterms
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_searchterms
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: will rotate biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: will rotate biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: will rotate biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: will rotate biologielk_de_vbforum_forum_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: TaskRotation starts with 4 deferred tables
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: seamless rotate local table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.415 2024] [3883722] rotating table 'biologielk_de_vbforum_visitormessage_delta': started
[Wed Jun  5 06:45:03.415 2024] [3883722] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.416 2024] [3883722] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.new.spl
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.new.spl success
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_visitormessage_delta'(/var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.new)
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: activate new table
[Wed Jun  5 06:45:03.416 2024] [3883722] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.416 2024] [3883722] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_visitormessage_delta': applying other tables killlists
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_visitormessage_delta': applying other tables killlists... DONE
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_visitormessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: all went fine; swap them
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: unlink /var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.old
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.old.spl)
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: File ID ok, closing lock FD 71, unlinking /var/lib/manticore/data/biologielk_de/vbforum_visitormessagedelta.old.spl
[Wed Jun  5 06:45:03.416 2024] [3883722] rotating table 'biologielk_de_vbforum_visitormessage_delta': success
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: seamless rotate local table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.416 2024] [3883722] rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': started
[Wed Jun  5 06:45:03.416 2024] [3883722] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.417 2024] [3883722] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.new.spl
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.new.spl success
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_socialgroupmessage_delta'(/var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.new)
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: activate new table
[Wed Jun  5 06:45:03.417 2024] [3883722] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.417 2024] [3883722] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': applying other tables killlists
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': applying other tables killlists... DONE
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: all went fine; swap them
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: unlink /var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.old
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.old.spl)
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: File ID ok, closing lock FD 135, unlinking /var/lib/manticore/data/biologielk_de/vbforum_socialgroupmessagedelta.old.spl
[Wed Jun  5 06:45:03.417 2024] [3883722] rotating table 'biologielk_de_vbforum_socialgroupmessage_delta': success
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: seamless rotate local table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.417 2024] [3883722] rotating table 'biologielk_de_vbforum_post_delta': started
[Wed Jun  5 06:45:03.417 2024] [3883722] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.418 2024] [3883722] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_postdelta.new.spl
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_postdelta.new.spl success
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_post_delta'(/var/lib/manticore/data/biologielk_de/vbforum_postdelta.new)
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: activate new table
[Wed Jun  5 06:45:03.418 2024] [3883722] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.418 2024] [3883722] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_post_delta': applying other tables killlists
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_post_delta': applying other tables killlists... DONE
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_post_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: all went fine; swap them
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: unlink /var/lib/manticore/data/biologielk_de/vbforum_postdelta.old
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_postdelta.old.spl)
[Wed Jun  5 06:45:03.418 2024] [3883722] DEBUG: File ID ok, closing lock FD 54, unlinking /var/lib/manticore/data/biologielk_de/vbforum_postdelta.old.spl
[Wed Jun  5 06:45:03.419 2024] [3883722] rotating table 'biologielk_de_vbforum_post_delta': success
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: seamless rotate local table biologielk_de_vbforum_forum_delta
[Wed Jun  5 06:45:03.419 2024] [3883722] rotating table 'biologielk_de_vbforum_forum_delta': started
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.419 2024] [3883722] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl success
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_forum_delta'(/var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new)
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.419 2024] [3883722] DEBUG: activate new table
[Wed Jun  5 06:45:03.419 2024] [3883722] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.419 2024] [3883722] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.419 2024] [3883722] WARNING: RotateIndexMT error: table biologielk_de_vbforum_forum_delta, error rename to '.new' failed: failed to rename lock /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.spl, fd=54, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Wed Jun  5 06:45:03.421 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.spl)
[Wed Jun  5 06:45:03.421 2024] [3883722] DEBUG: File ID ok, closing lock FD 89, unlinking /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.spl
[Wed Jun  5 06:45:03.421 2024] [3883722] WARNING: table 'biologielk_de_vbforum_forum_delta': rename to '.new' failed: failed to rename lock /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl to /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.spl, fd=54, error No such file or directory (2); ; rollback also failed, TABLE UNUSABLE
[Wed Jun  5 06:45:03.421 2024] [3883722] rotating table: all tables done
[Wed Jun  5 06:45:03.421 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl)
[Wed Jun  5 06:45:03.421 2024] [3883722] DEBUG: File ID ok, closing lock FD 54, unlinking /var/lib/manticore/data/biologielk_de/vbforum_forumdelta.new.spl
[Wed Jun  5 06:45:03.423 2024] [3883720] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jun  5 06:45:03.423 2024] [3883721] DEBUG: CheckRotate invoked
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table testindex
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table testindex
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: keep existing table biologielk_de_searchterms
[Wed Jun  5 06:45:03.471 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_searchterms
[Wed Jun  5 06:45:03.471 2024] [3883721] nothing to rotate after SIGHUP
[Wed Jun  5 06:45:03.482 2024] [3883720] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jun  5 06:45:03.482 2024] [3883722] DEBUG: CheckRotate invoked
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table testindex
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table testindex
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: add deferred table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: keep existing table biologielk_de_searchterms
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: Keep existing before local table biologielk_de_searchterms
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: will rotate biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: TaskRotation starts with 1 deferred tables
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: seamless rotate local table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.518 2024] [3883722] rotating table 'biologielk_de_vbforum_socialgroup_delta': started
[Wed Jun  5 06:45:03.518 2024] [3883722] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.519 2024] [3883722] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.new.spl
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.new.spl success
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_socialgroup_delta'(/var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.new)
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: activate new table
[Wed Jun  5 06:45:03.519 2024] [3883722] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.519 2024] [3883722] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroup_delta': applying other tables killlists
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroup_delta': applying other tables killlists... DONE
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: rotating table 'biologielk_de_vbforum_socialgroup_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: all went fine; swap them
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: unlink /var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.old
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.old.spl)
[Wed Jun  5 06:45:03.519 2024] [3883722] DEBUG: File ID ok, closing lock FD 91, unlinking /var/lib/manticore/data/biologielk_de/vbforum_socialgroupdelta.old.spl
[Wed Jun  5 06:45:03.519 2024] [3883722] rotating table 'biologielk_de_vbforum_socialgroup_delta': success
[Wed Jun  5 06:45:03.520 2024] [3883722] rotating table: all tables done
[Wed Jun  5 06:45:03.591 2024] [3883720] caught SIGHUP (seamless=1, in_rotate=0, need_rotate=0)
[Wed Jun  5 06:45:03.591 2024] [3883721] DEBUG: CheckRotate invoked
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table testindex
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table testindex
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_forum
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_post_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_post
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroup
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.628 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_socialgroupmessage
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: add deferred table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_thread
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: keep existing table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_vbforum_visitormessage
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: keep existing table biologielk_de_searchterms
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Keep existing before local table biologielk_de_searchterms
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: will rotate biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: TaskRotation starts with 1 deferred tables
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: seamless rotate local table biologielk_de_vbforum_thread_delta
[Wed Jun  5 06:45:03.629 2024] [3883721] rotating table 'biologielk_de_vbforum_thread_delta': started
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: prealloc enough RAM and lock new table
[Wed Jun  5 06:45:03.629 2024] [3883721] WARNING: secondary library not loaded; secondary index(es) disabled
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: Locking the table via file /var/lib/manticore/data/biologielk_de/vbforum_threaddelta.new.spl
[Wed Jun  5 06:45:03.629 2024] [3883721] DEBUG: lock /var/lib/manticore/data/biologielk_de/vbforum_threaddelta.new.spl success
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: CSphIndex_VLN::Preread invoked 'biologielk_de_vbforum_thread_delta'(/var/lib/manticore/data/biologielk_de/vbforum_threaddelta.new)
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: Preread successfully finished
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: activate new table
[Wed Jun  5 06:45:03.630 2024] [3883721] RW-idx for rename to .old, acquiring...
[Wed Jun  5 06:45:03.630 2024] [3883721] RW-idx for rename to .old, acquired...
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: rotating table 'biologielk_de_vbforum_thread_delta': applying other tables killlists
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: rotating table 'biologielk_de_vbforum_thread_delta': applying other tables killlists... DONE
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: rotating table 'biologielk_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: rotating table 'biologielk_de_vbforum_thread_delta': apply killlist from this table to other tables (killlist_target)... DONE
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: all went fine; swap them
[Wed Jun  5 06:45:03.630 2024] [3883721] DEBUG: unlink /var/lib/manticore/data/biologielk_de/vbforum_threaddelta.old
[Wed Jun  5 06:45:03.631 2024] [3883721] DEBUG: Unlocking the table (lock /var/lib/manticore/data/biologielk_de/vbforum_threaddelta.old.spl)
[Wed Jun  5 06:45:03.631 2024] [3883721] DEBUG: File ID ok, closing lock FD 139, unlinking /var/lib/manticore/data/biologielk_de/vbforum_threaddelta.old.spl
[Wed Jun  5 06:45:03.631 2024] [3883721] rotating table 'biologielk_de_vbforum_thread_delta': success
[Wed Jun  5 06:45:03.631 2024] [3883721] rotating table: all tables done

indexer.log

[Wed Jun 5 06:45:02.879 2024] [3914604] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_thread_delta
[Wed Jun 5 06:45:02.904 2024] [3914611] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_visitormessage_delta
[Wed Jun 5 06:45:02.911 2024] [3914613] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_socialgroupmessage_delta
[Wed Jun 5 06:45:02.919 2024] [3914616] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_socialgroup_delta
[Wed Jun 5 06:45:02.923 2024] [3914619] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_post_delta
[Wed Jun 5 06:45:02.927 2024] [3914618] sudo -u manticore /usr/bin/indexer --config /etc/manticoresearch/sphinx.indexer.conf --sighup-each --rotate biologielk_de_vbforum_forum_delta
[Wed Jun 5 06:45:02.993 2024] [3914616] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:02.993 2024] [3914616] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:02.993 2024] [3914616] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:02.993 2024] [3914616] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:02.993 2024] [3914616] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:02.993 2024] [3914616] indexing table 'biologielk_de_vbforum_socialgroup_delta'...
[Wed Jun 5 06:45:02.998 2024] [3914613] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:02.998 2024] [3914613] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:02.998 2024] [3914613] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:02.998 2024] [3914613] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:02.998 2024] [3914613] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:02.998 2024] [3914613] indexing table 'biologielk_de_vbforum_socialgroupmessage_delta'...
[Wed Jun 5 06:45:03.010 2024] [3914611] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:03.010 2024] [3914611] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:03.010 2024] [3914611] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:03.010 2024] [3914611] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:03.010 2024] [3914611] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:03.010 2024] [3914611] indexing table 'biologielk_de_vbforum_visitormessage_delta'...
[Wed Jun 5 06:45:03.029 2024] [3914619] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:03.029 2024] [3914619] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:03.029 2024] [3914619] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:03.029 2024] [3914619] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:03.029 2024] [3914619] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:03.029 2024] [3914619] indexing table 'biologielk_de_vbforum_post_delta'...
[Wed Jun 5 06:45:03.034 2024] [3914604] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:03.034 2024] [3914604] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:03.034 2024] [3914604] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:03.034 2024] [3914604] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:03.034 2024] [3914604] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:03.034 2024] [3914604] indexing table 'biologielk_de_vbforum_thread_delta'...
[Wed Jun 5 06:45:03.036 2024] [3914618] Manticore 6.3.0 1811a9efb@24052209
[Wed Jun 5 06:45:03.036 2024] [3914618] Copyright (c) 2001-2016, Andrew Aksyonoff
[Wed Jun 5 06:45:03.036 2024] [3914618] Copyright (c) 2008-2016, Sphinx Technologies Inc (http://sphinxsearch.com)
[Wed Jun 5 06:45:03.036 2024] [3914618] Copyright (c) 2017-2024, Manticore Software LTD (https://manticoresearch.com)
[Wed Jun 5 06:45:03.036 2024] [3914618] using config file '/etc/manticoresearch/sphinx.indexer.conf'...
[Wed Jun 5 06:45:03.036 2024] [3914618] indexing table 'biologielk_de_vbforum_forum_delta'...
[Wed Jun 5 06:45:03.235 2024] [3914611] collected 0 docs, 0.0 MB
[Wed Jun 5 06:45:03.245 2024] [3914619] collected 0 docs, 0.0 MB
[Wed Jun 5 06:45:03.296 2024] [3914613] collected 0 docs, 0.0 MB
[Wed Jun 5 06:45:03.301 2024] [3914618] collected 0 docs, 0.0 MB
[Wed Jun 5 06:45:03.320 2024] [3914616] collected 0 docs, 0.0 MB
[Wed Jun 5 06:45:03.370 2024] [3914611] total 0 docs, 0 bytes
[Wed Jun 5 06:45:03.370 2024] [3914611] total 0.244 sec, 0 bytes/sec, 0.00 docs/sec
[Wed Jun 5 06:45:03.370 2024] [3914611] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.370 2024] [3914611] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.370 2024] [3914611] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.370 2024] [3914611] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.426 2024] [3914619] total 0 docs, 0 bytes
[Wed Jun 5 06:45:03.426 2024] [3914619] total 0.313 sec, 0 bytes/sec, 0.00 docs/sec
[Wed Jun 5 06:45:03.426 2024] [3914619] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.426 2024] [3914619] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.426 2024] [3914619] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.426 2024] [3914619] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.432 2024] [3914618] total 0 docs, 0 bytes
[Wed Jun 5 06:45:03.432 2024] [3914618] total 0.258 sec, 0 bytes/sec, 0.00 docs/sec
[Wed Jun 5 06:45:03.432 2024] [3914618] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.432 2024] [3914618] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.432 2024] [3914618] total 10 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.432 2024] [3914618] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.432 2024] [3914613] total 0 docs, 0 bytes
[Wed Jun 5 06:45:03.432 2024] [3914613] total 0.258 sec, 0 bytes/sec, 0.00 docs/sec
[Wed Jun 5 06:45:03.432 2024] [3914613] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.433 2024] [3914613] total 67 reads, 0.001 sec, 104.7 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.433 2024] [3914613] total 10 writes, 0.000 sec, 0.5 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.433 2024] [3914613] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.495 2024] [3914616] total 0 docs, 0 bytes
[Wed Jun 5 06:45:03.495 2024] [3914616] total 0.339 sec, 0 bytes/sec, 0.00 docs/sec
[Wed Jun 5 06:45:03.495 2024] [3914616] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.495 2024] [3914616] total 67 reads, 0.026 sec, 104.7 kb/call avg, 0.3 msec/call avg
[Wed Jun 5 06:45:03.495 2024] [3914616] total 10 writes, 0.000 sec, 0.4 kb/call avg, 0.0 msec/call avg
[Wed Jun 5 06:45:03.495 2024] [3914616] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.544 2024] [3914604] collected 8087 docs, 0.2 MB
[Wed Jun 5 06:45:03.553 2024] [3914604] WARNING: kill-list not empty but no killlist_target specified
[Wed Jun 5 06:45:03.553 2024] [3914604] creating lookup: 8.0 Kdocs, 100.0% done
[Wed Jun 5 06:45:03.579 2024] [3914604] sorted 0.0 Mhits, 100.0% done
[Wed Jun 5 06:45:03.592 2024] [3914604] total 8087 docs, 250330 bytes
[Wed Jun 5 06:45:03.592 2024] [3914604] total 0.438 sec, 571104 bytes/sec, 18449.73 docs/sec
[Wed Jun 5 06:45:03.592 2024] [3914604] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).
[Wed Jun 5 06:45:03.592 2024] [3914604] total 70 reads, 0.012 sec, 112.3 kb/call avg, 0.1 msec/call avg
[Wed Jun 5 06:45:03.592 2024] [3914604] total 21 writes, 0.002 sec, 138.3 kb/call avg, 0.1 msec/call avg
[Wed Jun 5 06:45:03.592 2024] [3914604] rotating tables: successfully sent SIGHUP to searchd (pid=3883720).

KirbyDE avatar Jun 05 '24 07:06 KirbyDE

I tried to reproduce this case by indexing empty and small and medium size indexes together

~/build/m_dbg/src/indexer -c a1.conf --sighup-each --rotate main1  &
~/build/m_dbg/src/indexer -c a1.conf --sighup-each --rotate delta1 &
~/build/m_dbg/src/indexer -c a1.conf --sighup-each --rotate delta2 &
~/build/m_dbg/src/indexer -c a1.conf --sighup-each --rotate delta3 &
~/build/m_dbg/src/indexer -c a1.conf --sighup-each --rotate delta4 &

and run multiple indexers in parallel however for me daemon rotates data fine without any RotateIndexMT error messages.

To investigate issue further I need the source data that I could index along with the script that I could run

the indexes rebuild in an endless loop using a clone of a production instance.

and get the same error as you described.

You can upload your data as described in our manual Uploading-your-data

tomatolog avatar Jun 26 '24 11:06 tomatolog