-
Notifications
You must be signed in to change notification settings - Fork 44
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
Enable mcad_ray_test #144
Enable mcad_ray_test #144
Conversation
@@ -34,8 +34,6 @@ import ( | |||
func TestMCADRay(t *testing.T) { | |||
test := cfosupport.With(t) | |||
|
|||
test.T().Skip("Requires https://github.com/project-codeflare/codeflare-sdk/issues/190") |
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.
It's likely the Ray head node resources have to be customised with project-codeflare/codeflare-sdk#190.
4ba3ab1
to
3fc5c21
Compare
/retest |
152da18
to
bcaa0e8
Compare
@@ -40,7 +40,7 @@ | |||
"outputs": [], | |||
"source": [ | |||
"# Create our cluster and submit appwrapper\n", | |||
"cluster = Cluster(ClusterConfiguration(namespace=namespace, name='mnisttest', num_workers=1, min_cpus=1, max_cpus=1, min_memory=4, max_memory=4, num_gpus=0, instascale=False))" | |||
"cluster = Cluster(ClusterConfiguration(namespace=namespace, name='mnisttest', head_cpus=2, head_memory=8, num_workers=1, min_cpus=1, max_cpus=1, min_memory=4, max_memory=4, num_gpus=0, instascale=False))" |
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.
Can you reduce the head resources to some lower value?
IMHO head doesn't need too many resources, probably less than worker node.
This one is hard to catch from logs:
|
Can you try to revert the |
6124663
to
b770035
Compare
Good catch, I reverted now. I noticed that all tests still make use of this import: Should I update them to use |
@ChristianZaccaria well, you can do it as part of this PR or as a separate PR. |
/lgtm |
@ChristianZaccaria @sutaakar I'd vote to get this in and work on the refactoring in a separate PR. |
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.
/lgtm
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: astefanutti The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks a lot @ChristianZaccaria! |
Closes #143
Description
This test was being blocked by this issue project-codeflare/codeflare-sdk#190 which is now closed and merged.