Performance: Do not schedule smartstate dispatch unless it is needed #15067
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.
The smart-state job
dispatch
is not something that is needed every other moment. It is usually initiated manually or scheduled by some policy. Most of the time (for most appliances) JobProxyDispatcher#dispatch will result in no-op. We can tell (whether it is needed) by a single query that's really quick. The query uses index on jobs table and checks just existence (ends quickly on success).Note that touching queue is expensive (observation of heavily loaded deployments) compared to touching jobs table.
Real time Savings depend on server load and number of zones.
People who enable smart-state, but use it only rarely will benefit greatly. The users who use smart-state heavily wouldn't be burdened that much as the smart-state itself consumes heck a lot of resources.