-
Notifications
You must be signed in to change notification settings - Fork 247
DOC-5161 updated RDI requirement details #1486
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
2 commits
Select commit
Hold shift + click to select a range
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
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,39 @@ | ||
* Redis Enterprise v6.4 or greater for the cluster. | ||
* For production, 250MB RAM with one primary and one replica is recommended, but for the | ||
quickstart or for development, 125MB and a single shard is sufficient. | ||
* If you are deploying RDI for a production environment then secure this database with a password | ||
and TLS. | ||
* Provide the installation with the required RDI database details. | ||
* Set the database's | ||
[eviction policy]({{< relref "/operate/rs/databases/memory-performance/eviction-policy" >}}) to `noeviction`. Note that you can't set this using | ||
[`rladmin`]({{< relref "/operate/rs/references/cli-utilities/rladmin" >}}), | ||
so you must either do it using the admin UI or with the following | ||
[REST API]({{< relref "/operate/rs/references/rest-api" >}}) | ||
command: | ||
|
||
```bash | ||
curl -v -k -d '{"eviction_policy": "noeviction"}' \ | ||
-u '<USERNAME>:<PASSWORD>' \ | ||
-H "Content-Type: application/json" \ | ||
-X PUT https://<CLUSTER_FQDN>:9443/v1/bdbs/<BDB_UID> | ||
``` | ||
* Set the database's | ||
[data persistence]({{< relref "/operate/rs/databases/configure/database-persistence" >}}) | ||
to AOF - fsync every 1 sec. Note that you can't set this using | ||
[`rladmin`]({{< relref "/operate/rs/references/cli-utilities/rladmin" >}}), | ||
so you must either do it using the admin UI or with the following | ||
[REST API]({{< relref "/operate/rs/references/rest-api" >}}) | ||
commands: | ||
|
||
```bash | ||
curl -v -k -d '{"data_persistence":"aof"}' \ | ||
-u '<USERNAME>:<PASSWORD>' \ | ||
-H "Content-Type: application/json" | ||
-X PUT https://<CLUSTER_FQDN>:9443/v1/bdbs/<BDB_UID> | ||
curl -v -k -d '{"aof_policy":"appendfsync-every-sec"}' \ | ||
-u '<USERNAME>:<PASSWORD>' \ | ||
-H "Content-Type: application/json" \ | ||
-X PUT https://<CLUSTER_FQDN>:9443/v1/bdbs/<BDB_UID> | ||
``` | ||
* **Ensure that the RDI database is not clustered.** RDI will not work correctly if the | ||
RDI database is clustered, but it is OK for the target database to be clustered. |
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,5 @@ | ||
RDI only supports versions of Kubernetes and OpenShift that have | ||
not yet reached end-of-life (EOL). See the | ||
[Kubernetes](https://kubernetes.io/releases/) and | ||
[OpenShift](https://access.redhat.com/support/policy/updates/openshift) | ||
lifecycle pages for the latest updates. |
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,2 @@ | ||
* RHEL 8 or 9 | ||
* Ubuntu 20.04, 22.04, or 24.04 |
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,8 @@ | ||
* **CPU**: A minimum of 4 CPU cores. You should consider adding | ||
2-6 extra cores on top of this if your dataset is big and you want to ingest the | ||
baseline snapshot as fast as possible. | ||
* **RAM**: 2GB | ||
* **Disk**: On top of the OS footprint, | ||
RDI requires 20GB in the `/var` folder and 1GB in the `/opt` folder (to | ||
store the log files). This allows space for upgrades. | ||
* **Network interface**: 10GB or more. |
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
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
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
40 changes: 40 additions & 0 deletions
40
content/integrate/redis-data-integration/installation/reqsummary.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,40 @@ | ||
--- | ||
Title: Requirements summary | ||
alwaysopen: false | ||
categories: | ||
- docs | ||
- integrate | ||
- rs | ||
- rdi | ||
description: Requirements and recommendations for RDI installations. | ||
group: di | ||
hideListLinks: false | ||
linkTitle: Requirements summary | ||
summary: Redis Data Integration keeps Redis in sync with the primary database in near | ||
real time. | ||
type: integration | ||
weight: 5 | ||
--- | ||
|
||
The sections below summarize the software and hardware requirements for | ||
an RDI installation. | ||
|
||
## Hardware requirements for VM installation | ||
|
||
{{< embed-md "rdi-vm-reqs.md" >}} | ||
|
||
## OS requirements for VM installation | ||
|
||
{{< embed-md "rdi-os-reqs.md" >}} | ||
|
||
## Kubernetes/OpenShift supported versions | ||
|
||
{{< embed-md "rdi-k8s-reqs.md" >}} | ||
|
||
## RDI database requirements | ||
|
||
{{< embed-md "rdi-db-reqs.md" >}} | ||
|
||
## Supported source databases | ||
|
||
{{< embed-md "rdi-supported-source-versions.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
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
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.
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.
Please ensure the database is not clustered & sharded (please add a GUI screenshot from RE console to make it clear)