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 APIs implicitly support a single instance per function, since the output_mapping field of PatchRequest maps each channel to a singleInstanceId.
This must be changed to enable horizontal scalability within an orchestration domain.
Required changes include:
Updating Orchestrator so that it supports > 1 function instance.
Change the PatchRequest message so that output_mapping is a map from the channel name to a vector of InstanceId.
Update the callback table in the function instances so that they support multiple outputs, with load balancing based on a weight (to be added to the PatchRequest, too).
The text was updated successfully, but these errors were encountered:
Currently, the APIs implicitly support a single instance per function, since the
output_mapping
field ofPatchRequest
maps each channel to a singleInstanceId
.This must be changed to enable horizontal scalability within an orchestration domain.
Required changes include:
Orchestrator
so that it supports > 1 function instance.PatchRequest
message so thatoutput_mapping
is a map from the channel name to a vector ofInstanceId
.PatchRequest
, too).The text was updated successfully, but these errors were encountered: