Skip to content

Commit 897ecc7

Browse files
Merge branch 'main' into release-k8s-wisconsin
2 parents cfa4c65 + ad72547 commit 897ecc7

File tree

6 files changed

+64
-11
lines changed

6 files changed

+64
-11
lines changed

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.2"
58+
rdi_current_version = "v1.6.3"
5959

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

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.2.tgz)
41+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.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.2.tgz).
54+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.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.2.tgz)
108+
[download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.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.2.tar.gz)
165+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.3.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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ 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://cloud.redis.io/#/rlec-downloads)
27-
(under the *Modules, Tools & Integration* dropdown) and extract it to your
26+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-1.6.3.tar.gz)
27+
(in the *Modules, Tools & Integration* category) and extract it to your
2828
preferred installation folder.
2929

3030
1. Go to the installation folder:
@@ -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://cloud.redis.io/#/rlec-downloads).
100+
[Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-1.6.3.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.3 (March 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.3 (March 2025)
10+
toc: 'true'
11+
weight: 989
12+
---
13+
14+
> This maintenance release replaces the 1.6.2 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+
- Fix: RDI 1.6.2 VM Installer not working on RHEL-8 OS.
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/rs/references/rest-api/requests/actions/_index.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ weight: $weight
2323
GET /v1/actions
2424
```
2525

26-
Get the status of all actions (executing, queued, or completed) on all entities (clusters, nodes, and databases). This API tracks long-lived API requests that return either a `task_id` or an `action_uid`.
26+
Get the status of all running, pending, or completed actions on all clusters, nodes, and databases. This API tracks long-lived API requests that return either a `task_id` or an `action_uid`.
2727

2828
#### Required permissions
2929

@@ -41,7 +41,18 @@ GET /v1/actions
4141

4242
### Response {#get-all-response}
4343

44-
Returns a JSON array of [action objects]({{< relref "/operate/rs/references/rest-api/objects/action" >}}) and an array of [state-machine objects]({{< relref "/operate/rs/references/rest-api/objects/state-machine" >}}).
44+
Returns a JSON array of [action objects]({{< relref "/operate/rs/references/rest-api/objects/action" >}}), which represent tasks, and an array of [state-machine objects]({{< relref "/operate/rs/references/rest-api/objects/state-machine" >}}).
45+
46+
| Field | Type/Value | Description |
47+
|-------|------------|-------------|
48+
| action_uid | string | The action's globally unique identifier |
49+
| name | string | Name of the running or failed state machine |
50+
| progress | float (range: 0-100) | Percent of completed steps for the action |
51+
| status | "pending"<br />"active"<br />"completed"<br />"failed" | The action's status |
52+
| node_uid | string | UID of the node where the operation runs (optional) |
53+
| object_name | string | The object that the action runs on (optional) |
54+
| state | string | The current state of the state machine (optional) |
55+
| pending_ops | JSON object | List of operations that are waiting to run (optional)<br />{{<code>}}"pending_ops": {<br /> "3": {<br /> "heartbeat": integer,<br /> "snapshot": { ... },<br /> "last_sample_time": integer,<br /> "op_name": string,<br /> "status_code": string,<br /> "status_description": string,<br /> "progress": float<br /> }<br />}{{</code>}}<br />`pending_ops` is a map where the key is the `shard_id`, and the value is a map that can include the following optional fields:<br />**heartbeat**: The time, in seconds since the Unix epoch, since the last change in the progress of the operation.<br />**snapshot**: A map of properties stored by the operation that are needed to run.<br />**last_sample_time**: The time, in seconds since the Unix epoch, when the last snapshot of the operation was taken.<br />**op_name**: The name of the operation from the state machine that is running.<br />**status_code**: The code for the operation's current status.<br />**status_description**: The operation's current status.<br />**progress**: The operation's progress in percentage (1 to 100). |
4556

4657
Regardless of an action’s source, each action in the response contains the following attributes: `name`, `action_uid`, `status`, and `progress`.
4758

@@ -93,7 +104,7 @@ Regardless of an action’s source, each action in the response contains the fol
93104
GET /v1/actions/{uid}
94105
```
95106

96-
Get the status of a currently executing, queued, or completed action.
107+
Get the status of a specific action.
97108

98109
#### Required permissions
99110

@@ -119,6 +130,17 @@ GET /v1/actions/{uid}
119130

120131
Returns an [action object]({{< relref "/operate/rs/references/rest-api/objects/action" >}}).
121132

133+
| Field | Type/Value | Description |
134+
|-------|------------|-------------|
135+
| action_uid | string | The action's globally unique identifier |
136+
| name | string | Name of the running or failed state machine |
137+
| progress | float (range: 0-100) | Percent of completed steps for the action |
138+
| status | "pending"<br />"active"<br />"completed"<br />"failed" | The action's status |
139+
| node_uid | string | UID of the node where the operation runs (optional) |
140+
| object_name | string | The object that the action runs on (optional) |
141+
| state | string | The current state of the state machine (optional) |
142+
| pending_ops | JSON object | List of operations that are waiting to run (optional)<br />{{<code>}}"pending_ops": {<br /> "3": {<br /> "heartbeat": integer,<br /> "snapshot": { ... },<br /> "last_sample_time": integer,<br /> "op_name": string,<br /> "status_code": string,<br /> "status_description": string,<br /> "progress": float<br /> }<br />}{{</code>}}<br />`pending_ops` is a map where the key is the `shard_id`, and the value is a map that can include the following optional fields:<br />**heartbeat**: The time, in seconds since the Unix epoch, since the last change in the progress of the operation.<br />**snapshot**: A map of properties stored by the operation that are needed to run.<br />**last_sample_time**: The time, in seconds since the Unix epoch, when the last snapshot of the operation was taken.<br />**op_name**: The name of the operation from the state machine that is running.<br />**status_code**: The code for the operation's current status.<br />**status_description**: The operation's current status.<br />**progress**: The operation's progress in percentage (1 to 100). |
143+
122144
Regardless of an action’s source, each action contains the following attributes: `name`, `action_uid`, `status`, and `progress`.
123145

124146
#### Example JSON body

0 commit comments

Comments
 (0)