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

Build memory limits/requests should be ByteSpecification #1626

Merged
merged 2 commits into from
Jan 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions binderhub/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from traitlets import Any, Bool, Dict, Integer, Unicode, default
from traitlets.config import LoggingConfigurable

from .utils import KUBE_REQUEST_TIMEOUT, rendezvous_rank
from .utils import KUBE_REQUEST_TIMEOUT, ByteSpecification, rendezvous_rank


class ProgressEvent:
Expand Down Expand Up @@ -91,8 +91,10 @@ class BuildExecutor(LoggingConfigurable):
config=True,
)

memory_limit = Integer(
0, help="Memory limit for the build process in bytes", config=True
memory_limit = ByteSpecification(
0,
help="Memory limit for the build process in bytes (optional suffixes K M G T).",
config=True,
)

appendix = Unicode(
Expand Down Expand Up @@ -261,10 +263,10 @@ def _default_builder_info(self):
config=True,
)

memory_request = Integer(
memory_request = ByteSpecification(
0,
help=(
"Memory request of the build pod. "
"Memory request of the build pod in bytes (optional suffixes K M G T). "
"The actual building happens in the docker daemon, "
"but setting request in the build pod makes sure that memory is reserved for the docker build "
"in the node by the kubernetes scheduler."
Expand Down
25 changes: 25 additions & 0 deletions binderhub/tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,31 @@ def test_sticky_builds_affinity():
].preference.match_expressions[0].values[0] in ("node-a", "node-b")


def test_build_memory_limits():
# Setup some mock objects for the response from the k8s API
mock_k8s_api = _list_image_builder_pods_mock()

build = KubernetesBuildExecutor(
q=mock.MagicMock(),
api=mock_k8s_api,
name="test_build",
namespace="build_namespace",
repo_url="repo",
ref="ref",
build_image="image",
image_name="name",
push_secret="",
memory_limit="2T",
memory_request="123G",
git_credentials="",
docker_host="http://mydockerregistry.local",
node_selector={},
sticky_builds=True,
)
assert build.memory_limit == 2199023255552
assert build.memory_request == 132070244352


def test_git_credentials_passed_to_podspec_upon_submit():
git_credentials = """{
"client_id": "my_username",
Expand Down