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

[Java] Fix bug when actor creation task fails #3740

Merged
merged 2 commits into from
Jan 14, 2019

Conversation

raulchen
Copy link
Contributor

@raulchen raulchen commented Jan 10, 2019

When an actor creation task fails, we should save the exception and re-raise it for the following actor tasks.
This implements the same logic as

ray/python/ray/worker.py

Lines 209 to 218 in 7124320

def mark_actor_init_failed(self, error):
"""Called to mark this actor as failed during initialization."""
self.actor_init_error = error
def reraise_actor_init_error(self):
"""Raises any previous actor initialization error."""
if self.actor_init_error is not None:
raise self.actor_init_error

@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/10744/
Test PASSed.

Copy link
Contributor

@jovany-wang jovany-wang left a comment

Choose a reason for hiding this comment

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

It looks good to me.

@@ -1,5 +1,8 @@
package org.ray.runtime;

import com.google.common.base.Preconditions;
import java.util.HashMap;
import java.util.Map;
Copy link
Contributor

Choose a reason for hiding this comment

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

Map and HashMap do not seem to be used in your added codes.

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 catch!

@raulchen raulchen force-pushed the java_creation_task_fail branch from 3b462f2 to 555c329 Compare January 12, 2019 14:54
@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/10795/
Test PASSed.

@guoyuhong guoyuhong merged commit 1bb20ba into ray-project:master Jan 14, 2019
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.

4 participants