Skip to content

Commit 268b6c1

Browse files
committed
Oracle demo updates with 19c
1 parent 006330b commit 268b6c1

File tree

12 files changed

+814
-256
lines changed

12 files changed

+814
-256
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- [Redis Connect Overview](#technical-overview)
66
* [Using redis-connect-cassandra](#connectors/cassandra#redis-connect-cassandra)
77
* [Using redis-connect-db2](connectors/db2#redis-connect-db2)
8-
* [Using redis-connect-gemfire](#connectors/gemfire#redis-connect-gemfire)
8+
* [Using redis-connect-gemfire](connectors/gemfire#redis-connect-gemfire)
99
* [Using redis-connect-mysql](connectors/mysql#redis-connect-mysql)
1010
* [Using redis-connect-oracle](connectors/oracle#redis-connect-oracle)
1111
* [Using redis-connect-postgres](connectors/postgres#redis-connect-postgres)

connectors/cassandra/README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<h1>rediscdc-cassandra-connector</h1>
1+
<h1>redis-connect-cassandra</h1>
22

3-
rediscdc-cassandra-connector is a connector framework for capturing row level changes (INSERT, UPDATE and DELETE) from Cassandra nodes (source) and writing them to a Redis Enterprise database (Target).
3+
redis-connect-cassandra is a connector framework for capturing row level changes (INSERT, UPDATE and DELETE) from Cassandra nodes (source) and writing them to a Redis Enterprise database (Target).
44
<p>
5-
The first time the connector connects to a Cassandra node, it performs a snapshot of all CDC-enabled tables in all keyspaces. The connector will also read the changes that are written to Cassandra commit logs and generates corresponding insert, update, and delete events. All events for each table are recorded in a separate Redis data structure, where they can be consumed easily by applications and services.
5+
The first time the connector connects to a Cassandra node, it performs a snapshot of all CDC-enabled tables in all key spaces. The connector will also read the changes that are written to Cassandra commit logs and generates corresponding insert, update, and delete events. All events for each table are recorded in a separate Redis data structure, where they can be consumed easily by applications and services.
66

77
## Overview
88

@@ -16,8 +16,8 @@ As the connector reads commit logs and produces events, it records each commit l
1616

1717
## Architecture
1818

19-
![RedisCDC high-level Architecture](/docs/images/RedisCDC_Architecture.png)
20-
<b>RedisCDC high-level Architecture Diagram</b>
19+
![Redis Connect high-level Architecture](/docs/images/RedisConnect_Arch.png)
20+
<b>Redis Connect high-level Architecture Diagram</b>
2121

2222
RedisCDC has a cloud-native shared-nothing architecture which allows any cluster node (RedisCDC Instance) to perform either/both Job Management and Job Execution functions. It is implemented and compiled in JAVA, which deploys on a platform-independent JVM, allowing RedisCDC instances to be agnostic of the underlying operating system (Linux, Windows, Docker Containers, etc.) Its lightweight design and minimal use of infrastructure-resources avoids complex dependencies on other distributed platforms such as Kafka and ZooKeeper. In fact, most uses of RedisCDC will only require the deployment of a few JVMs to handle Job Execution and Job Management with high-availability.
2323
<p>
@@ -198,8 +198,6 @@ job:
198198
variables:
199199
source: "expiry:cdc_test.customer"
200200
keyPrefix: "customer:"
201-
source: "expiry:cdc_test.customer1"
202-
keyPrefix: "customer1:"
203201
```
204202
205203
</p>

connectors/gemfire/README.md

Lines changed: 67 additions & 63 deletions
Large diffs are not rendered by default.

connectors/mssql/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ Before using the SQL Server connector (redis-connect-sqlserver) to capture the c
6969

7070
**NOTE**
7171

72-
The current [release](https://github.com/RedisLabs-Field-Engineering/redis-connect-dist/releases) has been built with JDK 11 and tested with JRE 11 and above. Please have JRE 11+ installed prior to running this connector.
72+
The current [release](https://github.com/redis-field-engineering/redis-connect-dist/releases) has been built with JDK 11 and tested with JRE 11 and above. Please have JRE 11+ installed prior to running this connector.
7373

7474
---
7575

76-
Download the [latest release](https://github.com/RedisLabs-Field-Engineering/redis-connect-dist/releases) and untar redis-connect-sqlserver-`<version>.<build>`.tar.gz archive.
76+
Download the [latest release](https://github.com/redis-field-engineering/redis-connect-dist/releases) and untar redis-connect-sqlserver-`<version>.<build>`.tar.gz archive.
7777

7878
All the contents would be extracted under redis-connect-sqlserver
7979

8080
Contents of redis-connect-sqlserver
8181
<br>• bin – contains script files
8282
<br>• lib – contains java libraries
8383
<br>• config – contains sample config files for cdc and initial loader jobs
84-
<br>• extlib – directory to copy [custom stage](https://github.com/RedisLabs-Field-Engineering/redis-connect-custom-stage-demo) implementation jar(s)
84+
<br>• extlib – directory to copy [custom stage](https://github.com/redis-field-engineering/redis-connect-custom-stage-demo) implementation jar(s)
8585

8686
## Redis Connect Setup and Job Management Configurations
8787

@@ -194,7 +194,7 @@ Copy the _sample_ directory and it's contents i.e. _yml_ files, _mappers_ and te
194194
<details><summary>Configure env.yml</summary>
195195
<p>
196196

197-
#### Environment configuration file with source and target connection informations.
197+
#### Environment configuration file with source and target connection information.
198198

199199
Redis URI syntax is described [here](https://github.com/lettuce-io/lettuce-core/wiki/Redis-URI-and-connection-details#uri-syntax).
200200

0 commit comments

Comments
 (0)