Skip to content

Commit f6c5210

Browse files
committed
Merge branch 'rc-rebrand' into DOC-5021
2 parents e6018b4 + 43cd6f6 commit f6c5210

File tree

190 files changed

+166
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+166
-137
lines changed

.github/workflows/main-staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis for Kubernetes/' content/operate/kubernetes/_index.md
9898
9999
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
100-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^operate\/kubernetes\/\` \"operate\/kubernetes\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
100+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^operate\/kubernetes\/\` \"operate\/kubernetes\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
101101
102102
hugo -d "kubernetes-${version}"
103103
@@ -124,7 +124,7 @@ jobs:
124124
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis Software/' content/operate/rs/_index.md
125125
126126
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
127-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^operate\/rs\/\` \"operate\/rs\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
127+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^operate\/rs\/\` \"operate\/rs\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
128128
129129
hugo -d "rs-${version}"
130130
@@ -151,7 +151,7 @@ jobs:
151151
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis Data Integration/' content/integrate/redis-data-integration/_index.md
152152
153153
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
154-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^integrate\/redis-data-integration\/\` \"integrate\/redis-data-integration\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
154+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^integrate\/redis-data-integration\/\` \"integrate\/redis-data-integration\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
155155
156156
hugo -d "redis-data-integration-${version}"
157157

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis for Kubernetes/' content/operate/kubernetes/_index.md
9898
9999
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
100-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^operate\/kubernetes\/\` \"operate\/kubernetes\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
100+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^operate\/kubernetes\/\` \"operate\/kubernetes\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
101101
102102
hugo -d "kubernetes-${version}"
103103
@@ -124,7 +124,7 @@ jobs:
124124
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis Software/' content/operate/rs/_index.md
125125
126126
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
127-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^operate\/rs\/\` \"operate\/rs\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
127+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^operate\/rs\/\` \"operate\/rs\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
128128
129129
hugo -d "rs-${version}"
130130
@@ -151,7 +151,7 @@ jobs:
151151
sed -i 's/linkTitle: '"${version}"'/linkTitle: Redis Data Integration/' content/integrate/redis-data-integration/_index.md
152152
153153
# inject replace command in meta-links to make sure editURL and issuesURL point to right version
154-
sed -i "12i \{\{ \$gh_file = replaceRE \`\^integrate\/redis-data-integration\/\` \"integrate\/redis-data-integration\/$version\/\" \$gh_file }}" layouts/partials/meta-links.html
154+
sed -i "12i \{\{ \$gh_path = replaceRE \`\^integrate\/redis-data-integration\/\` \"integrate\/redis-data-integration\/$version\/\" \$gh_path }}" layouts/partials/meta-links.html
155155
156156
hugo -d "redis-data-integration-${version}"
157157

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ rdi_redis_gears_version = "1.2.6"
5555
rdi_debezium_server_version = "2.3.0.Final"
5656
rdi_db_types = "cassandra|mysql|oracle|postgresql|sqlserver"
5757
rdi_cli_latest = "latest"
58-
rdi_current_version = "v1.6.3"
58+
rdi_current_version = "v1.6.4"
5959

6060
[params.clientsConfig]
6161
"Python"={quickstartSlug="redis-py"}

content/commands/sadd/index.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@ An error is returned when the value stored at `key` is not a set.
6565
## Examples
6666

6767
{{< clients-example cmds_set sadd >}}
68-
redis> SADD myset "Hello"
69-
(integer) 1
70-
redis> SADD myset "World"
71-
(integer) 1
68+
redis> SADD myset "Hello" "World"
69+
(integer) 2
7270
redis> SADD myset "World"
7371
(integer) 0
7472
redis> SMEMBERS myset
@@ -79,8 +77,7 @@ redis> SMEMBERS myset
7977
Give these commands a try in the interactive console:
8078

8179
{{% redis-cli %}}
82-
SADD myset "Hello"
83-
SADD myset "World"
80+
SADD myset "Hello" "World"
8481
SADD myset "World"
8582
SMEMBERS myset
8683
{{% /redis-cli %}}
-49.3 KB
Loading

content/integrate/redis-data-integration/installation/install-k8s.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can use this installation on [OpenShift](https://docs.openshift.com/) and ot
3838
including cloud providers' K8s managed clusters.
3939

4040
You can pull the RDI images from the
41-
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.tgz)
41+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.4.tgz)
4242
or from your own [private image registry](#using-a-private-image-registry).
4343

4444
## Before you install
@@ -51,7 +51,7 @@ Complete the following steps before running Helm:
5151
[Access control]({{< relref "/operate/rs/security/access-control" >}}) for
5252
more information).
5353
- Download the RDI helm chart tar file from the
54-
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.tgz).
54+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.4.tgz).
5555
- If you want to use a private image registry,
5656
[prepare it with the RDI images](#using-a-private-image-registry).
5757

@@ -105,7 +105,7 @@ file as described below.
105105
### Using a private image registry
106106

107107
Add the RDI images from the
108-
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.tgz)
108+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.4.tgz)
109109
to your local registry.
110110
The example below shows how to specify the registry and image pull secret in the
111111
[`values.yaml`](#the-valuesyaml-file) file for the Helm chart:

content/integrate/redis-data-integration/installation/install-vm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ ufw allow 9121/tcp # rdi-metric-exporter
162162
Follow the steps below for each of your VMs:
163163

164164
1. Download the RDI installer from the
165-
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.3.tar.gz)
165+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.4.tar.gz)
166166
(from the *Modules, Tools & Integration* category) and extract it to your preferred installation
167167
folder.
168168

content/integrate/redis-data-integration/installation/upgrade.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Follow the steps below to upgrade an existing
2323
of RDI:
2424

2525
1. Download the RDI installer from the
26-
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.3.tar.gz)
26+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.4.tar.gz)
2727
(in the *Modules, Tools & Integration* category) and extract it to your
2828
preferred installation folder.
2929

@@ -97,7 +97,7 @@ installation of RDI:
9797
```
9898
9999
1. Download the RDI helm chart tar file from the
100-
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.tgz).
100+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.4.tgz).
101101
102102
1. Run the `helm upgrade` command:
103103
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
Title: Redis Data Integration release notes 1.6.4 (April 2025)
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rs
8+
description: Installation on Kubernetes with a Helm chart. Improvements for installation on VMs.
9+
linkTitle: 1.6.4 (April 2025)
10+
toc: 'true'
11+
weight: 988
12+
---
13+
14+
> This maintenance release replaces the 1.6.3 release.
15+
16+
RDI’s mission is to help Redis customers sync Redis Enterprise with live data from their slow disk-based databases to:
17+
18+
- Meet the required speed and scale of read queries and provide an excellent and predictable user experience.
19+
- Save resources and time when building pipelines and coding data transformations.
20+
- Reduce the total cost of ownership by saving money on expensive database read replicas.
21+
22+
RDI keeps the Redis cache up to date with changes in the primary database, using a [_Change Data Capture (CDC)_](https://en.wikipedia.org/wiki/Change_data_capture) mechanism.
23+
It also lets you _transform_ the data from relational tables into convenient and fast data structures that match your app's requirements. You specify the transformations using a configuration system, so no coding is required.
24+
25+
## Headlines
26+
27+
- Feature: Add support for Debezium 3.0.8
28+
29+
## Limitations
30+
31+
RDI can write data to a Redis Active-Active database. However, it doesn't support writing data to two or more Active-Active replicas. Writing data from RDI to several Active-Active replicas could easily harm data integrity as RDI is not synchronous with the source database commits.

content/operate/rc/api/get-started/manage-api-keys.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The **API account key** is used as the value of the `x-api-key` HTTP header in o
3333

3434
By default, the **API account key** is masked; that is, it is obscured for security reasons. You can use the **Show** button to display the key and the **Hide** button to mask it.
3535

36-
{{<image filename="images/rc/button-access-management-show-key.png" alt="The **Show** button displays the account key." class="inline" >}} &nbsp; {{<image filename="images/rc/button-access-management-hide-key.png#no-click" alt="The **Hide** button masks the account key." class="inline">}}
36+
{{<image filename="images/rc/button-access-management-show-key.png#no-click" alt="The **Show** button displays the account key." class="inline" >}} &nbsp; {{<image filename="images/rc/button-access-management-hide-key.png#no-click" alt="The **Hide** button masks the account key." class="inline">}}
3737

3838
The **Copy** button copies the account key to the Clipboard.
3939

@@ -77,19 +77,17 @@ This is the only time the value of the user key is available. Save it to a secu
7777
If you lose the user key value, it cannot be retrieved. If this happens, create a new key to replace the lost one.
7878
{{</warning>}}
7979

80-
When you've saved the user key, use the **Finish** button to close the dialog box.
81-
82-
(The **Finish** button is disabled until you copy the key to the Clipboard.)
80+
The **Finish** button is inactive until you copy the key to the clipboard. After you save the user key, you can also select **Copy account key** to save the account key.
8381

8482
### Delete a user key
8583

8684
To delete a user key:
8785

88-
1. Use the **API Keys** tab of the **Access Management** screen to locate the target key
86+
1. Use the **API Keys** tab of the **Access Management** screen to locate the target key. Hover over the key to display the **Delete** button.
8987

9088
{{<image filename="images/rc/access-management-api-user-key-delete.png" alt="The **Delete** button appears to the right of the selected user key." >}}<br/>
9189

92-
2. Select the **Delete** button displayed to the right.
90+
2. Select the **Delete** button.
9391

9492
{{<image filename="images/rc/button-access-management-api-user-key-delete.png" alt="Select the **Delete** button to begin deleting the selected user key." >}}
9593

@@ -105,7 +103,7 @@ By default, REST API requests are allowed from all IP addresses. To limit acces
105103

106104
To manage the CIDR allow list:
107105

108-
1. Use the **API Keys** tab of the **Access Management** screen to locate the target key
106+
1. Use the **API Keys** tab of the **Access Management** screen to locate the target key. Hover over the key to display the **Manage** link.
109107

110108
{{<image filename="images/rc/access-management-api-user-key-delete.png" alt="The **Manage** link appears to the right of the user name for the selected user key." >}}
111109

0 commit comments

Comments
 (0)