Cost-based optimizer

When Manticore executes a fullscan query, it can either use plain scan to check every document against the filters, or it can use additional data and/or algorithms to speed up the query execution. To decide which approach to take, Manticore uses a query cost-based optimizer (“CBO” also known as “query optimizer”).

The CBO may decide to replace one or more query filters with one of the following entities if it determines that it will improve performance:

  1. A docid index, which uses a special docid-only secondary index stored in files with the .spt extension. In addition to improving filters on document ids, the docid index is also used to speed up document id to row id lookups, and to speed up the application of large killlists on daemon startup.
  2. A columnar scan, which uses columnar storage and can only be used on a columnar attribute. It still scans every value and tests it against the filter, but it is heavily optimized and is usually faster than the default approach.
  3. Secondary indexes, which are generated for all attributes by default. They use the PGM index together with Manticore’s built-in inverted index to retrieve the list of row ids corresponding to a value or range of values. The secondary indexes are stored in files with the .spidx extension.

The optimizer estimates the cost of each execution path using different attribute statistics, including:

  1. Information on the data distribution within an attribute (histograms, stored in .sphi files). Histograms are generated automatically when data is indexed and are the main source of information for the CBO.
  2. Information from PGM (secondary indexes), which is used to estimate the number of document lists to read. This helps to estimate doclist merge performance and to choose the correct merge algorithm (priority queue merge or bitmap merge).
  3. Columnar encoding statistics, which are used to estimate columnar data decompression performance.
  4. A columnar min-max tree. The CBO uses histograms to estimate the number of documents left after the filter was applied, but it also needs to estimate how many documents the filter had to process. For columnar attributes, partial evaluation of the min-max tree is used for that purpose.

The optimizer calculates the execution cost for every filter used in a query. Because certain filters can be replaced with several different entities (e.g., for a document id, Manticore can use a plain scan, a docid index lookup, a columnar scan (if the document id is columnar), and a secondary index), the optimizer evaluates every available combination. Note that there is a maximum limit of 1024 combinations.

To estimate query execution costs, the optimizer calculates the estimated costs of the most significant operations that are performed when the query is executed. It uses preset constants to represent the cost of each operation.

The optimizer compares the costs of each execution path and chooses the path with the lowest cost to execute the query.

Another thing to consider is multithreaded query execution (when pseudo_sharding is enabled). The CBO knows that some queries can be executed in multiple threads and takes that into account. The CBO favors smaller query execution times (i.e., latency) over throughput. For example, if a query using a columnar scan can be executed in multiple threads (and occupy multiple CPU cores) and is faster than a query executed in a single thread using secondary indexes, multithreaded execution will be preferred.

Queries using secondary indexes and docid indexes always run in a single thread, as benchmarks show that there is little to no benefit in making them multithreaded.

Currently, the optimizer only uses CPU costs and does not consider memory or disk usage.

Updating table schema

Updating table schema in RT mode

  1. ALTER TABLE table ADD COLUMN column_name [{INTEGER|INT|BIGINT|FLOAT|BOOL|MULTI|MULTI64|JSON|STRING|TIMESTAMP|TEXT [INDEXED [ATTRIBUTE]]}] [engine='columnar']
  2. ALTER TABLE table DROP COLUMN column_name

It supports adding one field at a time for RT tables. Supported data types are:

  • int - integer attribute
  • timestamp - timestamp attribute
  • bigint - big integer attribute
  • float - float attribute
  • bool - boolean attribute
  • multi - multi-valued integer attribute
  • multi64 - multi-valued bigint attribute
  • json - json attribute
  • string / text attribute / string attribute - string attribute
  • text / text indexed stored / string indexed stored - full-text indexed field with original value stored in docstore
  • text indexed / string indexed - full-text indexed field, indexed only (the original value is not stored in docstore)
  • text indexed attribute / string indexed attribute - full text indexed field + string attribute (not storing the original value in docstore)
  • text stored / string stored - the value will be only stored in docstore, not full-text indexed, not a string attribute
  • adding engine='columnar' to any attribute (except for json) will make it stored in the columnar storage

