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
Currently the creation of a flat buffer takes a non trivial amount of time, slowing down asynchronous operations. It may be beneficial to move the burden for creating flat buffers onto one of the worker threads.
Have sender thread responsible for creating flat buffers
Create a fourth thread that solely creates flat buffers, and then places them in send queue (seems like a bad idea)
@jcarreira let me know what you think. Additionally, were all flat buffers taking a significant amount of time to create, or just the flat buffers for write operations?
The text was updated successfully, but these errors were encountered:
Currently the creation of a flat buffer takes a non trivial amount of time, slowing down asynchronous operations. It may be beneficial to move the burden for creating flat buffers onto one of the worker threads.
A few approaches:
@jcarreira let me know what you think. Additionally, were all flat buffers taking a significant amount of time to create, or just the flat buffers for write operations?
The text was updated successfully, but these errors were encountered: