Skip to content

Commit f8da6f6

Browse files
committed
demo updates
1 parent 38676a0 commit f8da6f6

File tree

6 files changed

+458
-35
lines changed

6 files changed

+458
-35
lines changed

connectors/mssql/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
redis-connect-sqlserver is a Redis Connect connector for capturing changes (INSERT, UPDATE and DELETE) from MS SQL Server (source) and writing them to a Redis Enterprise database (Target). redis-connect-sqlserver cdc connector implementation is based on [Debezium](https://debezium.io/documentation/reference/stable/connectors/sqlserver.html), which is an open source distributed platform for change data capture.
44

55
<p>
6-
The first time redis-connect-sqlserver connects to a SQL Server database/cluster, it reads a consistent snapshot of all of the schemas.
6+
The first time redis-connect-sqlserver connects to a SQL Server database/cluster, it reads a consistent snapshot of all the schemas.
77
When that snapshot is complete, the connector continuously streams the changes that were committed to SQL Server and generates a corresponding insert, update or delete event.
8-
All of the events for each tables are recorded in a separate Redis data structure or module of your choice, where they can be easily consumed by applications and services.
8+
All the events for each table(s) are recorded in a separate Redis data structure or module of your choice, where they can be easily consumed by applications and services.
99

1010
## Overview
1111

@@ -435,3 +435,7 @@ redis-connect-sqlserver/bin$ ./redisconnect.sh stage
435435
```bash
436436
redis-connect-sqlserver/bin$ ./redisconnect.sh start
437437
```
438+
439+
| ℹ️ |
440+
|:-------------------------------------------|
441+
| Quick Start: Follow the [demo](demo) |

connectors/oracle/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
redis-connect-oracle is a Redis Connect connector for capturing changes (INSERT, UPDATE and DELETE) from Oracle Database (source) and writing them to a Redis Enterprise database (Target). The connector uses [Oracle LogMiner](https://docs.oracle.com/cd/B19306_01/server.102/b14215/logminer.htm#i1010243) to read the database redo log.
44

55
<p>
6-
The first time redis-connect-oracle connects to a Oracle database, it reads a consistent snapshot of all of the schemas.
6+
The first time redis-connect-oracle connects to a Oracle database, it reads a consistent snapshot of all the schemas.
77
When that snapshot is complete, the connector continuously streams the changes that were committed to Oracle and generates a corresponding insert, update or delete event.
8-
All of the events for each tables are recorded in a separate Redis data structure or module of your choice, where they can be easily consumed by applications and services.
8+
All the events for each table(s) are recorded in a separate Redis data structure or module of your choice, where they can be easily consumed by applications and services.
99

10-
| ℹ️ |
11-
|:---------------------------|
12-
| Quick Start: Follow the [demo](demo)|
13-
| K8s Setup: Follow the [k8s-docs](k8s-docs)|
10+
| ℹ️ |
11+
|:--------------------------------------------|
12+
| Quick Start: Follow the [demo](demo) |
13+
| K8s Setup: Follow the [k8s-docs](k8s-docs) |

connectors/oracle/demo/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* Please have 8 vCPU*, 8GB RAM and 50GB storage for this demo to function properly. Adjust the resources based on your requirements. For HA, at least have 2 Redis Connect Connector instances deployed on separate hosts.
55
* [Oracle JDBC Driver](https://www.oracle.com/database/technologies/appdev/jdbc-downloads.html) (`ojdbc8.jar`)
66

7-
| :exclamation: IMPORTANT |
8-
| :-----------------------------|
7+
| :exclamation: IMPORTANT |
8+
|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
99
| We can not include the Oracle JDBC Driver due to licensing requirement. Please obtain the Oracle client jar following the link above or get a copy from your existing Oracle installation. |
1010

1111
<p>Execute the following commands (copy & paste) to download and setup Redis Connect Oracle Connector and demo scripts.
@@ -91,7 +91,7 @@ demo$ docker ps -a | grep oracle
9191
ae728fa6e001 virag/oracle-12.2.0.1-ee "/bin/sh -c 'exec $O" 5 hours ago Up 5 hours (healthy) 0.0.0.0:1521->1521/tcp oracle-12.2.0.1-ee-virag-cdc
9292
cb7c33534565 virag/oracle-19.3.0-ee "/bin/sh -c 'exec $O" 44 hours ago Up 44 hours (healthy) 0.0.0.0:1522->1521/tcp oracle-19.3.0-ee-virag-cdc
9393

94-
demo$ docker exec -it oracle-12.2.0.1-ee-virag-cdc bash -c "sqlplus sys/Redis123@ORCLPDB1 as sysdba"
94+
demo$ docker exec -it oracle-12.2.0.1-ee-$(hostname) bash -c "sqlplus sys/Redis123@ORCLPDB1 as sysdba"
9595

9696
SQL*Plus: Release 12.2.0.1.0 Production on Wed Nov 17 20:22:35 2021
9797

@@ -163,8 +163,8 @@ The above script will create a 1-node Redis Enterprise cluster in a docker conta
163163
164164
## Start Redis Connect Oracle Connector
165165
166-
| :point_up: | Don't forget to download and copy the Oracle client jar into the extlib folder i.e. `demo$ cp ojdbc8.jar extlib` |
167-
|---------------|:--------------------------|
166+
| :point_up: | Don't forget to download and copy the Oracle client jar into the extlib folder i.e. `demo$ cp ojdbc8.jar extlib` |
167+
|---------------|:-------------------------------------------------------------------------------------------------------------------|
168168
169169
<details><summary>Run Redis Connect Oracle Connector docker container to see all the options</summary>
170170
<p>

0 commit comments

Comments
 (0)