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
Using the protobuf type MultiRequest it's possible to take any number of requests that would've been sent separately and combine them into a single RPC to save bandwidth (but sacrifice latency).
asynchbase has a queue of outgoing requests for every RS. If the queue is full or a timeout is hit, the queue will then be flushed into a MultiRequest that's sent to the RS. It then needs to parse the results back into their individual components and reply to each request appropriately.
The text was updated successfully, but these errors were encountered:
hexuotzo
pushed a commit
to hexuotzo/PyBase
that referenced
this issue
Jan 5, 2021
Using the protobuf type MultiRequest it's possible to take any number of requests that would've been sent separately and combine them into a single RPC to save bandwidth (but sacrifice latency).
asynchbase has a queue of outgoing requests for every RS. If the queue is full or a timeout is hit, the queue will then be flushed into a MultiRequest that's sent to the RS. It then needs to parse the results back into their individual components and reply to each request appropriately.
The text was updated successfully, but these errors were encountered: