-
Notifications
You must be signed in to change notification settings - Fork 274
DOC-4600 RDI instructions to prepare AWS Aurora PostgreSQL DB #938
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
828ada1
DOC-4600 added create database details and screenshots
andy-stark-redis edb066b
DOC-4600 added steps up to connection
andy-stark-redis 5c4302d
DOC-4600 finished basic first draft
andy-stark-redis c68042f
DOC-4600 finished first draft
andy-stark-redis 7f33cde
DOC-4600 deleted images that are not needed
andy-stark-redis File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
58 changes: 58 additions & 0 deletions
58
...nt/integrate/redis-data-integration/data-pipelines/prepare-dbs/aws-aur-pgsql.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| --- | ||
| Title: Prepare AWS Aurora and PostgreSQL for RDI | ||
| aliases: /integrate/redis-data-integration/ingest/data-pipelines/prepare-dbs/my-sql-mariadb/ | ||
| alwaysopen: false | ||
| categories: | ||
| - docs | ||
| - integrate | ||
| - rs | ||
| - rdi | ||
| description: Prepare AWS Aurora/PostgreSQL databases to work with RDI | ||
| group: di | ||
| linkTitle: Prepare AWS Aurora/PostgreSQL | ||
| summary: Redis Data Integration keeps Redis in sync with the primary database in near | ||
| real time. | ||
| type: integration | ||
| weight: 5 | ||
| --- | ||
|
|
||
| Follow the steps in the sections below to prepare an | ||
| [AWS Aurora PostgreSQL](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_GettingStartedAurora.CreatingConnecting.AuroraPostgreSQL.html) | ||
| database to work with RDI. | ||
|
|
||
| ## 1. Create a parameter group | ||
|
|
||
| In the [Relational Database Service (RDS) console](https://console.aws.amazon.com/rds/), | ||
| navigate to **Parameter groups > Create parameter group**. You will see the panel shown | ||
| below: | ||
|
|
||
| {{<image filename="images/rdi/ingest/prepsrc/aurora-pgsql/CreateParamGroup.jpg" alt="Create parameter group panel" >}} | ||
|
|
||
| Enter the following information: | ||
|
|
||
| | Name | Value | | ||
| | :-- | :-- | | ||
| | **Parameter group name** | rdi-aurora-pg | | ||
| | **Description** | Enable logical replication for RDI | | ||
| | **Engine Type** | Aurora PostgreSQL | | ||
| | **Parameter group family** | aurora-postgresql15 | | ||
| | **Type** | DB Cluster Parameter Group | | ||
|
|
||
| Select **Create** to create the parameter group. | ||
|
|
||
| ## 2. Edit the parameter group | ||
|
|
||
| Navigate to **Parameter groups** in the console. Select the `rdi-aurora-pg` | ||
| group you have just created and then select **Edit** . You will see this panel: | ||
|
|
||
| {{<image filename="images/rdi/ingest/prepsrc/aurora-pgsql/EditParamGroup.jpg" alt="Edit parameter group panel" >}} | ||
|
|
||
| Search for the `rds.logical_replication` parameter and set its value to 1. Then, | ||
| select **Save Changes**. | ||
|
|
||
| ## 3. Select the new parameter group | ||
|
|
||
| Scroll down to **Additional Configuration**. Set the **DB Cluster Parameter Group** | ||
| to the value `rdi-aurora-pg` that you have just added: | ||
|
|
||
| {{<image filename="images/rdi/ingest/prepsrc/aurora-pgsql/CreateDB6.jpg" alt="Additional Configuration panel" >}} | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the values in this table, maybe choose a different rendering for values that appear in the linked images. For example, use a
codefor rdi-aurora-pg, as you do further down on this page; use bold for "DB Cluster Parameter Group" because it is a UI element; etc.