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

[WIP] fix: enable clean shutdown of all workers and processes #327

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ishandhanani
Copy link
Contributor

@ishandhanani ishandhanani commented Mar 21, 2025

There's been a couple different issues people running into lingering zombie processes even after you run a ctrl-c. Many times these are VLLM processes. This PR does 2 things

  1. Adds some signal handling to our dynamo worker at the SDK level
  2. Wires up the async_shutdown hook allowing our reference examples to use things like shutdown_background_loop() from the VLLM AsyncLLMEngine code.
  3. Bring back the use of uvloop (@PeaBrane)

As of right now - I have tested on 4 examples and think I have (1) working.

@@ -186,7 +189,33 @@ async def worker(runtime: DistributedRuntime):
logger.error(f"[{run_id}] Error in Dynamo component setup: {str(e)}")
raise

asyncio.run(worker())
# Define the setup_signal_handlers function within main's scope
async def setup_signal_handlers():
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this go in the @dynamo_worker decorator in the python bindings?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea - I'm getting back to this and will try

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants