From 943e45b60ac9a3f3ca414a42a0b3969a05984ea7 Mon Sep 17 00:00:00 2001 From: jruaux Date: Fri, 21 Jun 2024 10:13:06 -0700 Subject: [PATCH] docs: Added script error in FAQ --- docs/guide/src/docs/asciidoc/faq.adoc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/guide/src/docs/asciidoc/faq.adoc b/docs/guide/src/docs/asciidoc/faq.adoc index 5542b5b2a..5d946b371 100644 --- a/docs/guide/src/docs/asciidoc/faq.adoc +++ b/docs/guide/src/docs/asciidoc/faq.adoc @@ -23,4 +23,9 @@ This issue occurs when you fail to supply the `--pass ` parameter. ERR The ID argument cannot be a complete ID because xadd-id-uniqueness-mode is strict:: This usually happens in Active/Active (CRDB) setups where stream message IDs cannot be copied over to the target database. -Use the `--no-stream-ids` option to disable ID propagation. \ No newline at end of file +Use the `--no-stream-ids` option to disable ID propagation. + +ERR Error running script... This Redis command is not allowed from scripts:: +This can happen with Active/Active (CRDB) databases because the `MEMORY USAGE` command is not allowed to be run from a LUA script. +Use the `--mem-limit -1` option to disable memory usage. +