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
Sometimes it doesn't make sense to store data indefinitely so we need to implement a way to do data retention.
Internally Pyroscope uses segment trees to store the data.
See our Storage Design Doc for more context.
We need to add a new retention threshold parameter that would control how much data (in days) can be stored in pyroscope. Then we would run some sort of a Cleanup method every once in a while to delete old data:
TODO
Implement a method that would delete data before a certain time on segment tree and return a list of trees that need also need to be deleted.
Feature Description
Sometimes it doesn't make sense to store data indefinitely so we need to implement a way to do data retention.
Internally Pyroscope uses segment trees to store the data.
See our Storage Design Doc for more context.
We need to add a new retention threshold parameter that would control how much data (in days) can be stored in pyroscope. Then we would run some sort of a
Cleanup
method every once in a while to delete old data:TODO
The text was updated successfully, but these errors were encountered: