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
inplace_populate_sk scans tables, if a table is too large, this consumes too much time.
The table can be divided into multiple parts, one thread per-part, to speed up the scaning. Now RocksDB has ApproximateKeyAnchors, it can be used in the partition phase to sampling keys for partition bounds.
I'm not familiar with MyRocks to implement this feature.
inplace_populate_skscans tables, if a table is too large, this consumes too much time.The table can be divided into multiple parts, one thread per-part, to speed up the scaning. Now RocksDB has
ApproximateKeyAnchors, it can be used in the partition phase to sampling keys for partition bounds.I'm not familiar with MyRocks to implement this feature.