Elasticsearch
Elasticsearch is a search and analytics engine, commonly used as a substitute for Solr or for collecting log and metrics data.
You can easily add it to your Lando app by adding an entry to the services top-level config in your Landofile.
services:
myservice:
type: elasticsearch
Supported versions
- 8
- 8.15.x
- 8.14.x
- 8.13.x
- 8.12.x
- 8.11.x
- 8.10.x
- 8.9.x
- 8.8.x
- 8.7.x
- 8.6.x
- 8.5.x
- 8.4.x
- 8.3.x
- 8.2.x
- 8.1.x
- 7
- 7.17.x
- 7.16.x
- 7.15.x
- 7.14.x
- 7.13.x
- 7.12.x
- 7.11.x
- 7.10.x
- 7.9.x
- 7.8.x
- 7.7.x
- 7.6.x
- 7.5.x
- 7.4.x
- 7.3.x
- 6 (default)
- 6.8.x
- 6.7.x
- 6.6.x
- 6.5.x
- 5
- custom
Patch versions
Not officially supported!
While we allow users to specify patch versions for this service, they are not officially supported, so if you use one, YMMV.
To use a patch version, you can do something as shown below:
services:
myservice:
type: elasticsearch:5.6.15
But make sure you use one of the available patch tags for the underlying image we are using.
Other requirements
Elasticsearch requires you set the kernel property vm.max_map_count
to at least 262144
in order to run correctly. Lando will attempt to set this on install if you use any of our official package installers for Windows, macOS, Debian, RPM or Pacman.
However, if you are installing from source or via another pathway you will need to set this manually. Generally this can be accomplished with the following:
sysctl -w vm.max_map_count=262144
But we recommend you check out the following issue for more information: https://github.com/lando/lando/issues/1967