Skip to content

Commit 6b45988

Browse files
Merge pull request #1704 from ilianiliev-redis/RDSC-3787-removel-all-mentions-of-server-name
RDSC-3787 Remove all mentions of server name
2 parents 3e1eda5 + d22257b commit 6b45988

File tree

14 files changed

+185
-96
lines changed

14 files changed

+185
-96
lines changed

content/integrate/redis-data-integration/data-pipelines/data-denormalization.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ To configure normalization, you must first configure the parent entity to use JS
117117
```yaml
118118
# jobs/invoice.yaml
119119
source:
120-
server_name: chinook
121120
schema: public
122121
table: Invoice
123122
@@ -138,15 +137,13 @@ After you have configured the parent entity, you can then configure the child en
138137
```yaml
139138
# jobs/invoice_line.yaml
140139
source:
141-
server_name: chinook
142140
schema: public
143141
table: InvoiceLine
144142
output:
145143
- uses: redis.write
146144
with:
147145
nest: # cannot co-exist with other parameters such as 'key'
148146
parent:
149-
# server_name: chinook
150147
# schema: public
151148
table: Invoice
152149
nesting_key: InvoiceLineId # the unique key in the composite structure under which the child data will be stored
@@ -161,10 +158,8 @@ output:
161158
The job has a `with` section under `output` that includes the `nest` block.
162159
The job must include the following attributes in the `nest` block:
163160

164-
- `parent`: This specifies the RDI data stream for the parent entities. Typically, you only
165-
need to supply the parent `table` name, unless you are nesting children under a parent that comes from
166-
a different source database. If you do this then you must also specify `server_name` and
167-
`schema` attributes. Note that this attribute refers to a Redis *key* that will be added to the target
161+
- `parent`: This specifies the config of the parent entities. You only
162+
need to supply the parent `table` name. Note that this attribute refers to a Redis *key* that will be added to the target
168163
database, not to a table you can access from the pipeline. See [Using nesting](#using-nesting) below
169164
for the format of the key that is generated.
170165
- `nesting_key`: The unique key of each child entry in the JSON map that will be created under the path.

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-hash-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ If you don't supply an `expire` parameter, the keys will never expire.
2424

2525
```yaml
2626
source:
27-
server_name: chinook
2827
schema: public
2928
table: invoice
3029
output:
@@ -36,4 +35,4 @@ output:
3635
expression: concat(['invoice_id:', InvoiceId])
3736
language: jmespath
3837
expire: 100
39-
```
38+
```

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-json-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ In this case, the result will be Redis JSON documents with key names based on th
2929

3030
```yaml
3131
source:
32-
server_name: chinook
3332
schema: public
3433
table: invoice
3534
output:
@@ -42,4 +41,4 @@ output:
4241
language: jmespath
4342
on_update: replace
4443
expire: 100
45-
```
44+
```

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-set-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ When writing to a set, you must supply an extra argument, `member`, which specif
2323

2424
```yaml
2525
source:
26-
server_name: chinook
2726
schema: public
2827
table: invoice
2928
output:
@@ -37,4 +36,4 @@ output:
3736
args:
3837
member: InvoiceId
3938
expire: 100
40-
```
39+
```

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-set-key-name.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ To customize key names, use the `key` section within the `redis.write` output co
4747

4848
```yaml
4949
source:
50-
server_name: rdi
5150
db: inventory
5251
table: customers
5352
output:
@@ -64,7 +63,6 @@ When working with the full row format, you need to handle key generation differe
6463
6564
```yaml
6665
source:
67-
server_name: rdi
6866
db: inventory
6967
table: customers
7068
row_format: full

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-sorted-set-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ When writing to sorted sets, you must provide two additional arguments, `member`
2323

2424
```yaml
2525
source:
26-
server_name: chinook
2726
schema: public
2827
table: invoice
2928
output:
@@ -44,4 +43,4 @@ Since sorted sets in Redis are inherently sorted, you can easily get the top N i
4443
4544
```
4645
ZREVRANGE invoices:sorted 0 9 WITHSCORES
47-
```
46+
```

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-stream-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ In the example, only three original fields are passed in the message payload: `I
2929

3030
```yaml
3131
source:
32-
server_name: chinook
3332
schema: public
3433
table: invoice
3534
output:
@@ -45,4 +44,4 @@ output:
4544
- BillingCountry: country
4645
- Total
4746
expire: 100
48-
```
47+
```

content/integrate/redis-data-integration/data-pipelines/transform-examples/redis-string-example.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ If you don't supply an `expire` parameter, the keys will never expire.
3535

3636
```yaml
3737
source:
38-
server_name: chinook
3938
table: album
4039
row_format: full
4140
output:
@@ -49,4 +48,4 @@ output:
4948
args:
5049
value: title
5150
expire: 86400
52-
```
51+
```

0 commit comments

Comments
 (0)