diff --git a/content/operate/rc/databases/rdi/_index.md b/content/operate/rc/databases/rdi/_index.md new file mode 100644 index 000000000..7092f259b --- /dev/null +++ b/content/operate/rc/databases/rdi/_index.md @@ -0,0 +1,67 @@ +--- +Title: Data Integration +alwaysopen: false +categories: +- docs +- operate +- rc +description: Use Redis Data Integration with Redis Cloud. +hideListLinks: true +weight: 99 +--- + +Redis Cloud now supports [Redis Data Integration (RDI)]({{}}), a fast and simple way to bring your data into Redis from other types of primary databases. + +A relational database usually handles queries much more slowly than a Redis database. If your application uses a relational database and makes many more reads than writes (which is the typical case) then you can improve performance by using Redis as a cache to handle the read queries quickly. Redis Cloud uses [ingest]({{}}) to help you offload all read queries from the application database to Redis automatically. + +Using a data pipeline lets you have a cache that is always ready for queries. RDI Data pipelines ensure that any changes made to your primary database are captured in your Redis cache within a few seconds, preventing cache misses and stale data within the cache. + +RDI helps Redis customers sync Redis Cloud with live data from their primary databases to: +- Meet the required speed and scale of read queries and provide an excellent and predictable user experience. +- Save resources and time when building pipelines and coding data transformations. +- Reduce the total cost of ownership by saving money on expensive database read replicas. + +Using RDI with Redis Cloud simplifies managing your data integration pipeline. No need to worry about hardware or underlying infrastructure, as Redis Cloud manages that for you. Creating the data flow from source to target is much easier, and there are validations in place to reduce errors. + +## Data pipeline architecture + +A RDI data pipeline sits between your source database and your target Redis database. Initially, the pipeline reads all of the data and imports it into the target database during the *initial cache loading* phase. After this initial sync is complete, the data pipeline enters the *change streaming* phase, where changes are captured as they happen. Changes in the source database are added to the target within a few seconds of capture. The data pipeline translates relational database rows to Redis hashes or JSON documents. + +For more info on how RDI works, see [RDI Architecture]({{}}). + +### Pipeline security + +Data pipelines are set up to ensure a high level of data security. Source database credentials and TLS secrets are stored in AWS secret manager and shared using the AWS Secret Manager CSI driver for secrets. See [Share source database credentials]({{}}) to learn how to share your source database credentials and TLS certificates with Redis Cloud. + +Connections to the source database use Java Database Connectivity (JDBC) through [AWS PrivateLink](https://aws.amazon.com/privatelink/), ensuring that the data pipeline is only exposed to the specific database endpoint. See [Set up connectivity]({{}}) to learn how to connect your PrivateLink to the Redis Cloud VPC. + +RDI encrypts all network connections with TLS. The pipeline will process data from the source database in-memory and write it to the target database using a TLS connection. There are no external connections to your data pipeline except from Redis Cloud management services. + +## Prerequisites + +Before you can create a data pipeline, you must have: + +- A [Redis Cloud Pro database]({{< relref "/operate/rc/databases/create-database/create-pro-database-new" >}}) hosted on Amazon Web Services (AWS) +- One supported source database, also hosted on AWS and connected to [AWS PrivateLink](https://aws.amazon.com/privatelink/): + - MySQL + - Oracle + - SQL Server + - PostgreSQL + - mariaDB + +{{< note >}} +Please be aware of the following limitations: + +- 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. +- Source databases must also be hosted on AWS. +- One source database can only be synced to one target database. +{{< /note >}} + +## Get started + +To create a new data pipeline, you need to: + +1. [Prepare your source database]({{}}) and any associated credentials. +2. [Define the source connection and data pipeline]({{}}) by selecting which tables to sync. + +Once your data pipeline is defined, you can [view and edit]({{}}) it. \ No newline at end of file diff --git a/content/operate/rc/databases/rdi/define.md b/content/operate/rc/databases/rdi/define.md new file mode 100644 index 000000000..2b2f0a8f6 --- /dev/null +++ b/content/operate/rc/databases/rdi/define.md @@ -0,0 +1,95 @@ +--- +Title: Define data pipeline +alwaysopen: false +categories: +- docs +- operate +- rc +description: Define the source connction and data pipeline. +hideListLinks: true +weight: 2 +--- + +After you have [prepared your source database]({{}}) and connection information, you can set up your new pipeline. To do this: + +1. [Define the source connection](#define-source-connection) by entering all required source database information. +2. [Define the data pipeline](#define-data-pipeline) by selecting the data that you want to sync from your source database to the target database. + +## Define source connection + +1. In the [Redis Cloud console](https://cloud.redis.io/), go to your target database and select the **Data Pipeline** tab. +1. Select **Define source database**. + {{The define source database button.}} +1. Enter a **Pipeline name**. This pipeline name will be the prefix to all keys generated by this pipeline in the target database. + {{The pipeline name and deployment CIDR fields.}} +1. Enter the **Deployment CIDR** for your pipeline, or use the one generated for you. This CIDR should not conflict with your apps or other databases. +1. In the **Source database connectivity** section, enter the **PrivateLink service name** of the [PrivateLink connected to your source database]({{< relref "/operate/rc/databases/rdi/setup#set-up-connectivity" >}}). + {{The Source database connectivity section, with database connection details and connectivity options.}} +1. Enter your database details. This depends on your database type, and includes: + - **Port**: The database's port + - **Database**: Your database's name, or the root database *(PostgreSQL, Oracle only)*, or a comma-separated list of one or more databases you want to connect to *(SQL Server only)* + - **Database Server ID**: Unique ID for the replication client. Leave as default if you don't use replication *(mySQL and mariaDB only)* + - **PDB**: Name of the Oracle pluggable database *(Oracle only)* +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. +1. Select **Start pipeline setup**. + {{The start pipeline setup button.}} +1. Redis Cloud will attempt to connect to PrivateLink. Accept the incoming connection on AWS PrivateLink to proceed. See [Accept or Reject PrivateLink connection requests](https://docs.aws.amazon.com/vpc/latest/privatelink/configure-endpoint-service.html#accept-reject-connection-requests). + + If Redis Cloud can't find your PrivateLink connection, make sure that the PrivateLink service name is correct and that Redis Cloud is listed as an Allowed Principal for your VPC. See [Set up connectivity]({{}}) for more info. + +At this point, Redis Cloud will provision the pipeline infrastructure that will allow you to define your data pipeline. + +{{The Pipeline setup in progress screen.}} + +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. + +When your pipeline is provisioned, select **Complete setup**. You will then [define your data pipeline](#define-data-pipeline). + +{{The complete setup button.}} + +## Define data pipeline + +After your pipeline is provisioned, you will be able to define your pipeline. You will select the database schemas and columns that you want to import and synchronize with your primary database. + +### Configure a new pipeline + +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. + {{The complete setup button.}} +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**. + {{The Pipeline definition screen. Configure a new pipeline is selected.}} + Select **Continue**. + {{The continue button.}} +1. Select the Schema and Tables you want to migrate to the target database from the **Source data selection** list. + {{The select source data section. }} + + You can select any number of columns from a table. + + {{The select source data section. A table is expanded with a few columns selected.}} + + If any tables are missing a unique constraint, the **Missing unique constraint** list will appear. Select the columns that define a unique constraint for those tables from the list. + + {{The missing unique constraint list.}} + + {{The missing unique constraint list with columns selected.}} + + Select **Add schema** to add more database schemas. + + {{The add schema button.}} + + Select **Delete** to delete a schema. You must have at least one schema to continue. + + {{The delete schema button.}} + + After you've selected the schemas and tables you want to sync, select **Continue**. + + {{The continue button.}} + +1. Review the tables you selected in the **Summary**. If everything looks correct, select **Start ingest** to start ingesting data from your source database. + + {{The start ingest button.}} + +At this point, the data pipeline will ingest data from the source database to your target Redis database. This process will take time, especially if you have a lot of records in your source database. + +After this initial sync is complete, the data pipeline enters the *change streaming* phase, where changes are captured as they happen. Changes in the source database are added to the target within a few seconds of capture. + +You can view the status of your data pipeline in the **Data pipeline** tab of your database. See [View and edit data pipeline]({{}}) to learn more. \ No newline at end of file diff --git a/content/operate/rc/databases/rdi/setup.md b/content/operate/rc/databases/rdi/setup.md new file mode 100644 index 000000000..98fedfa66 --- /dev/null +++ b/content/operate/rc/databases/rdi/setup.md @@ -0,0 +1,100 @@ +--- +Title: Prepare source database +alwaysopen: false +categories: +- docs +- operate +- rc +description: Prepare your source database and database credentials for Data integration. +hideListLinks: true +weight: 1 +--- + +## Create new data pipeline + +1. In the [Redis Cloud console](https://cloud.redis.io/), go to your target database and select the **Data Pipeline** tab. +1. Select **Create data pipeline**. + {{The create data pipeline button.}} +1. Select your source database type. The following database types are supported: + - MySQL + - mariaDB + - Oracle + - SQL Server + - PostgreSQL + {{The select source database type list.}} +1. If you know the size of your source database, enter it into the **Source dataset size** field. + {{Enter the amount of source data you plan to ingest.}} + +## Prepare source database + +Before using the pipeline, you must first prepare your source database to use the Debezium connector for change data capture (CDC). + +See [Prepare source databases]({{}}) to find steps for your database type: +- [MySQL and mariaDB]({{}}) +- [Oracle]({{}}) +- [SQL Server]({{}}) +- [PostgreSQL]({{}}) + +See the [RDI architecture overview]({{< relref "/integrate/redis-data-integration/architecture#overview" >}}) for more information about CDC. + +## Share source database credentials + +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. + +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 settings: + +- **Key/value pairs**: Enter the following key/value pairs. + + - `username`: Database username + - `password`: Database password + - `server_certificate`: Server certificate in PEM format *(TLS only)* + - `client_certificate`: [X.509 client certificate](https://en.wikipedia.org/wiki/X.509) or chain in PEM format *(mTLS only)* + - `client_certificate_key`: Key for the client certificate or chain in PEM format *(mTLS only)* + - `client_certificate_passphrase`: Passphrase or password for the client certificate or chain in PEM format *(mTLS only)* + + {{}} +If your source database has TLS or mTLS enabled, we recommend that you enter the `server_certificate`, `client_certificate`, and `client_certificate_key` into the secret editor using the **Key/Value** input method instead of the **JSON** input method. Pasting directly into the JSON editor may cause an error. + {{}} + +- **Encryption key**: Select a self-managed encryption key from the list of keys, or select **Add a new key** to [create one](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html). + +- **Resource permissions**: Add the following permissions to your secret to allow the Redis data pipeline to access your secret. Replace `` with the provided AWS Account ID. + + ```json + { + "Version" : "2012-10-17", + "Statement" : [ { + "Sid" : "RedisDataIntegrationRoleAccess", + "Effect" : "Allow", + "Principal" : "*", + "Action" : [ "secretsmanager:GetSecretValue", "secretsmanager:DescribeSecret" ], + "Resource" : "*", + "Condition" : { + "StringLike" : { + "aws:PrincipalArn" : "arn:aws:iam:::role/redis-data-pipeline-secrets-role" + } + } + } ] + } + ``` + +After you store this secret, you can view and copy the [Amazon Resource Name (ARN)](https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_iam-permissions.html#iam-resources) of your secret on the secret details page. + +## Set up connectivity + +To expose your source database to Redis, you need to add Redis Cloud as an Allowed Principal on the [AWS PrivateLink VPC permissions](https://docs.aws.amazon.com/vpc/latest/privatelink/configure-endpoint-service.html#add-remove-permissions) for the PrivateLink connected to your source database. + +1. Copy the Amazon Resource Name (ARN) provided in the **Setup connectivity** section. +1. Open the [Amazon VPC console](https://console.aws.amazon.com/vpc/) and select **Endpoint services**. +1. Navigate to **Allow principals** tab. +1. Add the Redis Cloud ARN and choose **Allow principals**. +1. Copy your PrivateLink service name for later. + +For more details on AWS PrivateLink, see [Share your services through AWS PrivateLink](https://docs.aws.amazon.com/vpc/latest/privatelink/privatelink-share-your-services.html). + + +## Next steps + +After you have set up your source database and prepared connectivity and credentials, select **Define source database** to [define your source connection and data pipeline]({{}}). + +{{ADD ALT TEXT}} \ No newline at end of file diff --git a/content/operate/rc/databases/rdi/view-edit.md b/content/operate/rc/databases/rdi/view-edit.md new file mode 100644 index 000000000..a629b4007 --- /dev/null +++ b/content/operate/rc/databases/rdi/view-edit.md @@ -0,0 +1,129 @@ +--- +Title: View and edit data pipeline +alwaysopen: false +categories: +- docs +- operate +- rc +description: Edit and observe your data pipeline. +hideListLinks: true +weight: 3 +--- + +Use the **Data pipeline** tab in your database to view and edit your data pipeline. + +The **Data pipeline** tab gives an overview of your data pipeline and lets you view your data stream metrics. + +The **Status** table shows statistics for the whole data pipeline: +- **Status**: The status of the data pipeline. Possible statuses include: + | Status | Description | + |--------|-------------| + | {{Initial Sync}} | The data pipeline is ingesting all records from the source database into the target database. | + | {{Streaming}} | The data pipeline is capturing new changes from the source database as they happen. Changes in the source database are added to the target database within a few seconds. | + | {{Stopped}}| The data pipeline has been [stopped](#stop-and-restart-data-pipeline). | + | {{Error}} | There is an error in the data pipeline. [Reset the pipeline](#reset-data-pipeline) and contact support if the issue persists. | +- **Total ingested**: Total number of records ingested from the source database. +- **Total inserted**: Total number of records inserted into the target database. +- **Total filtered**: Total number of records filtered from being inserted into the target database. +- **Total rejected**: Total number of records that could not be parsed or inserted into the target database. + +The **Data stream metrics** table shows the following metrics for each data stream: +| Metric | Description | +|--------|-------------| +| **Name** | Name of the data stream. Each stream corresponds to a table from the source database. | +| **Total** | Total number of records arrived from the source table. | +| **Pending** | Number of records from the source table that are waiting to be processed. | +| **Inserted** | Number of new records from the source table that have been written to the target database. | +| **Updated** | Number of updated records from the source table that have been updated in the target database. | +| **Deleted** | Number of deleted records from the source table that have been deleted in the target database. | +| **Filtered** | Number of records from the source table that were filtered from being inserted into the target database. | +| **Rejected** | Number of records from the source table that could not be parsed or inserted into the target database. | + + +## Edit data pipeline + +To change the data you want to ingest from the data pipeline: + +1. From the **Data pipeline** tab, select **Edit**. + + {{The edit pipeline button.}} + +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**. + + {{The Pipeline definition screen. Configure a new pipeline is selected.}} + + Select **Continue**. + + {{The continue button.}} + +1. Select the schema and tables you want to migrate to the target database from the **Source data selection** list. + + {{The select source data section. }} + + You can select any number of columns from a table. + + {{The select source data section. A table is expanded with a few columns selected.}} + + If any tables are missing a unique constraint, the **Missing unique constraint** list will appear. Select the columns that define a unique constraint for those tables from the list. + + {{The missing unique constraint list.}} + + {{The missing unique constraint list with columns selected.}} + + Select **Add schema** to add more database schemas. + + {{The add schema button.}} + + Select **Delete** to delete a schema. You must have at least one schema to continue. + + {{The delete schema button.}} + + After you've selected the schemas and tables you want to sync, select **Continue**. + + {{The continue button.}} + +1. Review the tables you selected in the **Summary** and select how you want to update the data pipeline: + + - **Apply to new data changes only**: The data pipeline will only synchronize new updates to the schema and tables selected. The data pipeline will not ingest any data from new schemas or tables that are selected. + - **Reset pipeline (re-process all data)**: The data pipeline will re-ingest all of the selected data. + - **Flush cached data and reset pipeline**: The data pipeline will flush the target Redis database, and then re-ingest all of the selected data from the source database. + +1. Select **Apply changes**. + +At this point, the data pipeline will apply the changes. If you selected **Reset pipeline** or **Flush cached data and reset pipeline**, the data pipeline will ingest data from the source database to the target database. After this initial sync is complete, the data pipeline enters the *change streaming* phase, where changes are captured as they happen. + +If you selected **Apply to new data changes only**, the data pipeline will enter the *change streaming* phase without ingesting data. + +## Reset data pipeline + +Resetting the data pipeline creates a new baseline snapshot from the current state of your source database, and re-processes the data from the source database to the target Redis database. You may want to reset the pipeline if the source and target databases were disconnected or you made large changes to the data pipeline. + +To reset the data pipeline and restart the ingest process: + +1. From the **Data pipeline** tab, select **More actions**, and then **Reset pipeline**. + +1. If you want to flush the database, check **Flush target database**. + +1. Select **Reset data pipeline**. + +At this point, the data pipeline will re-ingest data from the source database to your target Redis database. + +## Stop and restart data pipeline + +To stop the data pipeline from synchronizing new data: + +1. From the **Data pipeline** tab, select **More actions**, and then **Stop pipeline**. + +1. Select **Stop data pipeline** to confirm. + +Stopping the data pipeline will suspend data processing. To restart the pipeline from the **Data pipeline** tab, select **More actions**, and then **Start pipeline**. + +## Delete pipeline + +To delete the data pipeline: + +1. From the **Data pipeline** tab, select **More actions**, and then **Delete pipeline**. + +1. Select **Delete data pipeline** to confirm. + +Deleted data pipelines cannot be recovered. \ No newline at end of file diff --git a/static/images/rc/rdi/pipeline-status-error.png b/static/images/rc/rdi/pipeline-status-error.png new file mode 100644 index 000000000..2429dd725 Binary files /dev/null and b/static/images/rc/rdi/pipeline-status-error.png differ diff --git a/static/images/rc/rdi/pipeline-status-initial-sync.png b/static/images/rc/rdi/pipeline-status-initial-sync.png new file mode 100644 index 000000000..6892cb3d6 Binary files /dev/null and b/static/images/rc/rdi/pipeline-status-initial-sync.png differ diff --git a/static/images/rc/rdi/pipeline-status-stopped.png b/static/images/rc/rdi/pipeline-status-stopped.png new file mode 100644 index 000000000..19368975f Binary files /dev/null and b/static/images/rc/rdi/pipeline-status-stopped.png differ diff --git a/static/images/rc/rdi/pipeline-status-streaming.png b/static/images/rc/rdi/pipeline-status-streaming.png new file mode 100644 index 000000000..18fa67c96 Binary files /dev/null and b/static/images/rc/rdi/pipeline-status-streaming.png differ diff --git a/static/images/rc/rdi/rdi-add-schema.png b/static/images/rc/rdi/rdi-add-schema.png new file mode 100644 index 000000000..d7053d35b Binary files /dev/null and b/static/images/rc/rdi/rdi-add-schema.png differ diff --git a/static/images/rc/rdi/rdi-complete-setup.png b/static/images/rc/rdi/rdi-complete-setup.png new file mode 100644 index 000000000..39450aca0 Binary files /dev/null and b/static/images/rc/rdi/rdi-complete-setup.png differ diff --git a/static/images/rc/rdi/rdi-configure-new-pipeline.png b/static/images/rc/rdi/rdi-configure-new-pipeline.png new file mode 100644 index 000000000..b6a8fbdb7 Binary files /dev/null and b/static/images/rc/rdi/rdi-configure-new-pipeline.png differ diff --git a/static/images/rc/rdi/rdi-continue-button.png b/static/images/rc/rdi/rdi-continue-button.png new file mode 100644 index 000000000..b06ebfcc9 Binary files /dev/null and b/static/images/rc/rdi/rdi-continue-button.png differ diff --git a/static/images/rc/rdi/rdi-create-data-pipeline.png b/static/images/rc/rdi/rdi-create-data-pipeline.png new file mode 100644 index 000000000..c6403da46 Binary files /dev/null and b/static/images/rc/rdi/rdi-create-data-pipeline.png differ diff --git a/static/images/rc/rdi/rdi-define-connectivity.png b/static/images/rc/rdi/rdi-define-connectivity.png new file mode 100644 index 000000000..1b8ca02f7 Binary files /dev/null and b/static/images/rc/rdi/rdi-define-connectivity.png differ diff --git a/static/images/rc/rdi/rdi-define-pipeline-cidr.png b/static/images/rc/rdi/rdi-define-pipeline-cidr.png new file mode 100644 index 000000000..66cb61caf Binary files /dev/null and b/static/images/rc/rdi/rdi-define-pipeline-cidr.png differ diff --git a/static/images/rc/rdi/rdi-define-source-database.png b/static/images/rc/rdi/rdi-define-source-database.png new file mode 100644 index 000000000..3922b68b6 Binary files /dev/null and b/static/images/rc/rdi/rdi-define-source-database.png differ diff --git a/static/images/rc/rdi/rdi-delete-schema.png b/static/images/rc/rdi/rdi-delete-schema.png new file mode 100644 index 000000000..aff121e8a Binary files /dev/null and b/static/images/rc/rdi/rdi-delete-schema.png differ diff --git a/static/images/rc/rdi/rdi-edit-button.png b/static/images/rc/rdi/rdi-edit-button.png new file mode 100644 index 000000000..c8b9af90c Binary files /dev/null and b/static/images/rc/rdi/rdi-edit-button.png differ diff --git a/static/images/rc/rdi/rdi-missing-unique-constraint.png b/static/images/rc/rdi/rdi-missing-unique-constraint.png new file mode 100644 index 000000000..23871ce55 Binary files /dev/null and b/static/images/rc/rdi/rdi-missing-unique-constraint.png differ diff --git a/static/images/rc/rdi/rdi-pipeline-setup-in-progress.png b/static/images/rc/rdi/rdi-pipeline-setup-in-progress.png new file mode 100644 index 000000000..78c74858c Binary files /dev/null and b/static/images/rc/rdi/rdi-pipeline-setup-in-progress.png differ diff --git a/static/images/rc/rdi/rdi-select-columns.png b/static/images/rc/rdi/rdi-select-columns.png new file mode 100644 index 000000000..ae98822e0 Binary files /dev/null and b/static/images/rc/rdi/rdi-select-columns.png differ diff --git a/static/images/rc/rdi/rdi-select-constraints.png b/static/images/rc/rdi/rdi-select-constraints.png new file mode 100644 index 000000000..37a79afc1 Binary files /dev/null and b/static/images/rc/rdi/rdi-select-constraints.png differ diff --git a/static/images/rc/rdi/rdi-select-source-data.png b/static/images/rc/rdi/rdi-select-source-data.png new file mode 100644 index 000000000..1ab165ba2 Binary files /dev/null and b/static/images/rc/rdi/rdi-select-source-data.png differ diff --git a/static/images/rc/rdi/rdi-select-source-db.png b/static/images/rc/rdi/rdi-select-source-db.png new file mode 100644 index 000000000..a44f529bc Binary files /dev/null and b/static/images/rc/rdi/rdi-select-source-db.png differ diff --git a/static/images/rc/rdi/rdi-source-dataset-size.png b/static/images/rc/rdi/rdi-source-dataset-size.png new file mode 100644 index 000000000..f2a9c7f2b Binary files /dev/null and b/static/images/rc/rdi/rdi-source-dataset-size.png differ diff --git a/static/images/rc/rdi/rdi-start-ingest.png b/static/images/rc/rdi/rdi-start-ingest.png new file mode 100644 index 000000000..9c09b0420 Binary files /dev/null and b/static/images/rc/rdi/rdi-start-ingest.png differ diff --git a/static/images/rc/rdi/rdi-start-pipeline-setup.png b/static/images/rc/rdi/rdi-start-pipeline-setup.png new file mode 100644 index 000000000..2152f92da Binary files /dev/null and b/static/images/rc/rdi/rdi-start-pipeline-setup.png differ