Skip to content

Commit 94aefb4

Browse files
committed
review
1 parent e7f51ab commit 94aefb4

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

docs/integrations/data-ingestion/clickpipes/mongodb/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ For more examples, see our [Working with JSON guide](./quickstart).
5252

5353
### How do I handle `resume of change stream was not possible, as the resume point may no longer be in the oplog.` error? {#resume-point-may-no-longer-be-in-the-oplog-error}
5454

55-
This error typically occurs when the oplog is truncated and ClickPipe is unable to resume the change stream at the expected point. To resolve this issue, [resync the ClickPipe](./resync.md). To avoid this issue from recurring, we recommend increasing the oplog retention period. See instructions for [MongoDB Atlas](./source/atlas#enable-oplog-retention), [self-managed MongoDB](./source/generic#enable-oplog-retention), or [Amazon DocumentDB](./source/docdb#configure-change-stream-log-retention).
55+
This error typically occurs when the oplog is truncated and ClickPipe is unable to resume the change stream at the expected point. To resolve this issue, [resync the ClickPipe](./resync.md). To avoid this issue from recurring, we recommend increasing the oplog retention period. See instructions for [MongoDB Atlas](./source/atlas#enable-oplog-retention), [self-managed MongoDB](./source/generic#enable-oplog-retention), or [Amazon DocumentDB](./source/documentdb#configure-change-stream-log-retention).
5656

5757
### How is replication managed? {#how-is-replication-managed}
5858

@@ -68,7 +68,7 @@ Yes, the MongoDB ClickPipe supports both Replica Set and Sharded Cluster.
6868

6969
### Does MongoDB ClickPipe support Amazon DocumentDB? {#documentdb-support}
7070

71-
Yes, MongoDB ClickPipe supports Amazon DocumentDB 5.0. See [Amazon DocumentDB source setup guide](./source/docdb.md) for details.
71+
Yes, MongoDB ClickPipe supports Amazon DocumentDB 5.0. See [Amazon DocumentDB source setup guide](./source/documentdb.md) for details.
7272

7373
### Does MongoDB ClickPipe support PrivateLink? {#privatelink-support}
7474

docs/integrations/data-ingestion/clickpipes/mongodb/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To get started, you first need to ensure that your MongoDB database is correctly
3939

4040
2. [Generic MongoDB](./mongodb/source/generic)
4141

42-
3. [Amazon DocumentDB](./mongodb/source/docdb)
42+
3. [Amazon DocumentDB](./mongodb/source/documentdb)
4343

4444
Once your source MongoDB database is set up, you can continue creating your ClickPipe.
4545

docs/integrations/data-ingestion/clickpipes/mongodb/source/docdb.md renamed to docs/integrations/data-ingestion/clickpipes/mongodb/source/documentdb.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
sidebar_label: 'Amazon DocumentDB'
33
description: 'Step-by-step guide on how to set up Amazon DocumentDB as a source for ClickPipes'
4-
slug: /integrations/clickpipes/mongodb/source/docdb
4+
slug: /integrations/clickpipes/mongodb/source/documentdb
55
title: 'Amazon DocumentDB source setup guide'
66
doc_type: 'guide'
77
keywords: ['clickpipes', 'mongodb', 'documentdb', 'cdc', 'data ingestion', 'real-time sync']
@@ -21,7 +21,7 @@ ClickPipes supports DocumentDB version 5.0.
2121

2222
## Configure change stream log retention {#configure-change-stream-log-retention}
2323

24-
By default, Amazon DocumentDB has a 3-hour change stream log retention period, initial load may take much longer depending on existing data volume in your DocumentDB. We recommend setting the change stream log retention to 72 hours or longer to ensure that it is not truncated before the initial snapshot is completed.
24+
By default, Amazon DocumentDB has a 3-hour change stream log retention period, while initial load may take much longer depending on existing data volume in your DocumentDB. We recommend setting the change stream log retention to 72 hours or longer to ensure that it is not truncated before the initial snapshot is completed.
2525

2626
### Update change stream log retention via AWS Console {#update-change-stream-log-retention-via-aws-console}
2727

@@ -38,12 +38,14 @@ By default, Amazon DocumentDB has a 3-hour change stream log retention period, i
3838

3939
### Update change stream log retention via AWS CLI {#update-change-stream-log-retention-via-aws-cli}
4040

41-
To check the current change stream log retention period via AWS CLI:
41+
Alternatively, you can configure this via AWS CLI.
42+
43+
To check the current change stream log retention period:
4244
```shell
4345
aws docdb describe-db-cluster-parameters --db-cluster-parameter-group-name <PARAMETER_GROUP_NAME> --query "Parameters[?ParameterName=='change_stream_log_retention_duration'].{Name:ParameterName,Value:ParameterValue}"
4446
```
4547

46-
To set the change stream log retention period to 72 hours via AWS CLI:
48+
To set the change stream log retention period to 72 hours:
4749
```shell
4850
aws docdb modify-db-cluster-parameter-group --db-cluster-parameter-group-name <PARAMETER_GROUP_NAME> --parameters "ParameterName=change_stream_log_retention_duration,ParameterValue=259200,ApplyMethod=immediate"
4951
```

sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ const sidebars = {
696696
items: [
697697
"integrations/data-ingestion/clickpipes/mongodb/source/atlas",
698698
"integrations/data-ingestion/clickpipes/mongodb/source/generic",
699-
"integrations/data-ingestion/clickpipes/mongodb/source/docdb",
699+
"integrations/data-ingestion/clickpipes/mongodb/source/documentdb",
700700
],
701701
},
702702
],

0 commit comments

Comments
 (0)