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
When query account state frequently, many actorMessages stuck in mailbox of celldb Actor.
All messages blocked in the mailbox can only be processed sequentially by one thread, even if other threads are in an idle state,
From this log, we can see that there are over 600 messages blocked in the CellDB actor, which are being processed one by one by thread 3. Even though other threads are idle, the load of the load_cell cannot be balanced.
Is it possible to add more celldb Actor in RootDb, which can balance the query load.
The text was updated successfully, but these errors were encountered:
When query account state frequently, many actorMessages stuck in mailbox of celldb Actor.
All messages blocked in the mailbox can only be processed sequentially by one thread, even if other threads are in an idle state,
Some debug log as below
From this log, we can see that there are over 600 messages blocked in the CellDB actor, which are being processed one by one by thread 3. Even though other threads are idle, the load of the load_cell cannot be balanced.
Is it possible to add more celldb Actor in RootDb, which can balance the query load.
The text was updated successfully, but these errors were encountered: