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
3 changes: 3 additions & 0 deletions docs/modules/storage/pages/configuration/housekeeping.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ Available properties are:

|housekeeping-maximum-time-budget
|The upper limit of the housekeeping time budgets. Default is 0.5 seconds.

|gc-sweep-threshold
|Number of consecutive garbage-collection sweeps an entity must remain unmarked before it is deleted. A safety net against rare, transient GC concurrency races; higher values keep unreachable entities slightly longer. Valid range is 1 to 127, default is 3.
|===

== Enabling Adaptive Housekeeping for Write-Intensive Data Applications
Expand Down
4 changes: 4 additions & 0 deletions docs/modules/storage/pages/configuration/properties.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,10 @@ They can be found as constants in `EmbeddedStorageConfigurationPropertyNames`.
|The upper limit of the housekeeping time budgets. Default is 0.5 seconds.
|xref:#type-duration[Duration]

|gc-sweep-threshold
|Number of consecutive garbage-collection sweeps an entity must remain unmarked before it is deleted (a safety net against rare, transient GC concurrency races). Valid range is 1 to 127, default is 3.
|xref:#type-integer[Integer]

|entity-cache-threshold
|Abstract threshold value for the lifetime of entities in the cache. Default is `1000000000`.
|xref:#type-long[Long]
Expand Down
Loading
Loading