Manticore Search is an Open Source database that was created in 2017 as a continuation of Sphinx Search engine (Started in 2001). It's a modern, fast, light-weight and full-featured database with outstanding full-text search capabilities. https://manticoresearch.com/
Manticore Search is very appreciated by its community.
It is a Unified Index option in Tiki. As of 2022-11-16, the results between the various engines are not identical in all cases. We wrote a script to compare the results of MariaDB/MySQL vs Elasticsearch vs Manticore Search, and review all the discrepancies. Also, different engines have different features. If Manticore doesn't work for you, you can revert to your previous engine.
Status:
Manticore Search uses way less RAM than Elasticsearch. One reason is that that Manticore Search is in C++ while Elasticsearch is in Java.
https://db-benchmarks.com/ show that Manticore is faster than Elasticsearch. However, unexpectedly, as of 2024-08-21, the result of Manticore-Tiki is slower than Elasticsearch-Tiki and this will be worked on.
See instructions on how to install it server side:
Once Manticore is installed and running:
php console.php index:rebuild --log
Please see development information: Manticore Search and https://wikisuite.org/Manticore-Search
It has many features including:
In short:
So, most of the sites shouldn't notice this change. Bigger sites will probably need some configuration to allow faster lookups on big trackers - ensure the searched fields end up in the preference.
https://gitlab.com/tikiwiki/tiki/-/merge_requests/2735
Had to unify the way we gather and store stats as well as building it for reporting. Now each reporting place uses a single stats builder, so they should be in sync (those are: rebuild console command output, rebuild log file output, last stats displayed via module).
Due to the way we are indexing wiki pages and other wiki content, the content is parsed but there is no easy way to gather the fields used in that specific place, so I added a catch-all type of a rule: manticore query builder logs all field usages in queries (either fulltext or not) and stores these. Then, after rebuild finishes, we display the following additional stats:
indexed fulltext fields
text fields converted to strings (those are supposed to be indexed but the 256 was limit hit)
indexed fields that are not used in fulltext queries (note that this might not be a complete picture as we only take the wiki texts; you can possibly do other search queries even with API or customsearch templates residing in themes that are not taken in to account)
non-indexed fields that are used in queries
If you want a more sophisticated report of where each indexed/non-indexed field is used, then I think a console command is needed with proper table display or might be part of the admin UI?
The only way I could get this to run locally on macOS (on Apple Silicon) was by using Docker, and i needed to add these config items, pasted here for reference)
Mounts
Ports
We had a federation of two servers (each with Manticore) which were handling multiple sites. A third server was created and one of the sites was moved there.
Moving a site from a Manticore federation to a new server has several side effects which all need to be fixed. What I did for dev.tiki.org and the new dogfood6.evoludata.com server: 1. Mirror manticore config from dogfood5 server. Most importantly, make it listen on the external inet interface - namely, dev.tiki.org, so it is accessible from the outside. 2. Open ports 9306 and 9312 to all other hosts from the federation. dogfood servers use nftables, so I did this in /etc/nftables.conf and restarted the service. 3. Change search config in the new server to use the same hostname as manticore config - dev.tiki.org - this was already done. 4. Go to Admin->Tools->external wikis and update the federation index locations. We were using local index locations for doc and themes and I had to change this to remote for dev.tiki.org. 5. Go to external wikis of ALL other sites participating in the federation and update dev.tiki.org index to the new correct remote location. 6. Open any ports on the remote hosts to the new host. I sent an email to Oliver to do this for tiki.org server. Also opened the ports for dogfood5.evoludata.com server in /etc/nftables.conf After all this is done, all federated indices need to be rebuilt to re-configure each other.
For some Linux distributions, such as OpenSUSE, there's no Manticore Search package. I (Volker Wysk, 2025-03-11) have managed to run it in the Docker container provided for Manticore instead.
Tiki appears to communicate, amongst other ways, over the file system with Manticore. So some preparations are necessary, so Manticore can access Tiki's "temp" directory. See below.
Use the following commands to setup the Manticore Docker container. Execute them as the root user.
zypper install docker docker-compose docker-compose-switch systemctl enable docker systemctl start docker
usermod -G docker -a $USER
docker pull manticoresearch/manticore
sudo mkdir /var/lib/manticore
groupadd --gid 999 manticore useradd --uid 999 --gid 999 manticore chown manticore:manticore /var/lib/manticore/
chgrp manticore /srv/www/htdocs/tiki/temp
--restart=...
option makes it to be restarted when it exits or when the system is rebooted. This is the way Docker images are "installed".
docker run -e EXTRA=1 --name manticore --restart=always --detach -v /var/lib/manticore:/var/lib/manticore -v /srv/www/htdocs/tiki/temp:/srv/www/htdocs/tiki/temp -p 127.0.0.1:9306:9306 -p 127.0.0.1:9308:9308 manticoresearch/manticore