You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The db keeps a lot of old records not related to the currest state. While keeping the historic evolution of values can be useful for explorers, it also takes a lot of disk space. We should have an option to periodically prune old values similar to how we prune spent outputs. These values can include:
old stake distribution
old rewards
old drep distribution
...
The insert options can be extended with a new field:
prune: {
epoch_stake:: Integer
rewards:: Integer
drep_distr: Integer
}
Where each Integer shows many many epochs in the past should be maintained (default would be null).
The text was updated successfully, but these errors were encountered:
The db keeps a lot of old records not related to the currest state. While keeping the historic evolution of values can be useful for explorers, it also takes a lot of disk space. We should have an option to periodically prune old values similar to how we prune spent outputs. These values can include:
...
The insert options can be extended with a new field:
prune: {
epoch_stake:: Integer
rewards:: Integer
drep_distr: Integer
}
Where each Integer shows many many epochs in the past should be maintained (default would be null).
The text was updated successfully, but these errors were encountered: