Type Alias FragmentBackfillOrder

Source
pub type FragmentBackfillOrder = HashMap<FragmentId, Vec<FragmentId>>;
Expand description

Adjacency list (G) of backfill orders. G[10] -> [1, 2, 11] means for the backfill node in fragment 10 should be backfilled before the backfill nodes in fragment 1, 2 and 11.

Aliased Typeยง

struct FragmentBackfillOrder { /* private fields */ }