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
Now MyTopling inherited MyRocks's pack/unpack code, which is slow because it pack/unpack data dynamically, in table scan stage, pack/unpack consume , as show in this flame graph:
We can optimize it as below:
generate pack/unpack C++ code on create/alter table and create index
compile the code into shared lib
calling pack/unpack function in the shared lib
We expecting this will greatly improve pack/unpack performance.
The text was updated successfully, but these errors were encountered:
Now MyTopling inherited MyRocks's pack/unpack code, which is slow because it pack/unpack data dynamically, in table scan stage, pack/unpack consume , as show in this flame graph:
We can optimize it as below:
We expecting this will greatly improve pack/unpack performance.
The text was updated successfully, but these errors were encountered: