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
GRPC Message input size can be larger than 4MB, output size is unlimited, but homa message must smaller than 1MB. So grpc req msg will de divide into multi homa messages.
I found the code assumes only one homa message transfer is allowed, but I don't notice any code to prevent. Is it possible homa_client call multi homa_sendv on single steam?
The same as homa_listener, if listener receive request, it may have unlimited data to reply. But after calling homa_replyv(), homaRequestId will be assign be 0. So the next HomaSteam::flush won't call homa_reply(). Is there anything missing?
The text was updated successfully, but these errors were encountered:
GRPC Message input size can be larger than 4MB, output size is unlimited, but homa message must smaller than 1MB. So grpc req msg will de divide into multi homa messages.
I found the code assumes only one homa message transfer is allowed, but I don't notice any code to prevent. Is it possible homa_client call multi homa_sendv on single steam?
The same as homa_listener, if listener receive request, it may have unlimited data to reply. But after calling homa_replyv(), homaRequestId will be assign be 0. So the next HomaSteam::flush won't call homa_reply(). Is there anything missing?
The text was updated successfully, but these errors were encountered: