Compiling Manticore Search from sources enables custom build configurations, such as disabling certain features or adding new patches for testing. For example, you may want to compile from sources and disable the embedded ICU in order to use a different version installed on your system that can be upgraded independently of Manticore. This is also useful if you are interested in contributing to the Manticore Search project.
To prepare official release and development packages, we use Docker and a special building image. This image includes essential tooling and is designed to be used with external sysroots, so one container can build packages for all operating systems. You can build the image using the Dockerfile and README or use an image from Docker Hub. This is the easiest way to create binaries for any supported operating system and architecture. You’ll also need to specify the following environment variables when running the container:
DISTR
: the target platformarch
: the architectureSYSROOT_URL
: the URL to the system roots archives. You can use https://repo.manticoresearch.com/repository/sysroots unless you are building the sysroots yourself (instructions can be found here).To find possible values for DISTR
and arch
, you can use the directory https://repo.manticoresearch.com/repository/sysroots/roots_with_zstd/ as a reference, as it includes sysroots for all supported combinations.
After that, building packages inside the Docker container is as easy as calling:
cmake -DPACK=1 /path/to/sources
cmake --build .
For example, to create the same RedHat 7 package as the official one, but without the embedded ICU and its large datafile, you can execute the following (assuming that the sources are placed in /manticore/sources/
on the host):
docker run -it --rm -e SYSROOT_URL=https://repo.manticoresearch.com/repository/sysroots \
-e arch=x86_64 \
-e DISTR=rhel7 \
-e boost=boost_rhel_feb17 \
-e sysroot=roots_nov22 \
-v /manticore/sources:/manticore_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa \
manticoresearch/external_toolchain:clang15_cmake3243 bash
# following is to be run inside docker shell
cd /manticore_aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/
RELEASE_TAG="noicu"
mkdir build && cd build
cmake -DPACK=1 -DBUILD_TAG=$RELEASE_TAG -DWITH_ICU_FORCE_STATIC=0 ..
cmake --build . --target package
The long source directory path is required or it may fail to build the sources.
The same process can be used to build binaries/packages not only for popular Linux distributions, but also for FreeBSD, Windows, and macOS.
Compiling Manticore without using the building Docker is not recommended, but if you need to do it, here’s what you may need to know:
xcode-select --install
to install).Manticore source code is hosted on GitHub.
To obtain the source code, clone the repository and then check out the desired branch or tag. The branch master
represents the main development branch. Upon release, a versioned tag is created, such as 3.6.0
and a new branch for the current release is started, in this case manticore-3.6.0
. The head of the versioned branch after all changes is used as source to build all binary releases. For example, to take sources of version 3.6.0 you can run:
git clone https://github.com/manticoresoftware/manticoresearch.git
cd manticoresearch
git checkout manticore-3.6.0
You can download the desired code from GitHub by using the “Download ZIP” button. Both .zip and .tar.gz formats are suitable.
wget -c https://github.com/manticoresoftware/manticoresearch/archive/refs/tags/3.6.0.tar.gz
tar -zxf 3.6.0.tar.gz
cd manticoresearch-3.6.0
Manticore uses CMake. Assuming you are inside the root directory of the cloned repository:
mkdir build && cd build
cmake ..
CMake will investigate available features and configure the build according to them. By default, all features are considered enabled if they are available. The script also downloads and builds some external libraries, assuming that you want to use them. Implicitly, you get support for the maximal number of features.
You can also configure the build explicitly with flags and options. To enable feature FOO
add -DFOO=1
to the CMake call. To disable it, use -DFOO=0
. If not explicitly noted, enabling a feature that is not available((such as WITH_GALERA
on an MS Windows build)) will cause the configuration to fail with an error. Disabling a feature, apart from excluding it from the build, also disables its investigation on the system and disables the downloading/building of any related external libraries.
syslog
in query logging.RE2
library in your system.libstemmer
library in your system.icu_chinese
is in use.icu
library in your system. Also includes the ICU data file into the installation/distribution. The purpose of a statically linked ICU is to have a library of a known version, so that behavior is determined and not dependent on any system libraries. You will most likely prefer to use the system ICU instead, as it may be updated over time without the need to recompile the Manticore daemon. In this case, you need to explicitly disable this option. This will also save you some space occupied by the ICU data file (about 30M), as it will not be included in the distribution.MSSQL
also implies this flag.ODBC_LIB
with the proper path to an alternative library before running the indexer.indexer
tool even if you want to process something not related to xmlpipe. This option asks the indexer to load the library at runtime only when you want to deal with xmlpipe source.indexer
tool even if you want to process something not related to xmlpipe. This option asks the indexer to load the library at runtime only when you want to deal with xmlpipe source.ICONV_LIB
with the proper path to an alternative library before running the indexer.indexer
tool even if you want to process something not related to MySQL. This option asks the indexer to load the library at runtime only when you want to deal with a MySQL source.MYSQL_LIB
with the proper path to an alternative library before running the indexer.indexer
ool even if you want to process something not related to PostgreSQL. This option asks the indexer to load the library at runtime only when you want to deal with a PostgreSQL source.POSTGRESQL_LIB
with the proper path to an alternative library before running the indexer.manticore.conf
, which is not related to this build configuration), binlogs will be placed in this path. It is typically an absolute path, however, it is not required to be and relative paths can also be used. You probably would not need to change the default value defined by the configuration, which, depending on the target system, might be something like /var/data
, /var/lib/manticore/data
, or /usr/local/var/lib/manticore/data
.FULL_SHARE_DIR
before starting any tool that utilizes files from that folder. This is an important path as many things are expected to be found there by default. These include predefined charset tables, stopwords, manticore modules, and icu data files, all placed in that folder. The configuration script usually determines this path to be something like /usr/share/manticore
, or /usr/local/share/manticore
.DISTR
environment variable, assigns it to the DISTR_BUILD parameter, and then works as usual. This is very useful when building in prepared build systems, like Docker containers, where the DISTR
variable is set at the system level and reflects the target system for which the container is intended.cmake --install
command or create a package and then install it. The prefix can be changed at any time, even during installation, by invoking cmake --install . --prefix /path/to/installation
. However, at config time, this variable is used to initialize the default values of LOCALDATADIR
and FULL_SHARE_DIR
. For example, setting it to /my/custom
at configure time will hardcode LOCALDATADIR
as /my/custom/var/lib/manticore/data
, and FULL_SHARE_DIR
as /my/custom/usr/share/manticore
.libstemmer_c.tgz
) in this folder. Next time you want to build from scratch, the configuration script will first look up in the bundle, and if it finds the stemmer there, it will not download it again from the Internet.Note, that some options are organized in triples: WITH_XXX
, DL_XXX
and XXX_LIB
- like support of mysql, odbc, etc. WITH_XXX
determines whether next two have an effect or not. I.e., if you set WITH_ODBC
to 0
- there is no sence to provide DL_ODBC
and ODBC_LIB
, and these two will have no effect if the whole feature is disabled. Also, XXX_LIB
has no sense without DL_XXX
, because if you don’t want DL_XXX
option, dynamic loading will not be used, and name provided by XXX_LIB
is useless. That is used by default introspection.
Also, using the iconv
library assumes expat
and is useless if the last is disabled.
Also, some libraries may be always available, and so, there is no sense to avoid linkage with them. For example, in Windows that is ODBC. On macOS that is Expat, iconv, and m.b. others. Default introspection determines such libraries and effectively emits only WITH_XXX
for them, without DL_XXX
and XXX_LIB
, that makes the things simpler.
With some options in game configuring might look like:
mkdir build && cd build
cmake -DWITH_MYSQL=1 -DWITH_RE2=1 ..
Apart general configuration values, you may also investigate file CMakeCache.txt
which is left in build folder right after you run configuration. Any values defined there might be redefined explicitly when running cmake. For example, you may run cmake -DHAVE_GETADDRINFO_A=FALSE ...
, and that config run will not assume investigated value of that variable, but will use one you’ve provided.
Environment variables are useful for providing some kind of global settings which are stored aside from build configuration and are always present. For persistence, they may be set globally on the system using different ways - like adding them to the .bashrc
file, or embedding them into a Dockerfile if you produce a docker-based build system, or writing them in system preferences environment variables on Windows. Also, you may set them short-lived using export VAR=value
in the shell. Or even shorter, by prepending values to the cmake call, like CACHEB=/my/cache cmake ...
- this way it will only work on this call and will not be visible on the next.
Some of such variables are known to be used in general by cmake and some other tools. That is things like CXX
which determines the current C++ compiler, or CXX_FLAGS
to provide compiler flags, etc.
However, we have some variables that are specific to manticore configuration, which are invented solely for our builds.
DISTR_BUILD
option when -DPACK=1
is used.WRITEB=1 cmake ...
- it will not find the stemmer’s sources in the bundle and will then download them from the vendor’s site to the bundle (without WRITEB it will download them into a temporary folder inside the build and will disappear when you wipe the build folder).At the end of configuration, you may see what is available and will be used in a list like this one:
-- Enabled features compiled in:
* Galera, replication of tables
* re2, a regular expression library
* stemmer, stemming library (Snowball)
* icu, International Components for Unicode
* OpenSSL, for encrypted networking
* ZLIB, for compressed data and networking
* ODBC, for indexing MSSQL (windows) and generic ODBC sources with indexer
* EXPAT, for indexing xmlpipe sources with indexer
* Iconv, for support of different encodings when indexing xmlpipe sources with indexer
* MySQL, for indexing MySQL sources with indexer
* PostgreSQL, for indexing PostgreSQL sources with indexer
cmake --build . --config RelWithDebInfo
To install run:
cmake --install . --config RelWithDebInfo
to install into custom (non-default) folder, run
cmake --install . --prefix path/to/build --config RelWithDebInfo
For building a package, use the target package
. It will build the package according to the selection provided by the -DDISTR_BUILD
option. By default, it will be a simple .zip or .tgz archive with all binaries and supplementary files.
cmake --build . --target package --config RelWithDebInfo
If you haven’t changed the path for sources and build, simply move to your build folder and run:
cmake .
cmake --build . --clean-first --config RelWithDebInfo
If by any reason it doesn’t work, you can delete file CMakeCache.txt
located in the build folder. After this step you have to run cmake again, pointing to the source folder and configuring the options.
If it also doesn’t help, just wipe out your build folder and begin from scratch.
Briefly - just use --config RelWithDebInfo
as written above. It will make no mistake.
We use two build types. For development, it is Debug
- it assigns compiler flags for optimization and other things in a way that it is very friendly for development, meaning the debug runs with step-by-step execution. However, the produced binaries are quite large and slow for production.
For releasing, we use another type - RelWithDebInfo
- which means ‘release build with debug info’. It produces production binaries with embedded debug info. The latter is then split away into separate debuginfo packages which are stored aside with release packages and might be used in case of some issues like crashes - for investigation and bugfixing. Cmake also provides Release
and MinSizeRel
, but we don’t use them. If the build type is not available, cmake will make a noconfig
build.
There are two types of generators: single-config and multi-config.
CMAKE_BUILD_TYPE
parameter. If it is not defined, the build will fall back to the RelWithDebInfo
type which is suitable if you just want to build Manticore from sources and not participate in development. For explicit builds, you should provide a build type, like -DCMAKE_BUILD_TYPE=Debug
.--config
option, otherwise it will build a kind of noconfig
, which is not desirable. So, you should always specify the build type, like --config Debug
.If you want to specify the build type but don’t want to care about whether it is a ‘single’ or ‘multi’ config generator - just provide the necessary keys in both places. I.e., configure with -DCMAKE_BUILD_TYPE=Debug
, and then build with --config Debug
. Just be sure that both values are the same. If the target builder is a single-config, it will consume the configuration param. If it is multi-config, the configuration param will be ignored, but the correct build configuration will be selected by the --config
key.
If you want RelWithDebInfo
(i.e. just build for production) and know you’re on a single-config platform (that is all, except Windows) - you can omit the --config
flag on the cmake invocation. The default CMAKE_BUILD_TYPE=RelWithDebInfo
will be configured then, and used. All the commands for ‘building’, ‘installation’ and ‘building package’ will become shorter then.
Cmake is the tool that doesn’t perform building by itself, but it generates rules for the local build system. Usually, it determines the available build system well, but sometimes you might need to provide a generator explicitly. You can run cmake -G
and review the list of available generators.
cmake -G "Visual Studio 16 2019" ....
, as: ```bash cmake -GNinja ... ``` or ```bash cmake -G"Ninja Multi-Config" ... ``` Ninja Multi-Config is quite useful as it is really 'multi-config' and available on Linux/macOS/BSD. With this generator, you may shift the choosing of configuration type to build time, and also you may build several configurations in one and the same build folder, changing only the
–config` param./manticore012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
, for example. That is because RPM tools modify the path over compiled binaries when building debug info, and it can just write over existing room and won’t allocate more. The aforementioned long path has 100 chars and that is quite enough for such a case.Some libraries should be available if you want to use them. - For indexing (indexer
tool): expat
, iconv
, mysql
, odbc
, postgresql
. Without them, you can only process tsv
and csv
sources. - For serving queries (searchd
daemon): openssl
might be necessary. - For all (required, mandatory!) we need the Boost library. The minimal version is 1.61.0, however, we build the binaries with a fresher version 1.75.0. Even more recent versions (like 1.76) should also be okay. On Windows, you can download pre-built Boost from their site (boost.org) and install it into the default suggested path (i.e. C:\\boost...
). On MacOs, the one provided in brew is okay. On Linux, you can check the available version in official repositories, and if it doesn’t match requirements, you can build from sources. We need the component ‘context’, you can also build components ‘system’ and ‘program_options’, they will be necessary if you also want to build Galera library from the sources. Look into dist/build_dockers/xxx/boost_175/Dockerfile
for a short self-documented script/instruction on how to do it.
On the build system, you need the ‘dev’ or ‘devel’ versions of these packages installed (i.e. - libmysqlclient-devel, unixodbc-devel, etc. Look to our dockerfiles for the names of concrete packages).
On run systems, these packages should be present at least in the final (non-dev) variants. (devel variants usually larger, as they include not only target binaries, but also different development stuff like include headers, etc.).
Apart from necessary prerequisites, you might need prebuilt expat
, iconv
, mysql
, and postgresql
client libraries. You have to either build them yourself or contact us to get our build bundle (a simple zip archive where the folder with these targets is located).
Run indexer -h
. It will show which features were configured and built (whether they’re explicit or investigated, doesn’t matter):
Built on Linux x86_64 by GNU 8.3.1 compiler.
Configured with these definitions: -DDISTR_BUILD=rhel8 -DUSE_SYSLOG=1 -DWITH_GALERA=1 -DWITH_RE2=1 -DWITH_RE2_FORCE_STATIC=1
-DWITH_STEMMER=1 -DWITH_STEMMER_FORCE_STATIC=1 -DWITH_ICU=1 -DWITH_ICU_FORCE_STATIC=1 -DWITH_SSL=1 -DWITH_ZLIB=1 -DWITH_ODBC=1 -DDL_ODBC=1
-DODBC_LIB=libodbc.so.2 -DWITH_EXPAT=1 -DDL_EXPAT=1 -DEXPAT_LIB=libexpat.so.1 -DWITH_ICONV=1 -DWITH_MYSQL=1 -DDL_MYSQL=1
-DMYSQL_LIB=libmariadb.so.3 -DWITH_POSTGRESQL=1 -DDL_POSTGRESQL=1 -DPOSTGRESQL_LIB=libpq.so.5 -DLOCALDATADIR=/var/lib/manticore/data
-DFULL_SHARE_DIR=/usr/share/manticore