-
Notifications
You must be signed in to change notification settings - Fork 254
refactor capi stage and targz target #4159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
25de987
refactor capi stage and targz target
dtrawins fb9383c
Merge branch 'main' into dockerfile-refactor
atobiszei 8f1bb0f
minor change for trace logs
dtrawins fc45698
change
dtrawins a90e05f
Merge branch 'main' into dockerfile-refactor
dtrawins 7f9e255
speedup bulding with WA for Konflux
dtrawins fcaafd1
Merge remote-tracking branch 'origin/main' into dockerfile-refactor
dtrawins b9a9349
Merge branch 'dockerfile-refactor' of https://github.com/openvinotool…
dtrawins 6ae9610
optimize patchelf
dtrawins 8db3ca0
fix
dtrawins 9166cbf
fix2
dtrawins 3116d52
fix3
dtrawins 39c1821
fix4
dtrawins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -91,14 +91,12 @@ Config& Config::parse(int argc, char** argv) { | |
| bool Config::parse(ServerSettingsImpl* serverSettings, ModelsSettingsImpl* modelsSettings) { | ||
| this->serverSettings = *serverSettings; | ||
| this->modelsSettings = *modelsSettings; | ||
|
|
||
| static EnvGuard envGuard; | ||
| #if defined(__linux__) || defined(_WIN32) | ||
| if (this->serverSettings.logLevel == "DEBUG") { | ||
| if (this->serverSettings.logLevel == "DEBUG" || this->serverSettings.logLevel == "TRACE") { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO this log level settings should be set in the same place as for glog: This can be fixed in other pR. |
||
| envGuard.set("OPENVINO_LOG_LEVEL", "4"); | ||
| } | ||
| #endif | ||
|
|
||
| return validate(); | ||
| } | ||
|
|
||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing all those steps will mean that all those dependencies are not cached in docker layers up until L321:
https://github.com/openvinotoolkit/model_server/pull/4159/changes#diff-507d73bbefd62da3db1eec3a006d6f4bf47433fec017a5299f63921bd0a605b0L321
So basically that means they are never cached in docker. With bazel remote cache that would not be an issue but in every other case its mean recompiling most of ovms dependencies each time anything in our srcs change (L281).
Unless proven empirically that those dependencies recompile anyway, its a no go for me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, this might be useful to have
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the evidence https://ci.iotg.sclab.intel.com/job/ovmsc/job/OVMSCOps_SDL_copy/328/console that all the dependencies are included in //src:ovms target