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

[core] Better Actor Representation #2369

Merged
merged 5 commits into from
Jul 9, 2018

Conversation

richardliaw
Copy link
Contributor

@richardliaw richardliaw commented Jul 7, 2018

This is a shot at a better string representation for actors.

Right now, the actor handle returned does not provide information about what class the actor handle is wrapping.

Suggestions and improvements welcome.

cc @stephanie-wang @robertnishihara @pcmoritz

@AmplabJenkins
Copy link

Test FAILed.
Refer to this link for build results (access rights to CI server needed):
https://amplab.cs.berkeley.edu/jenkins//job/Ray-PRB/6541/
Test FAILed.

Copy link
Collaborator

@robertnishihara robertnishihara left a comment

Choose a reason for hiding this comment

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

Good idea!

return "Actor({})".format(self._ray_actor_id)

def __str__(self):
return "RayActor({})".format(self._ray_class_name)
Copy link
Collaborator

Choose a reason for hiding this comment

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

Why put different information in these two functions? I think they should be the same.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Hm, not totally sure - I read this particular comment https://stackoverflow.com/a/1436756/2213289 which seems to suggest you want the unique identifier in the repr.

@@ -841,7 +841,10 @@ def __getattribute__(self, attr):
return object.__getattribute__(self, attr)

def __repr__(self):
return "Actor(" + self._ray_actor_id.hex() + ")"
return "Actor({})".format(self._ray_actor_id)
Copy link
Collaborator

Choose a reason for hiding this comment

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

We probably want to keep the .hex(), right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ah fixed

@robertnishihara
Copy link
Collaborator

Ok, let's remove the __str__ implementation (it will just use __repr__) and put both the class name and ID into the string. How does that sound?

@richardliaw
Copy link
Contributor Author

richardliaw commented Jul 7, 2018 via email

@robertnishihara
Copy link
Collaborator

I'd prefer to keep the full ID so that in the future when we have a more fully-fledged UI, people can copy and paste it into the UI and get more information about the actor. The full ID should also help with searching through logs and the GCS and things like that. Also, we use full IDs for all of the other kinds of IDs, so it would be more consistent.

@AmplabJenkins
Copy link

Test FAILed.
Refer to this link for build results (access rights to CI server needed):
https://amplab.cs.berkeley.edu/jenkins//job/Ray-PRB/6552/
Test FAILed.

@AmplabJenkins
Copy link

Test FAILed.
Refer to this link for build results (access rights to CI server needed):
https://amplab.cs.berkeley.edu/jenkins//job/Ray-PRB/6554/
Test FAILed.

@richardliaw
Copy link
Contributor Author

this is ready for another pass @robertnishihara

@AmplabJenkins
Copy link

Test PASSed.
Refer to this link for build results (access rights to CI server needed):
https://amplab.cs.berkeley.edu/jenkins//job/Ray-PRB/6585/
Test PASSed.

@robertnishihara robertnishihara merged commit 55d5e28 into ray-project:master Jul 9, 2018
@robertnishihara robertnishihara deleted the actor_repr branch July 9, 2018 18:20
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.

3 participants