Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/develop/tools/insight/rdi-connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ weight: 4
Redis Data Integration (RDI) and its [ingest pipeline capability]({{< relref "/integrate/redis-data-integration" >}}) is an end-to-end solution for mirroring your application's primary database in Redis. RDI employs a capture data change mechanism and a stream processor to map and transform source data such as relational tables into fast Redis data structures that match your use cases.
You can read more about RDI's ingest architecture [on these pages]({{< relref "/integrate/redis-data-integration/architecture" >}}).

As of version `2.54.0`, Redis Insight includes RDI connectivity, which allows you to connect to [RDI management planes]({{< relref "/integrate/redis-data-integration/architecture" >}}#how-rdi-is-deployed), create, test, and deploy [RDI pipelines]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}}), and view RDI statistics.
As of version `2.54.0`, Redis Insight includes RDI connectivity, which allows you to connect to [RDI management planes]({{< relref "/integrate/redis-data-integration/architecture" >}}#how-rdi-is-deployed), create, test, and deploy [RDI pipelines]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}), and view RDI statistics.

## Connect

Expand Down Expand Up @@ -117,7 +117,7 @@ This will take you to the job editor with the template selection menu open. Make
The options listed in the above menu depend on the capabilities of your RDI configuration.
{{< /note >}}

The [RDI documentation]({{< relref "/integrate/redis-data-integration/data-pipelines/transform-examples" >}}) has several examples of transformation jobs that can help get you started. Note: RDI uses a very specific YAML format for job files. See [here]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}}#job-files) for more information.
The [RDI documentation]({{< relref "/integrate/redis-data-integration/data-pipelines/transform-examples" >}}) has several examples of transformation jobs that can help get you started. Note: RDI uses a very specific YAML format for job files. See [here]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}#job-files) for more information.

<img src="../images/ri-rdi-job-editor-template.png">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ ALTER TABLE CHINOOK.TAB1 ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS;
```

After you run an initial
[snapshot]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines#pipeline-lifecycle" >}}),
[snapshot]({{< relref "/integrate/redis-data-integration/data-pipelines/#pipeline-lifecycle" >}}),
the XML data appears in your Redis target database:

{{< image filename="/images/rdi/ingest/xmltype-example.webp" >}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ section to learn how to do this.
When the Helm installation is complete and you have prepared the source database for CDC,
you are ready to start using RDI.
Use [Redis Insight]({{< relref "/develop/tools/insight/rdi-connector" >}}) to
[configure]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}}) and
[configure]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}) and
[deploy]({{< relref "/integrate/redis-data-integration/data-pipelines/deploy" >}})
your pipeline.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ section to learn how to do this.

When the installation is complete, and you have prepared the source database for CDC,
you are ready to start using RDI. See the guides on how to
[configure]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}}) and
[configure]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}) and
[deploy]({{< relref "/integrate/redis-data-integration/data-pipelines/deploy" >}})
RDI pipelines for more information. You can also configure and deploy a pipeline
using [Redis Insight]({{< relref "/develop/tools/insight/rdi-connector" >}}).
Expand Down
2 changes: 1 addition & 1 deletion content/integrate/redis-data-integration/observability.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The endpoint for the stream processor metrics is `https://<RDI_HOST>/metrics/rdi

RDI reports metrics during the two main phases of the ingest pipeline, the *snapshot*
phase and the *change data capture (CDC)* phase. (See the
[pipeline lifecycle]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}})
[pipeline lifecycle]({{< relref "/integrate/redis-data-integration/data-pipelines" >}})
docs for more information). The table below shows the full set of metrics that
RDI reports.

Expand Down
4 changes: 2 additions & 2 deletions content/integrate/redis-data-integration/quick-start-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Use the Redis Enterprise Cluster Manager UI to create the RDI database with the
During the installation, RDI placed the pipeline templates at `/opt/rdi/config`.
If you go to that folder and run the `ll` command, you will see the pipeline
configuration file, `config.yaml`, and the `jobs` folder (see the page about
[Pipelines]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines" >}}) for more information). Use Redis Insight to open
[Pipelines]({{< relref "/integrate/redis-data-integration/data-pipelines" >}}) for more information). Use Redis Insight to open
the `config.yaml` file and then edit the following settings:

- Set the `host` to `localhost` and the `port` to 5432.
Expand Down Expand Up @@ -136,7 +136,7 @@ Once the pipeline has loaded a *snapshot* of all the existing data from the sour
it enters *change data capture (CDC)* mode (see the
[architecture overview]({{< relref "/integrate/redis-data-integration/architecture#overview" >}})
and the
[ingest pipeline lifecycle]({{< relref "/integrate/redis-data-integration/data-pipelines/data-pipelines#ingest-pipeline-lifecycle" >}})
[ingest pipeline lifecycle]({{< relref "/integrate/redis-data-integration/data-pipelines#pipeline-lifecycle" >}})
for more information
).

Expand Down