Invert the client-engine subscription model #38
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, Gabriel cognitive engines specify to the Gabriel server which inputs they want to subscribe to. This creates a static client-engine mapping that precludes the client from dynamically deciding which cognitive engines should process its input. This change makes it so that instead of cognitive engines subscribing to client inputs ("sources"), we instead invert the process and let the client specify which "engine groups" to which the inputs are sent.
This change will support our vision of making Gabriel more scalable with many clients. A client may not always need the results from each engine and may want to decide which "computational services" it cares about dynamically. This will reduce wasteful computation and improve the resource utilization of the Gabriel backend.
This change introduces the concept of an "engine group" instead of specifying individual engines to send inputs to, along the lines of the existing "source name." Clients could subscribe to, say, object detection, and get results from multiple object detection algorithms. If desired, each engine group could also have just one engine, equivalent to specifying the individual engines the client wants to subscribe to.