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
Most queries primarily focus on recent block data. In nearly all endpoints that return lists of transactions, blocks, events, etc., we use ORDER BY block DESC. Additionally, per-block tables such as blocks, transactions, and events have grown significantly.
The database would likely benefit greatly from table partitioning (e.g., partitioning by every 1 million blocks or similar). We should conduct tests and consider implementing this in the future to improve performance and optimize database load.
The text was updated successfully, but these errors were encountered:
Most queries primarily focus on recent block data. In nearly all endpoints that return lists of transactions, blocks, events, etc., we use
ORDER BY block DESC
. Additionally, per-block tables such asblocks
,transactions
, andevents
have grown significantly.The database would likely benefit greatly from table partitioning (e.g., partitioning by every 1 million blocks or similar). We should conduct tests and consider implementing this in the future to improve performance and optimize database load.
The text was updated successfully, but these errors were encountered: