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

Add driver ID to task spec and add driver ID to Python error handling. #225

Merged
merged 3 commits into from
Jan 26, 2017
Merged

Add driver ID to task spec and add driver ID to Python error handling. #225

merged 3 commits into from
Jan 26, 2017

Conversation

robertnishihara
Copy link
Collaborator

@robertnishihara robertnishihara commented Jan 24, 2017

This provides a small amount of isolation between different drivers using the same cluster (there is not much isolation at the moment, e.g., remote functions, environment variables, and such will conflict).

The following can be done to cause an error from one driver to be pushed to another driver.

From ray/ start a local cluster with

./scripts/start_ray.sh --head

Then in two separate windows, attach drivers to the cluster by following the instructions printed out from the start_ray.sh command, e.g.,

import ray
ray.init(redis_address="...")

Then define a remote function on one of the drivers that throws an exception, and call it.

@ray.remote
def f():
    raise Exception("ERROR!!")

f.remote()

The error message should appear in both windows.

DRIVER_ID_LENGTH = 20
ERROR_ID_LENGTH = 20
# Check that the error key is formatted as in push_error_to_driver.
assert len(error_key) == 5 + 1 + DRIVER_ID_LENGTH + 1 + ERROR_ID_LENGTH, error_key
Copy link
Contributor

@pcmoritz pcmoritz Jan 26, 2017

Choose a reason for hiding this comment

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

above, define a global variable ERROR_KEY = b"Error:" (we have a convention for naming here I think and also if we include ":" or not) and replace 5 + 1 by len(ERROR_KEY) and everywhere else replace b"Error:" by the variable

# If the driver ID in the error message is a sequence of all zeros, then the
# message is intended for all drivers.
generic_driver_id = DRIVER_ID_LENGTH * b"\x00"
driver_id = error_key[6:(6 + DRIVER_ID_LENGTH)]
Copy link
Contributor

Choose a reason for hiding this comment

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

same for "6" here

@pcmoritz pcmoritz merged commit ab8c343 into ray-project:master Jan 26, 2017
@pcmoritz pcmoritz deleted the isolate branch January 26, 2017 06:53
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