-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
wait_for_completion in environment.py does not wait for 'Queued' state #20223
Comments
@robert4os - thanks for opening an issue! Routing this to the correct people. |
@robert4os Apologies for the delayed response. I see that this issue is opened long time ago and no further activity had taken place. So wanted to check if you are still facing this issue ? Please let us know . |
@SaurabhSharma-MSFT Was the bug fixed then? Since the code is not open source, it is not straight forward to check. Our workaround was to write our own waiting method to wait for the correct Return state. |
Hi, we're sending this friendly reminder because we haven't heard back from you in a while. We need more information about this issue to help address it. Please be sure to give us your input within the next 7 days. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you! |
What more feedback could I provide? Since the code is not open source, it is not straight forward to check. |
[Compute] New Api Version 2022-07-02 (Azure#20223) * New Api version 2022-07-02 * readme changes * version update * Adding diskControllerTypes and optimizedForFrequentAttach to resources (Azure#19958) * add new api version * add examples for optimizedForFrequentAttach * adding diskcontrollertypes * adding example and removing unknown characters * removing unknown character * removing null * updating description * Fix examples and readme * fix based on target branch * add examples * remove bad files * fix readme * fix description for property * adding nvme to customwords.txt * Updating comment on NVME feature * Fixed swagger bugs (#4) * Fixed swagger bugs * Addressed comments * Updated description * Added performancePlus property * Updated description for performance plus * Addressed comments * Removed read Only property Co-authored-by: akashpargat <akashpargat@microsoft.com> Co-authored-by: Sarah Rahman <sarahrahman@microsoft.com> Co-authored-by: Akash Pargat <akashpargat@yahoo.com> Co-authored-by: akashpargat <akashpargat@microsoft.com> * Readme.md correction * Adding examples * fix syntax * update common.json to common-types folder * example fixes * fix snapshot example Co-authored-by: chetmaddula <57730350+chetmaddula@users.noreply.github.com> Co-authored-by: Sarah Rahman <sarahrahman@microsoft.com> Co-authored-by: Akash Pargat <akashpargat@yahoo.com> Co-authored-by: akashpargat <akashpargat@microsoft.com> Co-authored-by: Theodore Chang <theodore.l.chang@gmail.com>
We released track 2 machine learning library https://pypi.org/project/azure-ai-ml/. Could you help to check if this works for you? |
Hi @robert4os. Thank you for opening this issue and giving us the opportunity to assist. To help our team better understand your issue and the details of your scenario please provide a response to the question asked above or the information requested above. This will help us more accurately address your issue. |
Hi @robert4os, we're sending this friendly reminder because we haven't heard back from you in 7 days. We need more information about this issue to help address it. Please be sure to give us your input. If we don't hear back from you within 14 days of this comment the issue will be automatically closed. Thank you! |
Describe the bug
wait_for_completion in environment,py does not wait for 'Queued' but only a few of all possible states. This is unexpected behavior.
while status in ('Running', "GettingOrProvisioningACR"):
The similar function wait_for_completion on Run implements this more stable by using 'RunStatus.get_running_statuses()' for all states a Run could be in.
To Reproduce
fill up the queue
_build = env.build(ws, image_build_compute=compute_target)
_build = env.build(ws, image_build_compute=compute_target)
_build = env.build(ws, image_build_compute=compute_target)
wait for queued build
_build = env.build(ws, image_build_compute=compute_target)
_build.wait_for_completion()
Expected behavior
wait should not exit on queued builds, but rather wait until completion (as in the func name)
The text was updated successfully, but these errors were encountered: