Or is pinning the only way to ensure no data loss after GC?
MFS provides ‘best effort’ pin:
Given some DAG A->B->C
- If all 3 nodes are stored locally and
Ais referenced by MFS, no nodes are going to be GC’ed - If only
AandCare stored locally,Cwill be GC’ed because we don’t know whatBreferences and we really don’t want have to fetch nodes when doing GC (because we may already be out of space)
1 Like