Manticore Columnar Library is a column-oriented storage and secondary indexing library, aiming to provide decent performance with low memory footprint at big data volume. When used in combination with Manticore Search can be beneficial for those looking for:
- log analytics including rich free text search capabities (which is missing in e.g. Clickhouse - great tool for metrics analytics)
- faster / low resource consumption log/metrics analytics. Since the library and Manticore Search are both written in C++ with low level optimizations in mind, in many cases the performance / RAM consumption is better than in Lucene / SOLR / Elasticsearch
- running log / metric analytics in docker / kubernetes. Manticore Search + the library can work with as little as 30 megabytes of RAM which Elasticsearch / Clickhouse can't. It also starts in less than a second or a few seconds in the worst case. Since the overhead is so little you can afford having more nodes of Manticore Search + the library than Elasticsearch. More nodes and quicker start means higher high availability and agility.
- powerful SQL for logs/metrics analytics and everything else Manticore Search can give you
- CPU: with SSE >= 4.2
- Architecture: arm64 or x86_64
- OS: Debian-based OS (Debian, Ubuntu, Mint), RHEL-based (RHEL, Centos, Alma, Oracle Linux, Amazon Linux) OS, Windows, MacOS
wget https://repo.manticoresearch.com/manticore-repo.noarch.deb
sudo dpkg -i manticore-repo.noarch.deb
sudo apt update
sudo apt install manticore-columnar-lib
sudo yum install https://repo.manticoresearch.com/manticore-repo.noarch.rpm
sudo yum install manticore-columnar-lib
searchd -v
should include columnar x.y.z
, e.g.:
root@srv# searchd -v
Manticore 6.0.2 89c7a5139@230210 (columnar 2.0.0 a7c703d@230130) (secondary 2.0.0 a7c703d@230130)
- Read https://manual.manticoresearch.com/Creating_a_table/Data_types#Row-wise-and-columnar-attribute-storages
- Create plain or real-time table specifying that the columnar storage should be used
https://db-benchmarks.com/test-logs10m/#elasticsearch-tuned-vs-manticore-search-columnar-storage
https://db-benchmarks.com/test-logs10m/#clickhouse-vs-manticore-search-columnar-storage
https://db-benchmarks.com/test-hn/#manticore-search-columnar-storage-vs-elasticsearch
https://db-benchmarks.com/test-hn/#manticore-search-columnar-storage-vs-clickhouse
https://db-benchmarks.com/test-taxi/#manticore-search-vs-elasticsearch
https://db-benchmarks.com/test-taxi/#manticore-search-vs-clickhouse