Microlith deployment

    • Developer Preview
      +

      To support easy deployment across a variety of targets, we are providing a 'microlith' single container option. This is essentially the various scalable components of the Grafana stack (Loki, Prometheus, Grafana, Alert Manager) and Couchbase binaries for specific data extraction all runnable as a single multi-process container instance.

      A single container can then be run on-premise or on a Kubernetes platform very easily with minimal effort.

      microlith runtime
      Figure 1. Microlith overview

      Whilst on-premise customers may primarily be using native binaries, all supported OS’s for Couchbase Server can run containers easily. This also makes it easier to deploy as a self-contained image and easy to upgrade as well. We could produce an OS-specific package (e.g. RPM) with all necessary dependencies on the container runtime.

      Customization

      Areas that support customization:

      • Dashboards

        • Support providing bespoke dashboards directly by specifying at runtime.

      • Alerting rules

        • Provide custom alert rules and other metric generation (e.g. pre-calculated ones)

        • Tweak the configuration for existing ones deployed

        • Disable or inhibit default rules provided

      • Cluster credentials and identities

      In all cases we do not want to have to rebuild anything to customize it, it should just be a runtime configuration. This then supports a Git-ops style deployment with easy upgrade path as we always run the container plus config so you can modify each independently, roll back, etc.

      microlith config
      Figure 2. Microlith configuration

      Prometheus alerting rules

      There are three directories used for alerting rules:

      • /etc/prometheus/alerting/couchbase: Couchbase preset rules. Do not modify these, as your changes may be overwritten when you upgrade. Instead, use overrides (described below).

      • /etc/prometheus/alerting/overrides: Space for your overrides of the Couchbase rules. These will be pre-processed with prometheus-alert-overrider, enabling you to customize our rules. For an example, see our integration tests.

      • /etc/prometheus/alerting/custom: Space for your own custom rules. These will be loaded by Prometheus but will not be pre-processed in any way.

      There is also a fourth directory, /etc/prometheus/alerting/generated, where the processed rules file will be written. Do not modify this directory, as your changes may be overwritten as part of the build process.

      If you want to disable the pre-processing and use entirely your own ruleset, set the environment variable DISABLE_ALERTS_PREPARE=true.