From 99449063a65eb93e4c0ba32a07bde8c891efdc76 Mon Sep 17 00:00:00 2001 From: Kris Zyp Date: Fri, 24 Oct 2025 11:56:15 -0600 Subject: [PATCH 1/3] Add configuration for heapSnapshotNearLimit --- versioned_docs/version-4.6/deployments/configuration.md | 9 +++++++++ versioned_docs/version-4.7/deployments/configuration.md | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/versioned_docs/version-4.6/deployments/configuration.md b/versioned_docs/version-4.6/deployments/configuration.md index 465a68dc..13efeb79 100644 --- a/versioned_docs/version-4.6/deployments/configuration.md +++ b/versioned_docs/version-4.6/deployments/configuration.md @@ -202,6 +202,15 @@ threads: This specifies the heap memory limit for each thread, in megabytes. The default heap limit is a heuristic based on available memory and thread count. +`heapSnapshotNearLimit` - _Type_: boolean; + +```yaml +threads: + heapSnapshotNearLimit: true +``` + +This specifies that heap snapshot should be taken when the heap limit is near the limit. + --- ### `replication` diff --git a/versioned_docs/version-4.7/deployments/configuration.md b/versioned_docs/version-4.7/deployments/configuration.md index 57c98a3a..6b07b3f6 100644 --- a/versioned_docs/version-4.7/deployments/configuration.md +++ b/versioned_docs/version-4.7/deployments/configuration.md @@ -275,6 +275,15 @@ threads: This specifies the heap memory limit for each thread, in megabytes. The default heap limit is a heuristic based on available memory and thread count. +`heapSnapshotNearLimit` - _Type_: boolean; + +```yaml +threads: + heapSnapshotNearLimit: true +``` + +This specifies that heap snapshot should be taken when the heap limit is near the limit. + --- ### `replication` From 6e3a36904297bc96129e4ab8ad57ddd6138a81cc Mon Sep 17 00:00:00 2001 From: Kris Zyp Date: Wed, 12 Nov 2025 22:04:09 -0700 Subject: [PATCH 2/3] Update versioned_docs/version-4.6/deployments/configuration.md Co-authored-by: Nathan Heskew --- versioned_docs/version-4.6/deployments/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-4.6/deployments/configuration.md b/versioned_docs/version-4.6/deployments/configuration.md index 13efeb79..b5d4c328 100644 --- a/versioned_docs/version-4.6/deployments/configuration.md +++ b/versioned_docs/version-4.6/deployments/configuration.md @@ -209,7 +209,7 @@ threads: heapSnapshotNearLimit: true ``` -This specifies that heap snapshot should be taken when the heap limit is near the limit. +This specifies that a heap snapshot should be taken when the heap limit is near the limit. --- From 13b141829634f745c5db2b733025cd5f80166b26 Mon Sep 17 00:00:00 2001 From: Kris Zyp Date: Wed, 12 Nov 2025 22:04:14 -0700 Subject: [PATCH 3/3] Update versioned_docs/version-4.7/deployments/configuration.md Co-authored-by: Nathan Heskew --- versioned_docs/version-4.7/deployments/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versioned_docs/version-4.7/deployments/configuration.md b/versioned_docs/version-4.7/deployments/configuration.md index 6b07b3f6..0f215d5c 100644 --- a/versioned_docs/version-4.7/deployments/configuration.md +++ b/versioned_docs/version-4.7/deployments/configuration.md @@ -282,7 +282,7 @@ threads: heapSnapshotNearLimit: true ``` -This specifies that heap snapshot should be taken when the heap limit is near the limit. +This specifies that a heap snapshot should be taken when the heap limit is near the limit. ---