-
Notifications
You must be signed in to change notification settings - Fork 24
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
Job keeps running even after successful deployment and execution #213
Comments
Found a work-able solution. The problem was with the below chunk in
Once the execution is completed, this does not does not halt and hence enters a continuous loop. Resolution : comment out the above chunk from
Note : Novice in python and cloud environment. Not sure, if this is a best way to go |
Tried aa similar fix, can you try it with:
Thanks! |
@javierluraschi That works! Thanks a lot! :-) Just couple more points. If I provide a custom job id and a storage location in
This is not a very critical issue. Just for the highlight Thanks once again for resolving this! Appreciate it very much -Heramb |
Thanks, will take us longer to address #214 but let me push these critical updates to CRAN first. |
Hello,
I am trying to deploy a test job from my RStudio Desktop to GCP AI platform. I am able to successfully deploy the job after the suggested ammendement to
.\library\cloudml\cloudml\cloudml\deploy.py
file withline.decode('utf-8')
; but the job keeps on running and consuming the resources even when it is successfully completed. I see the output ings://bucket/r-cloudml/runs/auto-generated-job-id/iris.rds
along withgs://bucket/r-cloudml/runs/auto-generated-job-id/tfruns.d/completed
file value set atTRUE
. Attaching the test directory which hascloudml_init.R
file that executes the code r-keras-tensorflow.zipOne more thing - it doesn't take the
jobId
provided in thejob.yml
file and auto-generates it.Thanks in advance!
Heramb
The text was updated successfully, but these errors were encountered: