-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
Add --reload
flag to the serve run
subcommand
#38389
Conversation
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.
@volks73 thanks so much for adding this, it'll be a great UX improvement!
I left a few small comments on naming/behavior.
In addition, could you please add a test case to python/ray/serve/tests/test_cli.py
? Should be of the form: start background process running serve run
with reload, check app is deployed and returns initial response, update file in the working dir to return a new response, wait_for_condition
that the app returns the new response.
@volks73 in addition, you'll need to sign off all commits in the PR using the |
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: Christopher Field <cfield2@gmail.com> Signed-off-by: Christopher Field <chris.field@theiascientific.com>
ffbacf6
to
5205aae
Compare
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
@edoakes I have signed the previous and current commits. Sorry about that. I have added a test to the |
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.
Test looks great, thanks! Just some small nits then LGTM.
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.
Test case is failing, pointed out what looks like the issue:
https://buildkite.com/ray-project/oss-ci-build-pr/builds/31759#0189f509-1af0-4fa7-be7c-320a541be7ac/6-2237
Signed-off-by: Christopher Field <chris.field@theiascientific.com>
Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: Christopher Field <cfield2@gmail.com>
…into feature-serve-reload
Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: Christopher Field <cfield2@gmail.com>
Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Signed-off-by: Christopher Field <cfield2@gmail.com>
@volks73 I pushed a commit to the branch. Had to fix a few issues:
With these changes the test is passing locally and manual testing worked as well. |
@edoakes Great! Thank you for fixing the test and the app reloading. I don't know of another solution than sleeping for a while either. |
Doc build failed due to missing dependency, hopefully fixed 🤞 |
@edoakes I am having trouble following the tests. Did updating the dependencies for the docs work? |
@volks73 all the relevant tests are passing (we have some typical flakiness in CI). Just need one more approval and should get merged in time for 2.7 branch cut! |
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.
move the dependency to serve
instead of default
?
@edoakes I have moved the |
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.
approving from docs side
b164d90
to
a66f92f
Compare
Signed-off-by: Christopher Field <chris.field@theiascientific.com> Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
Signed-off-by: Edward Oakes <ed.nmi.oakes@gmail.com>
…ure-serve-reload
@volks73 merged 🎉 thanks again for contributing. This has been on the backlog for a long time and happy to see it done :) |
@edoakes Your welcome and thank you for helping with the PR and overall for the Ray project. |
I have implemented a custom watch using the `watchfiles` package, formerly named `watchgod`, for my own local development of Ray Serve applications. It would be nice if this functionality existed in the `serve` Command Line Interface (CLI). I have searched the GitHub issues and Ray forums. This feature has been requested off and on several times. This PR adds the `--reload` flag to the `serve run` subcommand. It will listen for file changes in the specified working directory and redeploy the application. This is similar uvicorn and other web frameworks. It is useful for application development. The `watchfiles` package is added to the `requirements.txt` file and the `setup.py` file as indicated. Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Co-authored-by: Christopher Field <chris.field@theiascientific.com> Signed-off-by: e428265 <arvind.chandramouli@lmco.com>
I have implemented a custom watch using the `watchfiles` package, formerly named `watchgod`, for my own local development of Ray Serve applications. It would be nice if this functionality existed in the `serve` Command Line Interface (CLI). I have searched the GitHub issues and Ray forums. This feature has been requested off and on several times. This PR adds the `--reload` flag to the `serve run` subcommand. It will listen for file changes in the specified working directory and redeploy the application. This is similar uvicorn and other web frameworks. It is useful for application development. The `watchfiles` package is added to the `requirements.txt` file and the `setup.py` file as indicated. Co-authored-by: Edward Oakes <ed.nmi.oakes@gmail.com> Co-authored-by: Christopher Field <chris.field@theiascientific.com> Signed-off-by: Victor <vctr.y.m@example.com>
Why are these changes needed?
I have implemented a custom watch using the
watchfiles
package, formerly namedwatchgod
, for my own local development of Ray Serve applications. It would be nice if this functionality existed in theserve
Command Line Interface (CLI). I have searched the GitHub issues and Ray forums. This feature has been requested off and on several times.This PR adds the
--reload
flag to theserve run
subcommand. It will listen for file changes in the specified working directory and redeploy the application. This is similar uvicorn and other web frameworks. It is useful for application development.The
watchfiles
package is added to therequirements.txt
file and thesetup.py
file as indicated.Related issue number
serve run --reload
flag #26341serve run --reload
command #24790serve run
command for development #16094Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.I have tested by creating an
example
folder in the project root,mkdir example && example
, then creating the following example Ray Serve application,example_serve.py
, based on the Key Concepts documentation:I started the Ray Serve application with following command from within the
example
folder:This yields the following output:
Then, I change the "Hello World" to "Hello Me", and I get the following output: