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, our APIs mostly allow full updates only in the sense that, if certain properties are mutable, then the update request updates all of them. One example is the UpdateProcessorRequest:
This implies that, if a client wants to update just the workers (for example), it first needs to first fetch the existing settings, set the new workers count, and then send the update request. We have similar examples in other APIs (pipelines, connectors).
To make the API more convenient to use, it would be good to allow partial updates that allow only certain parts of a configuration to be updated.
The text was updated successfully, but these errors were encountered:
Feature description
Currently, our APIs mostly allow full updates only in the sense that, if certain properties are mutable, then the update request updates all of them. One example is the UpdateProcessorRequest:
In the processor service, the whole config is then replaced:
Link
This implies that, if a client wants to update just the workers (for example), it first needs to first fetch the existing settings, set the new workers count, and then send the update request. We have similar examples in other APIs (pipelines, connectors).
To make the API more convenient to use, it would be good to allow partial updates that allow only certain parts of a configuration to be updated.
The text was updated successfully, but these errors were encountered: