From 164899c2fda4bb6347b198169ad7d64a097ce3b8 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Wed, 24 Jun 2020 10:37:13 +0200 Subject: [PATCH] updated documentation about disabling elastic --- CHANGELOG.md | 2 ++ doc/production_readme.md | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96e1edf75..6358d432a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog Fab-manager +- Search in the projets directly from PostgreSQL - Ability to configure most of the settings from the admin's UI - Ability to lock some settings from the environment - Improved display of the icons alerting about an outdated version - Improved mime-type checking (back & front) +- Dependency to ElasticSearch is now optional, if you disable the statistics - Updated CarrierWave to 2.1.0 - Updated redis to v6, with alpine image - Updated Sidekiq to 6.0.7 diff --git a/doc/production_readme.md b/doc/production_readme.md index 0cbf6df19..ef4acbfb4 100644 --- a/doc/production_readme.md +++ b/doc/production_readme.md @@ -98,6 +98,18 @@ This script will guide you through the installation process by checking the requ \curl -sSL setup.fab-manager.com | bash -s "/my/custom/path" ``` +## Fab-manager for small configurations + +If your server machine is not powerful, you can lower the system requirements by uninstalling ElasticSearch. +In order to remove ElasticSearch, you must **first** disable the statistics module from Customization > General > Modules. + +Then, you can remove the `elasticsearch` service from the [docker-compose.yml](../setup/docker-compose.yml) file and restart the whole application: +```bash +docker-compose down && docker-compose up -d +``` + +Disabling ElasticSearch will save up to 800 Mb of memory. + ## Docker utils Below, you'll find a collection of useful commands to control your instance with docker-compose.