From cb2281bb6fbbe99186c44dafeead0fd4fcfcee22 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Thu, 12 Dec 2024 08:58:31 -0800 Subject: [PATCH 1/2] OP: add gears v1.2.12 rns & fix link warning --- .../observability.md | 2 +- .../redisgears/redisgears-1.2-release-notes.md | 16 +++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/content/integrate/prometheus-with-redis-enterprise/observability.md b/content/integrate/prometheus-with-redis-enterprise/observability.md index 28329d9197..91b55460bb 100644 --- a/content/integrate/prometheus-with-redis-enterprise/observability.md +++ b/content/integrate/prometheus-with-redis-enterprise/observability.md @@ -467,7 +467,7 @@ Redis Cloud dashboard showing slow database operations | Issue | Remediation | | ------ | :------ | -|The KEYS command shows up in the slow log |Find the application that issues the KEYS command and replace it with a SCAN command. In an emergency situation, you can [alter the ACLs for the database user]({{< relref "/operate/rs/security/access-control/redis-acl-overview/" >}}) so that Redis will reject the KEYS command altogether. | +|The KEYS command shows up in the slow log |Find the application that issues the KEYS command and replace it with a SCAN command. In an emergency situation, you can [alter the ACLs for the database user]({{< relref "/operate/rs/security/access-control/redis-acl-overview" >}}) so that Redis will reject the KEYS command altogether. | |The slow log shows a significant number of slow, O(n) operations | If these operations are being issued against large data structures, then the application may need to be refactored to use more efficient Redis commands. | |The slow logs contains only O(1) commands, and these commands are taking several milliseconds or more to complete |This likely indicates that the database is underprovisioned. Consider increasing the number of shards and/or nodes. | diff --git a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md index 354234e4f7..92785a066a 100644 --- a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md +++ b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md @@ -16,11 +16,25 @@ weight: 99 ## Requirements -RedisGears v1.2.10 requires: +RedisGears v1.2.12 requires: - Minimum Redis compatibility version (database): 6.0.0 - Minimum Redis Enterprise Software version (cluster): 6.0.12 +## 1.2.12 (December 2024) + +This is a maintenance release for RedisGears 1.2 + +Update urgency: `LOW`: No need to upgrade unless there are new features or fixes. + +Details + +- Bug fixes: + - [#1121](https://github.com/redisgears/redisgears/pull/1121) Recreate virtual env on startup, fix issue where the virtual env might point to the old version Python interpreter + - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear last error after a successful run to avoid confusion if the error is relevant + - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear not-yet-started executions when unregister/pause/error on registration (MOD-8184) + - [#1125](https://github.com/redisgears/redisgears/pull/1125) The same registration ID might be generated twice + ## 1.2.10 (October 2024) This is a maintenance release for RedisGears 1.2 From e80107eb96038f63689ca8ea4410aa2a1571ab98 Mon Sep 17 00:00:00 2001 From: "David W. Dougherty" Date: Fri, 13 Dec 2024 06:29:33 -0800 Subject: [PATCH 2/2] Copy-editing of rns --- .../redisgears/redisgears-1.2-release-notes.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md index 92785a066a..ba37e4e944 100644 --- a/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md +++ b/content/operate/oss_and_stack/stack-with-enterprise/release-notes/redisgears/redisgears-1.2-release-notes.md @@ -30,10 +30,10 @@ Update urgency: `LOW`: No need to upgrade unless there are new features or fixes Details - Bug fixes: - - [#1121](https://github.com/redisgears/redisgears/pull/1121) Recreate virtual env on startup, fix issue where the virtual env might point to the old version Python interpreter - - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear last error after a successful run to avoid confusion if the error is relevant - - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear not-yet-started executions when unregister/pause/error on registration (MOD-8184) - - [#1125](https://github.com/redisgears/redisgears/pull/1125) The same registration ID might be generated twice + - [#1121](https://github.com/redisgears/redisgears/pull/1121) Recreate the virtual environment on startup. Fixes an issue where the virtual environment might point to the old version of the Python interpreter. + - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear the last error after a successful run to avoid confusion if the error is relevant. + - [#1122](https://github.com/redisgears/redisgears/pull/1122) Clear not-yet-started executions after unregister, pause, or error on registration occcurs. (MOD-8184) + - [#1125](https://github.com/redisgears/redisgears/pull/1125) Fixes an issue where duplicate registration IDs are generated. ## 1.2.10 (October 2024)