Skip to content

Commit e69b09d

Browse files
authored
Merge pull request #265 from HarperDB/release_4.5.23
Release notes and updates for 4.5.23
2 parents 6ea5556 + 1f70258 commit e69b09d

File tree

9 files changed

+63
-8
lines changed

9 files changed

+63
-8
lines changed

docs/deployments/configuration.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ An array of serial numbers of revoked certificates. If a connection is attempted
275275

276276
```yaml
277277
replication:
278-
copyTablesToCatchUp: true
279278
hostname: server-one
280279
routes:
281280
- wss://server-two:9925 # URL based route
@@ -299,9 +298,13 @@ The port to use for secure replication connections.
299298

300299
When true, Harper will verify certificates against the Node.js bundled CA store. The bundled CA store is a snapshot of the Mozilla CA store that is fixed at release time.
301300

302-
`copyTablesToCatchUp` - _Type_: boolean; _Default_: false
301+
`blobTimeout` - _Type_: number; _Default_: 120000
303302

304-
Replication will first attempt to catch up using the audit log. If unsuccessful, it will perform a full table copy. When set to `false`, replication will only use the audit log.
303+
Amount of time to wait for a blob to be transferred before timing out, measured in milliseconds.
304+
305+
`failOver` - _Type_: boolean; _Default_: true
306+
307+
When true, Harper will attempt to fail-over to subscribing to a different node if the current node is unreachable, to reach consistency.
305308

306309
`shard` - _Type_: integer;
307310

docs/technical-details/release-notes/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ title: Release Notes
2424

2525
[4.6.0 Tucker](release-notes/v4-tucker/4.6.0)
2626

27+
[4.5.23 Tucker](release-notes/v4-tucker/4.5.23)
28+
2729
[4.5.22 Tucker](release-notes/v4-tucker/4.5.22)
2830

2931
[4.5.21 Tucker](release-notes/v4-tucker/4.5.21)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: 4.5.23
3+
sidebar_position: 59476
4+
---
5+
6+
### HarperDB 4.5.23
7+
8+
8/18/2025
9+
10+
- Fix issue with connection registration that was causing repeated connections to be established
11+
- Increase timeout for retrieval connections
12+
- Add support for disabling failover connections
13+
- Add additional logging for blob errors in replication

versioned_docs/version-4.5/deployments/configuration.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ An array of serial numbers of revoked certificates. If a connection is attempted
249249

250250
```yaml
251251
replication:
252-
copyTablesToCatchUp: true
253252
hostname: server-one
254253
routes:
255254
- wss://server-two:9925 # URL based route
@@ -273,9 +272,13 @@ The port to use for secure replication connections.
273272

274273
When true, Harper will verify certificates against the Node.js bundled CA store. The bundled CA store is a snapshot of the Mozilla CA store that is fixed at release time.
275274

276-
`copyTablesToCatchUp` - _Type_: boolean; _Default_: false
275+
`blobTimeout` - _Type_: number; _Default_: 120000
277276

278-
Replication will first attempt to catch up using the audit log. If unsuccessful, it will perform a full table copy. When set to `false`, replication will only use the audit log.
277+
Amount of time to wait for a blob to be transferred before timing out, measured in milliseconds.
278+
279+
`failOver` - _Type_: boolean; _Default_: true
280+
281+
When true, Harper will attempt to fail-over to subscribing to a different node if the current node is unreachable, to reach consistency.
279282

280283
`shard` - _Type_: integer;
281284

versioned_docs/version-4.5/technical-details/release-notes/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ title: Release Notes
88

99
[Meet Tucker](release-notes/v4-tucker/) Our 4th Release Pup
1010

11+
[4.5.23 Tucker](release-notes/v4-tucker/4.5.23)
12+
1113
[4.5.22 Tucker](release-notes/v4-tucker/4.5.22)
1214

1315
[4.5.21 Tucker](release-notes/v4-tucker/4.5.21)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: 4.5.23
3+
sidebar_position: 59476
4+
---
5+
6+
### HarperDB 4.5.23
7+
8+
8/18/2025
9+
10+
- Fix issue with connection registration that was causing repeated connections to be established
11+
- Increase timeout for retrieval connections
12+
- Add support for disabling failover connections
13+
- Add additional logging for blob errors in replication

versioned_docs/version-4.6/deployments/configuration.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,9 +273,13 @@ The port to use for secure replication connections.
273273

274274
When true, Harper will verify certificates against the Node.js bundled CA store. The bundled CA store is a snapshot of the Mozilla CA store that is fixed at release time.
275275

276-
`copyTablesToCatchUp` - _Type_: boolean; _Default_: true
276+
`blobTimeout` - _Type_: number; _Default_: 120000
277277

278-
Replication will first attempt to catch up using the audit log. If unsuccessful, it will perform a full table copy. When set to `false`, replication will only use the audit log.
278+
Amount of time to wait for a blob to be transferred before timing out, measured in milliseconds.
279+
280+
`failOver` - _Type_: boolean; _Default_: true
281+
282+
When true, Harper will attempt to fail-over to subscribing to a different node if the current node is unreachable, to reach consistency.
279283

280284
`shard` - _Type_: integer;
281285

versioned_docs/version-4.6/technical-details/release-notes/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ title: Release Notes
2222

2323
[4.6.0 Tucker](release-notes/v4-tucker/4.6.0)
2424

25+
[4.5.23 Tucker](release-notes/v4-tucker/4.5.23)
26+
2527
[4.5.22 Tucker](release-notes/v4-tucker/4.5.22)
2628

2729
[4.5.21 Tucker](release-notes/v4-tucker/4.5.21)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: 4.5.23
3+
sidebar_position: 59476
4+
---
5+
6+
### HarperDB 4.5.23
7+
8+
8/18/2025
9+
10+
- Fix issue with connection registration that was causing repeated connections to be established
11+
- Increase timeout for retrieval connections
12+
- Add support for disabling failover connections
13+
- Add additional logging for blob errors in replication

0 commit comments

Comments
 (0)