Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit a041fc9

Browse files
authored
Fullpruning config values
1 parent b214b48 commit a041fc9

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

setup-wizard.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,32 @@ fields:
164164
- "false"
165165
default: "true"
166166
required: true
167+
168+
- id: PruningTriggerType
169+
target:
170+
type: environment
171+
name: NETHERMIND_PRUNINGCONFIG_FULLPRUNINGTRIGGER
172+
service: nethermind
173+
title: Full Pruning Trigger Type
174+
description: >-
175+
The full pruning trigger which accepts config values like:
176+
Manual: Triggered manually with JsonRPC call. (default)
177+
StateDbSize: Trigger when the state DB size is above the threshold.
178+
VolumeFreeSpace: Trigger when the free disk space where the state DB is stored is below the threshold.
179+
enum:
180+
- "Manual"
181+
- "StateDbSize"
182+
- "VolumeFreeSpace"
183+
default: "Manual"
184+
required: true
185+
186+
- id: PruningThresholdMb
187+
target:
188+
type: environment
189+
name: NETHERMIND_PRUNINGCONFIG_FULLPRUNINGTHRESHOLDMB
190+
service: nethermind
191+
title: Full Pruning Threshold in Mb
192+
description: >-
193+
The threshold, in MB, to trigger full pruning. Depends on Mode and FullPruningTrigger. Defaults to 256000.
194+
default: "256000"
195+
required: true

0 commit comments

Comments
 (0)