Add /usage endpoint per object type#42560
Draft
rvolosatovs wants to merge 10 commits intomoby:masterfrom
Draft
Conversation
cd7fdb1 to
de35fde
Compare
/df endpoint per object type/usage endpoint per object type
58a59ea to
ceaf471
Compare
2f53880 to
a2abcb3
Compare
a2abcb3 to
87503b2
Compare
87503b2 to
95fa207
Compare
2de0c0a to
4404a90
Compare
added 6 commits
August 3, 2021 15:39
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
added 4 commits
August 4, 2021 15:28
Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
- Simplify existing implementation - Introduce `rangeContainers` for greater flexibility Signed-off-by: Roman Volosatovs <[email protected]>
Signed-off-by: Roman Volosatovs <[email protected]>
4404a90 to
f2713e3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
- What I did
Add
/usageendpoint per object type- How I did it
pkg/compute.Singleton, which ensures computations are simultaneously performed by at most one goroutine per object type and the results are propagated to all goroutines simultaneously calling the method. (i.e. if A() is called 20 simultaneously, only do the actual work once and return the computed value to all 20 callers)- How to verify it
Call per-object methods,
Singletonimplementation is verified by unit test attached.- Description for the changelog
Per-object (container, image, volume, build) endpoints are now available
- TODO