You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/audit-stores/community/couchbase-audit-store.md
+55-89Lines changed: 55 additions & 89 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,123 +8,89 @@ import TabItem from '@theme/TabItem';
8
8
9
9
# Couchbase Audit Store
10
10
11
-
This page explains how to configure **Couchbase** as Flamingock's audit store.
12
-
The audit store is where Flamingock records execution history and ensures safe coordination across distributed deployments.
11
+
The Couchbase audit store (`CouchbaseSyncAuditStore`) enables Flamingock to record execution history and ensure safe coordination across distributed deployments using Couchbase as the storage backend.
13
12
14
13
> For a conceptual explanation of the audit store vs target systems, see [Audit store vs target system](../../overview/audit-store-vs-target-system.md).
15
14
15
+
## Version Compatibility
16
16
17
-
## Minimum setup
17
+
| Component | Version Requirement |
18
+
|-----------|-------------------|
19
+
| Couchbase Java Client | 3.6.0+ |
18
20
19
-
To use Couchbase as your audit store you need to provide:
20
-
- A **Cluster**
21
-
- A **Bucket**
21
+
Couchbase Java Client 3.6.0+ is required and must be included in your project dependencies.
22
22
23
-
That's all. Flamingock will take care of collections, indexes, and scope defaults.
23
+
## Installation
24
24
25
-
Example:
25
+
Add the Couchbase Java Client dependency to your project:
Copy file name to clipboardExpand all lines: docs/audit-stores/community/dynamodb-audit-store.md
+53-92Lines changed: 53 additions & 92 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,126 +8,87 @@ import TabItem from '@theme/TabItem';
8
8
9
9
# DynamoDB Audit Store
10
10
11
-
This page explains how to configure **Amazon DynamoDB** as Flamingock's audit store.
12
-
The audit store is where Flamingock records execution history and ensures safe coordination across distributed deployments.
11
+
The DynamoDB audit store (`DynamoSyncAuditStore`) enables Flamingock to record execution history and ensure safe coordination across distributed deployments using Amazon DynamoDB as the storage backend.
13
12
14
13
> For a conceptual explanation of the audit store vs target systems, see [Audit store vs target system](../../overview/audit-store-vs-target-system.md).
15
14
15
+
## Version Compatibility
16
16
17
-
## Minimum setup
17
+
| Component | Version Requirement |
18
+
|-----------|-------------------|
19
+
| AWS SDK DynamoDB Enhanced | 2.12.0+ |
18
20
19
-
To use DynamoDB as your audit store you need to provide:
20
-
- A **DynamoDbClient**
21
+
AWS SDK DynamoDB Enhanced 2.12.0+ is required and must be included in your project dependencies.
21
22
22
-
That's all. Flamingock will take care of tables, indexes, and capacity defaults.
23
+
## Installation
23
24
24
-
Example:
25
+
Add the AWS SDK DynamoDB Enhanced dependency to your project:
0 commit comments