Skip to content

Commit 97d205d

Browse files
Merge pull request #1114 from redis/DOC-4787-rdi-rel-notes-160
DOC-4787 RDI release notes v1.6.0
2 parents 47d101d + 50596f2 commit 97d205d

File tree

3 files changed

+81
-1
lines changed

3 files changed

+81
-1
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.4.4"
58+
rdi_current_version = "v1.6.0"
5959

6060
[params.clientsConfig]
6161
"Python"={quickstartSlug="redis-py"}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
Title: redis.lookup
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- integrate
7+
- rs
8+
- rdi
9+
description: Lookup data from Redis using the given command and key
10+
group: di
11+
linkTitle: redis.lookup
12+
summary:
13+
Redis Data Integration keeps Redis in sync with the primary database in near
14+
real time.
15+
type: integration
16+
weight: 10
17+
---
18+
19+
**Properties**
20+
21+
|Name|Type|Description|Required|
22+
|----|----|-----------|--------|
23+
| **connection** |`string`| Connection name |yes|
24+
| **cmd** | `string` |The command to execute |yes|
25+
| [**args**](#args) | `string[]` | Redis command arguments | yes |
26+
| **language** | `string` |Language<br/>Enum: `"jmespath"`, `"sql"`<br/>| yes |
27+
| **field** | `string` |The target field to write the result to<br/>| yes |
28+
29+
**Additional Properties:** not allowed
30+
31+
## args\[\]: Redis command arguments {#args}
32+
33+
The list of expressions that produce arguments.
34+
35+
36+
**Items**
37+
38+
**Item Type:** `string`
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
Title: Redis Data Integration release notes 1.6.0 (February 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.0 (February 2025)
10+
toc: 'true'
11+
weight: 992
12+
---
13+
14+
> This maintenance release replaces the 1.4.4 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+
- RDI now requires the RDI database to have the following properties set, otherwise
28+
RDI will not start:
29+
- `maxmemory_policy`: `noeviction`,
30+
- `aof_enabled`: `1`
31+
32+
- Allow RDI to run in any K8s namespace
33+
34+
- Fix metadata API to support Oracle and SQL Server
35+
36+
- Added [denormalisation lookup block]({{< relref "/integrate/redis-data-integration/reference/data-transformation/lookup" >}})
37+
38+
- Many bug fixes
39+
40+
## Limitations
41+
42+
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.

0 commit comments

Comments
 (0)