Important notes:

  • ❗It’s recommended to backup table files before ALTERing it to avoid data corruption in case of a sudden power interruption or other similar issues.
  • Querying a table is impossible while a column is being added.
  • Newly created attribute’s values are set to 0.
  • ALTER will not work for distributed tables and tables without any attributes.
  • DROP COLUMN will fail if a table has only one field.
  • When dropping a field which is both a full-text field and a string attribute the first ALTER DROP drops the attribute, the second one drops the full-text field.
  • Adding/dropping full-text field is only supported in the RT mode.
  • Example

Example

  1. mysql> desc rt;
  2. +------------+-----------+
  3. | Field | Type |
  4. +------------+-----------+
  5. | id | bigint |
  6. | text | field |
  7. | group_id | uint |
  8. | date_added | timestamp |
  9. +------------+-----------+
  10. mysql> alter table rt add column test integer;
  11. mysql> desc rt;
  12. +------------+-----------+
  13. | Field | Type |
  14. +------------+-----------+
  15. | id | bigint |
  16. | text | field |
  17. | group_id | uint |
  18. | date_added | timestamp |
  19. | test | uint |
  20. +------------+-----------+
  21. mysql> alter table rt drop column group_id;
  22. mysql> desc rt;
  23. +------------+-----------+
  24. | Field | Type |
  25. +------------+-----------+
  26. | id | bigint |
  27. | text | field |
  28. | date_added | timestamp |
  29. | test | uint |
  30. +------------+-----------+
  31. mysql> alter table rt add column title text indexed;
  32. mysql> desc rt;
  33. +------------+-----------+------------+
  34. | Field | Type | Properties |
  35. +------------+-----------+------------+
  36. | id | bigint | |
  37. | text | text | indexed |
  38. | title | text | indexed |
  39. | date_added | timestamp | |
  40. | test | uint | |
  41. +------------+-----------+------------+
  42. mysql> alter table rt add column title text attribute;
  43. mysql> desc rt;
  44. +------------+-----------+------------+
  45. | Field | Type | Properties |
  46. +------------+-----------+------------+
  47. | id | bigint | |
  48. | text | text | indexed |
  49. | title | text | indexed |
  50. | date_added | timestamp | |
  51. | test | uint | |
  52. | title | string | |
  53. +------------+-----------+------------+
  54. mysql> alter table rt drop column title;
  55. mysql> desc rt;
  56. +------------+-----------+------------+
  57. | Field | Type | Properties |
  58. +------------+-----------+------------+
  59. | id | bigint | |
  60. | text | text | indexed |
  61. | title | text | indexed |
  62. | date_added | timestamp | |
  63. | test | uint | |
  64. +------------+-----------+------------+
  65. mysql> alter table rt drop column title;
  66. mysql> desc rt;
  67. +------------+-----------+------------+
  68. | Field | Type | Properties |
  69. +------------+-----------+------------+
  70. | id | bigint | |
  71. | text | text | indexed |
  72. | date_added | timestamp | |
  73. | test | uint | |
  74. +------------+-----------+------------+

Updating table FT settings in RT mode

  1. ALTER TABLE table ft_setting='value'[, ft_setting2='value']

You can also use ALTER to modify full-text settings of your table in the RT mode. Just remember that it doesn’t affect existing documents, it only affects new ones. Take a look at the example where we:

  • create a table with a full-text field and charset_table that allows only 3 searchable characters: a, b and c.
  • then we insert document ‘abcd’ and find it by query abcd, the d just gets ignored since it’s not in the charset_table array
  • then we understand, that we want d to be searchable too, so we add it with help of ALTER
  • but the same query where match('abcd') still says it searched by abc, because the existing document remembers previous contents of charset_table
  • then we add another document abcd and search by abcd again
  • now it finds the both documents and show meta says it used two keywords: abc (to find the old document) and abcd (for the new one).
  • Example

