From 1bb341fa517392d504285ed70d428483fdfb76f1 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Fri, 26 Jan 2024 19:09:29 +0100 Subject: [PATCH] Improve doc Signed-off-by: Marco Pracucci --- docs/feature_flags.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/feature_flags.md b/docs/feature_flags.md index 95b627010..c3540cc23 100644 --- a/docs/feature_flags.md +++ b/docs/feature_flags.md @@ -221,5 +221,6 @@ By default, rule groups execute concurrently, but the rules within a group execu output of a preceding rule as its input. However, if there is no detectable relationship between rules then there is no reason to run them sequentially. When the `concurrent-rule-eval` feature flag is enabled, rules without any dependency on other rules within a rule group will be evaluated concurrently. -This can improve rule reliability at the expense of adding more concurrent query load. The number of concurrent rule evaluations can be configured -with `--rules.max-concurrent-rule-evals` which is set to `4` by default. +This has the potential to improve rule group evaluation latency and resource utilization at the expense of adding more concurrent query load. + +The number of concurrent rule evaluations can be configured with `--rules.max-concurrent-rule-evals`, which is set to `4` by default.