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
{{ message }}
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
#31 already addressed the stats history submitted by the API growing too large. The issue was fixed with 13b237a which compresses the internally available stats history before submitting through the API. The way this is currently done does not scale well though resulting in an increasing timeout and node load when requesting neighbor stats (at least not causing issues in the GUI as before).
By introducing at least one of the following strategies, this timeout latency could be reduced significantly:
statistical compression: consider only a subset of the history acting as sample for the entire history (e.g. only consider every 5th round and multiply the stats of that round by 5)
stateful compression: introduce a state so that previously calculated compressions can be reused
The text was updated successfully, but these errors were encountered:
#31 already addressed the stats history submitted by the API growing too large. The issue was fixed with 13b237a which compresses the internally available stats history before submitting through the API. The way this is currently done does not scale well though resulting in an increasing timeout and node load when requesting neighbor stats (at least not causing issues in the GUI as before).
By introducing at least one of the following strategies, this timeout latency could be reduced significantly:
The text was updated successfully, but these errors were encountered: