Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/deployments/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ Limit the amount of time the parser will wait to receive the complete HTTP heade

The maximum allowed size of HTTP headers in bytes.

`requestQueueLimit` - _Type_: integer; _Default_: 20000

The maximum estimated request queue time, in milliseconds. When the queue is above this limit, requests will be rejected with a 503.

`keepAliveTimeout` - _Type_: integer; _Default_: 30,000 milliseconds (30 seconds)

Sets the number of milliseconds of inactivity the server needs to wait for additional incoming data after it has finished processing the last response.
Expand Down
10 changes: 10 additions & 0 deletions release-notes/v4-tucker/4.5.26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: 4.5.26
---

### HarperDB 4.5.26

8/25/2025

- Applies throttling to all non-safe requests (POST, PUT, DELETE, etc.)
- Make the request queue limit configurable
4 changes: 4 additions & 0 deletions versioned_docs/version-4.5/deployments/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ Limit the amount of time the parser will wait to receive the complete HTTP heade

The maximum allowed size of HTTP headers in bytes.

`requestQueueLimit` - _Type_: integer; _Default_: 20000

The maximum estimated request queue time, in milliseconds. When the queue is above this limit, requests will be rejected with a 503.

`keepAliveTimeout` - _Type_: integer; _Default_: 30,000 milliseconds (30 seconds)

Sets the number of milliseconds of inactivity the server needs to wait for additional incoming data after it has finished processing the last response.
Expand Down
4 changes: 4 additions & 0 deletions versioned_docs/version-4.6/deployments/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ Limit the amount of time the parser will wait to receive the complete HTTP heade

The maximum allowed size of HTTP headers in bytes.

`requestQueueLimit` - _Type_: integer; _Default_: 20000

The maximum estimated request queue time, in milliseconds. When the queue is above this limit, requests will be rejected with a 503.

`keepAliveTimeout` - _Type_: integer; _Default_: 30,000 milliseconds (30 seconds)

Sets the number of milliseconds of inactivity the server needs to wait for additional incoming data after it has finished processing the last response.
Expand Down