Example

  1. mysql> create table rt(title text) charset_table='a,b,c';
  2. mysql> insert into rt(title) values('abcd');
  3. mysql> select * from rt where match('abcd');
  4. +---------------------+-------+
  5. | id | title |
  6. +---------------------+-------+
  7. | 1514630637682688054 | abcd |
  8. +---------------------+-------+
  9. mysql> show meta;
  10. +---------------+-------+
  11. | Variable_name | Value |
  12. +---------------+-------+
  13. | total | 1 |
  14. | total_found | 1 |
  15. | time | 0.000 |
  16. | keyword[0] | abc |
  17. | docs[0] | 1 |
  18. | hits[0] | 1 |
  19. +---------------+-------+
  20. mysql> alter table rt charset_table='a,b,c,d';
  21. mysql> select * from rt where match('abcd');
  22. +---------------------+-------+
  23. | id | title |
  24. +---------------------+-------+
  25. | 1514630637682688054 | abcd |
  26. +---------------------+-------+
  27. mysql> show meta
  28. +---------------+-------+
  29. | Variable_name | Value |
  30. +---------------+-------+
  31. | total | 1 |
  32. | total_found | 1 |
  33. | time | 0.000 |
  34. | keyword[0] | abc |
  35. | docs[0] | 1 |
  36. | hits[0] | 1 |
  37. +---------------+-------+
  38. mysql> insert into rt(title) values('abcd');
  39. mysql> select * from rt where match('abcd');
  40. +---------------------+-------+
  41. | id | title |
  42. +---------------------+-------+
  43. | 1514630637682688055 | abcd |
  44. | 1514630637682688054 | abcd |
  45. +---------------------+-------+
  46. mysql> show meta;
  47. +---------------+-------+
  48. | Variable_name | Value |
  49. +---------------+-------+
  50. | total | 2 |
  51. | total_found | 2 |
  52. | time | 0.000 |
  53. | keyword[0] | abc |
  54. | docs[0] | 1 |
  55. | hits[0] | 1 |
  56. | keyword[1] | abcd |
  57. | docs[1] | 1 |
  58. | hits[1] | 1 |
  59. +---------------+-------+

Updating table FT settings in plain mode

  1. ALTER TABLE table RECONFIGURE

ALTER can also reconfigure an RT table in the plain mode), so that new tokenization, morphology and other text processing settings from the configuration file take effect for new documents. Note, that the existing document will be left intact. Internally, it forcibly saves the current RAM chunk as a new disk chunk and adjusts the table header, so that new documents are tokenized using the updated full-text settings.

  • Example

Example

  1. mysql> show table rt settings;
  2. +---------------+-------+
  3. | Variable_name | Value |
  4. +---------------+-------+
  5. | settings | |
  6. +---------------+-------+
  7. 1 row in set (0.00 sec)
  8. mysql> alter table rt reconfigure;
  9. Query OK, 0 rows affected (0.00 sec)
  10. mysql> show table rt settings;
  11. +---------------+----------------------+
  12. | Variable_name | Value |
  13. +---------------+----------------------+
  14. | settings | morphology = stem_en |
  15. +---------------+----------------------+
  16. 1 row in set (0.00 sec)

Rebuild secondary index

  1. ALTER TABLE table REBUILD SECONDARY

ALTER can also be used to rebuild secondary indexes in a given table. Sometimes a secondary index can be disabled for the whole table or for one/multiple attributes in it:

  • On UPDATE of an attribute: in this case its secondary index gets disabled.
  • In case Manticore loads a table with old formatted secondary indexes: in this case secondary indexes will be disabled for the whole table.

ALTER TABLE table REBUILD SECONDARY rebuilds secondary indexes from attribute data and enables them again.

  • Example

Example

  1. ALTER TABLE rt REBUILD SECONDARY;

Response

  1. Query OK, 0 rows affected (0.00 sec)

Functions