How major GC handles orphan segments and blocks? #9149
-
As mentioned if deletion operation for blocks and segments failed, they will be collected by major GC. IIUC major GC refers to do_gc. But I cannot figure out how segments and blocks that is not tracked by any snapshot files can be deleted by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
the "major GC" is still under development.
for the first iteration, the "major GC' will be implemented in a straightforward way, listing all the data files we are interested in, if they are not referenced by the current snapshot (or the GC root specified), and out of the retention period, they should be collected. |
Beta Was this translation helpful? Give feedback.
the "major GC" is still under development.
for the first iteration, the "major GC' will be implemented in a straightforward way, listing all the data files we are interested in, if they are not referenced by the current snapshot (or the GC root specified), and out of the retention period, they should be collected.