Skip to content

Commit 49d1f54

Browse files
committed
Incorporate Yaron's feedback, part 1
1 parent fa87f86 commit 49d1f54

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

content/operate/rc/databases/rdi/_index.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,23 @@ Before you can create a data pipeline, you must have:
4747
- Oracle
4848
- SQL Server
4949
- PostgreSQL
50+
- mariaDB
51+
- Aurora
5052

5153
{{< note >}}
5254
Please be aware of the following limitations:
5355

5456
- The target database must be a Redis Cloud Pro database hosted on Amazon Web Services (AWS). Redis Cloud Essentials databases and databases hosted on Google Cloud do not support Data Integration.
55-
- Only the Ingest use case is supported at this time.
5657
- Source databases must also be hosted on AWS.
57-
- One source database can only be connected to one target database.
58+
- One source database can only be synced to one target database.
5859
{{< /note >}}
5960

6061
## Get started
6162

6263
To create a new data pipeline, you need to:
6364

6465
1. [Prepare your source database]({{<relref "/operate/rc/databases/rdi/setup">}}) and any associated credentials.
65-
2. [Create data pipeline]({{<relref "/operate/rc/databases/rdi/create">}}) and troubleshoot errors.
66+
2. [Provision data pipeline infrastructure]({{<relref "/operate/rc/databases/rdi/provision">}}) and troubleshoot errors.
6667
3. [Define the data pipeline]({{<relref "/operate/rc/databases/rdi/define">}}) by selecting which tables to sync.
6768

6869
Once your data pipeline is defined, you can [view and edit]({{<relref "/operate/rc/databases/rdi/view-edit">}}) it.

content/operate/rc/databases/rdi/define.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ hideListLinks: true
1010
weight: 3
1111
---
1212

13-
After you have [created your data pipeline]({{<relref "/operate/rc/databases/rdi/create">}}), you need to define it. You will select the database schemas and columns that you want to import and synchronize with your primary database.
13+
After you have [provisioned your data pipeline]({{<relref "/operate/rc/databases/rdi/provision]">}}), you need to define it. You will select the database schemas and columns that you want to import and synchronize with your primary database.
1414

1515
## Configure a new pipeline
1616

17-
1. In the [Redis Cloud console](https://cloud.redis.io/), go to your target database and select the **Data Pipeline** tab. If your pipeline is already created, select **Complete setup** to go to the **Pipeline definition** section.
17+
1. In the [Redis Cloud console](https://cloud.redis.io/), go to your target database and select the **Data Pipeline** tab. If your pipeline is already provisioned, select **Complete setup** to go to the **Pipeline definition** section.
1818
1. For the **Configure a new pipeline** option, select the Redis data type to write keys to the target. You can choose **Hash** or **JSON**.
1919

2020
Select **Continue**.
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
Title: Create data pipeline
2+
Title: Provision data pipeline
33
alwaysopen: false
44
categories:
55
- docs
66
- operate
77
- rc
8-
description: Create and troubleshoot your data pipeline.
8+
description: Provision and troubleshoot your data pipeline infrastructure.
99
hideListLinks: true
1010
weight: 2
1111
---
@@ -19,20 +19,20 @@ After you have [prepared your source database]({{<relref "/operate/rc/databases/
1919
1. In the **Connectivity** section, enter the **PrivateLink service name** of the [PrivateLink connected to your source database]({{< relref "/operate/rc/databases/rdi/setup#set-up-connectivity" >}}).
2020
1. Enter your database details. This depends on your database type, and includes:
2121
- **Port**: The database's port
22-
- **Database**: Your database's name, or the root database
22+
- **Database**: Your database's name, or the root database *(PostgresSQL, Oracle only)*; or a comma-separated list of one or more databases you want to connect to *(SQL Server only)*
2323
- **Database Server ID**: Unique ID for the replication client. Leave as default if you don't use replication *(mySQL and mariaDB only)*
2424
- **PDB**: Name of the Oracle pluggable database *(Oracle only)*
2525
1. Enter the ARN of your [database credentials secret]({{< relref "/operate/rc/databases/rdi/setup#share-source-database-credentials" >}}) in the **Source database secrets ARN** field.
2626
1. Select **Start pipeline setup**.
2727

28-
At this point, Redis Cloud will attempt to create your new pipeline.
28+
At this point, Redis Cloud will provision the pipeline infrastructure that will allow you to define your data pipeline.
2929

30-
Pipelines are created in the background. While they're being created, you aren't allowed to make changes. This process will take some time.
30+
Pipelines are provisioned in the background. You aren't allowed to make changes to your data pipeline or to your database during provisioning. This process will take a long time, so you can close the window and come back later.
3131

3232
See [Pipeline creation errors](#pipeline-creation-errors) to view a list of errors that can occur at this point.
3333

34-
When your pipeline is created, select **Complete setup**. You will then [define your data pipeline]({{<relref "/operate/rc/databases/rdi/define">}}).
34+
When your pipeline is provisioned, select **Complete setup**. You will then [define your data pipeline]({{<relref "/operate/rc/databases/rdi/define">}}).
3535

36-
## Pipeline creation errors
36+
## Pipeline provisioning errors
3737

3838
Add errors here.

content/operate/rc/databases/rdi/setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ See the [RDI architecture overview]({{< relref "/integrate/redis-data-integratio
3131

3232
## Share source database credentials
3333

34-
You need to share your source database credentials in an Amazon secret with Redis Cloud so that the pipeline can connect to your database.
34+
You need to share your source database credentials and certificates in an Amazon secret with Redis Cloud so that the pipeline can connect to your database.
3535

3636
In the [AWS Management Console](https://console.aws.amazon.com/), use the **Services** menu to locate and select **Security, Identity, and Compliance** > **Secrets Manager**. [Create a secret](https://docs.aws.amazon.com/secretsmanager/latest/userguide/create_secret.html) of type **Other type of secret** with the following key/value fields:
3737

@@ -63,4 +63,4 @@ For more details on AWS PrivateLink, see [Share your services through AWS Privat
6363

6464
## Next steps
6565

66-
After you have set up your source database and prepared connectivity and credentials, select **Start pipeline setup** to [create your data pipeline]({{<relref "/operate/rc/databases/rdi/create">}}).
66+
After you have set up your source database and prepared connectivity and credentials, select **Start pipeline setup** to [provision data pipeline infrastructure]({{<relref "/operate/rc/databases/rdi/provision">}}).

0 commit comments

Comments
 (0)