Skip to content

Commit 1788981

Browse files
committed
DOC-5416 Added lag-aware availability API details to RS Gilboa release notes
1 parent a794841 commit 1788981

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

content/operate/rs/release-notes/rs-8-0-releases/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories:
66
- operate
77
- rs
88
compatibleOSSVersion: Redis 8.0
9-
description: Redis Open Source 8.0 and 8.2 features. Lag awareness API. Metrics stream engine GA.
9+
description: Redis Open Source 8.0 and 8.2 features. Lag-aware availability API. Metrics stream engine GA.
1010
hideListLinks: true
1111
linkTitle: 8.0.x releases
1212
toc: 'true'
@@ -21,7 +21,7 @@ This version offers:
2121

2222
- Redis Open Source 8.0 and 8.2 features
2323

24-
- Lag awareness API
24+
- Lag-aware availability API
2525

2626
- Metrics stream engine GA
2727

content/operate/rs/release-notes/rs-8-0-releases/rs-8-0-tba.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ categories:
66
- operate
77
- rs
88
compatibleOSSVersion: Redis 7.4.0
9-
description: Redis Open Source 8.0 and 8.2 features. Lag awareness API. Metrics stream engine GA.
9+
description: Redis Open Source 8.0 and 8.2 features. Lag-aware availability API. Metrics stream engine GA.
1010
linkTitle: 8.0.0-tba (September 2025)
1111
weight: 90
1212
---
@@ -19,7 +19,7 @@ This version offers:
1919

2020
- Redis Open Source 8.0 and 8.2 features
2121

22-
- Lag awareness API
22+
- Lag-aware availability API
2323

2424
- Metrics stream engine GA
2525

@@ -63,9 +63,23 @@ Redis Open Source 8.0 and 8.2 features are now available when you [create]({{<re
6363

6464
- See [What's new in Redis 8.2]({{<relref "/develop/whats-new/8-2">}}) and [Redis Open Source 8.2 release notes]({{<relref "/operate/oss_and_stack/stack-with-enterprise/release-notes/redisce/redisos-8.2-release-notes">}}) for more details.
6565

66-
#### Lag awareness API
66+
#### Lag-aware availability API
6767

68-
TBA
68+
The [database availability API]({{<relref "/operate/rs/references/rest-api/requests/bdbs/availability">}}) now supports lag-aware availability checks that consider replication lag tolerance.
69+
70+
You can reduce the risk of data inconsistencies during disaster recovery by incorporating lag-aware availability checks into your disaster recovery solution and ensuring failover-failback flows only occur when databases are accessible and sufficiently synchronized.
71+
72+
The lag tolerance threshold is 100 milliseconds by default. Depending on factors such as workload, network conditions, and throughput, you might want to adjust the lag tolerance threshold using one of the following methods:
73+
74+
- Change the default threshold for the entire cluster by setting `availability_lag_tolerance_ms` with an [update cluster]({{<relref "/operate/rs/references/rest-api/requests/cluster#put-cluster">}}) request.
75+
76+
- Override the default threshold by adding the `availability_lag_tolerance_ms` query parameter to specific lag-aware [availability checks]({{<relref "/operate/rs/references/rest-api/requests/bdbs/availability">}}). For example:
77+
78+
```sh
79+
GET /v1/bdbs/<database_id>/availability?extend_check=lag&availability_lag_tolerance_ms=100
80+
```
81+
82+
For more details, see [Check database availability for monitoring and load balancers]({{<relref "/operate/rs/monitoring/db-availability">}}).
6983

7084
#### Metrics stream engine GA
7185

0 commit comments

Comments
 (0)