Main+delta schema

There’s a frequent situation when the total dataset is too big to be rebuilt from scratch often, but the amount of new records is rather small. Example: a forum with a 1,000,000 archived posts, but only 1,000 new posts per day.

In this case, “live” (almost real time) table updates could be implemented using so called “main+delta” scheme.

The idea is to set up two sources and two tables, with one “main” table for the data which only changes rarely (if ever), and one “delta” for the new documents. In the example above, 1,000,000 archived posts would go to the main table, and newly inserted 1,000 posts/day would go to the delta table. Delta table could then be rebuilt very frequently, and the documents can be made available to search in a matter of minutes. Specifying which documents should go to what table and rebuilding the main table could also be made fully automatic. One option would be to make a counter table which would track the ID which would split the documents, and update it whenever the main table is rebuilt.

Example: Fully automated live updates

  1. # in MySQL
  2. CREATE TABLE sph_counter
  3. (
  4. counter_id INTEGER PRIMARY KEY NOT NULL,
  5. max_doc_id INTEGER NOT NULL
  6. );
  7. # in sphinx.conf
  8. source main
  9. {
  10. # ...
  11. sql_query_pre = SET NAMES utf8
  12. sql_query_pre = REPLACE INTO sph_counter SELECT 1, MAX(id) FROM documents
  13. sql_query = SELECT id, title, body FROM documents \
  14. WHERE id<=( SELECT max_doc_id FROM sph_counter WHERE counter_id=1 )
  15. }
  16. source delta : main
  17. {
  18. sql_query_pre = SET NAMES utf8
  19. sql_query = SELECT id, title, body FROM documents \
  20. WHERE id>( SELECT max_doc_id FROM sph_counter WHERE counter_id=1 )
  21. }
  22. table main
  23. {
  24. source = main
  25. path = /path/to/main
  26. # ... all the other settings
  27. }
  28. **note how all other settings are copied from main, but source and path are overridden (they MUST be)**
  29. table delta : main
  30. {
  31. source = delta
  32. path = /path/to/delta
  33. }

A better split variable is to use a timestamp column instead of the ID as timestamps can track not just new documents, but also modified ones.

For the datasets that can have documents modified or deleted, the delta table should also provide a list with documents that suffered changes in order to be suppressed and not be used in search queries. This is achieved with the feature called Kill lists. The document ids to be killed can be provided in an auxiliary query defined by sql_query_killlist. The delta must point the tables for which the kill-lists will be applied by directive killlist_target. The effect of kill-lists is permanent on the target table, meaning even if the search is made without the delta table, the suppressed documents will not appear in searches.

Note how we’re overriding sql_query_pre in the delta source. We need to explicitly have that override. Otherwise REPLACE query would be run when building the delta source too, effectively nullifying it. However, when we issue the directive in the inherited source for the first time, it removes all inherited values, so the encoding setup is also lost. So sql_query_pre in the delta can not just be empty; and we need to issue the encoding setup query explicitly once again.

Adding data from tables

Merging tables

Merging two existing plain tables can be more efficient than indexing the data from scratch and desired in some cases (such as merging ‘main’ and ‘delta’ tables instead of simply rebuilding ‘main’ in the ‘main+delta’ partitioning scheme). So indexer has an option to do that. Merging tables is normally faster than rebuilding, but still not instant on huge tables. Basically, it will need to read the contents of the both tables once and write the result once. Merging 100 GB and 1 GB table, for example, will result in 202 GB of I/O (but that’s still likely less than the indexing from scratch requires).

The basic command syntax is as follows:

  1. sudo -u manticore indexer --merge DSTINDEX SRCINDEX [--rotate] [--drop-src]

Unless --drop-src is specified only the DSTINDEX table will be affected: the contents of SRCINDEX will be merged into it.

--rotate switch will be required if DSTINDEX is already being served by searchd.

The typical usage pattern is to merge a smaller update from SRCINDEX into DSTINDEX. Thus, when merging attributes the values from SRCINDEX will win if duplicate document IDs are encountered. Note, however, that the “old” keywords will not be automatically removed in such cases. For example, if there’s a keyword “old” associated with document 123 in DSTINDEX, and a keyword “new” associated with it in SRCINDEX, document 123 will be found by both keywords after the merge. You can supply an explicit condition to remove documents from DSTINDEX to mitigate that; the relevant switch is --merge-dst-range:

  1. sudo -u manticore indexer --merge main delta --merge-dst-range deleted 0 0

This switch lets you apply filters to the destination table along with merging. There can be several filters; all of their conditions must be met in order to include the document in the resulting merged table. In the example above, the filter passes only those records where ‘deleted’ is 0, eliminating all records that were flagged as deleted.

--drop-src allows dropping SRCINDEX after the merge and before rotating the tables, which is important in case you specify DSTINDEX in killlist_target of DSTINDEX, otherwise when rotating the tables the documents that have been merged into DSTINDEX may be suppressed by SRCINDEX.