Skip to content
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

THREESCALE-10167: Formula for cgroups v2 #3565

Merged
merged 6 commits into from
Sep 26, 2023

Conversation

@mayorova mayorova force-pushed the fix-unicorn-detection-cgroups2 branch from d1185b2 to 4b30539 Compare September 21, 2023 12:46
@mayorova mayorova marked this pull request as ready for review September 22, 2023 10:30
@mayorova mayorova changed the title Formula for cgroups v2 THREESCALE-10167: Formula for cgroups v2 Sep 22, 2023
end

def kubernetes_cpu_request
available_cpus if running_on_kubernetes?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we shouldn't care whether we run on k8s. If we see cgroups cpu limit, then use that, otherwise do not. Even if we run directly under podman/docker or locally, it makes sense to use the cgroups value if such is present.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks great overall!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I guess it makes sense.
I'll refactor

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@akostadinov take a look at 742b520 please

One potential drawback is that if the image is run outside of K8S, it might be that /sys/fs/cgroup/cpu.weight could be missing (even if cgroups v2 is used), because of how the cgroup directory is structured... So the following warning can be observed:

WARNING: Caught exception getting CPU shares: No such file or directory @ rb_sysopen - /sys/fs/cgroup/cpu.weight

But I think it's OK, I guess we'll rarely run the bare container outside of K8s, and it will be only for testing purposes.
When running locally we won't see this warning because a different unicorn config is used.


# 1024 shares is equivalent to 1 cpu
File.stubs(:read).returns('2048')
assert_equal 2, Cgroups::Tools.available_cpus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a nitpick, perhaps use another value so that it doesn't match the default of 2. But everything is great!

Co-authored-by: Aleksandar N. Kostadinov <[email protected]>
Copy link
Contributor

@akostadinov akostadinov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@mayorova mayorova merged commit 56ca2e9 into master Sep 26, 2023
@mayorova mayorova deleted the fix-unicorn-detection-cgroups2 branch September 26, 2023 13:58
mayorova added a commit that referenced this pull request Sep 29, 2023
* CPU share formula for cgroups v2

* Refactor

* Change how the kubernetes lib is required

* Add a comment

* Refactor Kubernetes tools to Cgroups tools

* Update the test as suggested

Co-authored-by: Aleksandar N. Kostadinov <[email protected]>

---------

Co-authored-by: Aleksandar N. Kostadinov <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants