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
Similar to #3246 (with #3224) I realized that TransactionProcessor is slower than it should be:
Compared to OperationProcessor (yellow line), which inserts much more rows, it can be 3x slower. We should debug it and understand where is the bottleneck.
The text was updated successfully, but these errors were encountered:
The slowness is connected to marshaling and then encoding to base64 of some transaction related XDR objects. Nothing can be done here except making XDR encoder faster which is already tracked in #2689.
Similar to #3246 (with #3224) I realized that
TransactionProcessor
is slower than it should be:Compared to
OperationProcessor
(yellow line), which inserts much more rows, it can be 3x slower. We should debug it and understand where is the bottleneck.The text was updated successfully, but these errors were encountered: