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
In most cases, secondary index values are empty, thus rocks_iter->value() is not needed in such cases.
We realized an SST with lazy load of value, this is a big improvement for large values.
When value is small(even empty), lazy load is less useful, but the calling chain is still needed, in our optimized rocksdb branch, in iter scan, it is about 70~90ns per kv-pair, in which the iter->value() is about 11ns for empty value.
If secondary index value emptiness can be identified by datadic, the iter->value() can be omitted, this is a reasonable optimization.
The text was updated successfully, but these errors were encountered:
In most cases, secondary index values are empty, thus
rocks_iter->value()
is not needed in such cases.We realized an SST with lazy load of value, this is a big improvement for large values.
When value is small(even empty), lazy load is less useful, but the calling chain is still needed, in our optimized rocksdb branch, in iter scan, it is about 70~90ns per kv-pair, in which the
iter->value()
is about 11ns for empty value.If secondary index value emptiness can be identified by datadic, the
iter->value()
can be omitted, this is a reasonable optimization.The text was updated successfully, but these errors were encountered: