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

[JavaWorker] Enable java worker support #2094

Merged
merged 6 commits into from
May 26, 2018

Conversation

salah-man
Copy link
Contributor


This commit includes a tailored version of the Java worker implementation from Ant Financial.
The changes for build system, python module, src module and arrow are in other commits, this commit consists of the following modules:

  • java/api: Ray API definition
  • java/common: utilities
  • java/hook: binary rewrite of the Java byte-code for remote execution
  • java/runtime-common: common implementation of the runtime in worker
  • java/runtime-dev: a pure-java mock implementation of the runtime for fast development
  • java/runtime-native: a native implementation of the runtime
  • java/test: various tests

Contributors for this work:
Guyang Song, Peng Cao, Senlin Zhu,Xiaoying Chu, Yiming Yu, Yujie Liu, Zhenyu Guo

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

@robertnishihara
Copy link
Collaborator

#2095

@salah-man salah-man closed this May 22, 2018
@salah-man salah-man reopened this May 22, 2018
@salah-man salah-man closed this May 22, 2018
@salah-man salah-man reopened this May 22, 2018
@robertnishihara
Copy link
Collaborator

One thing that would be helpful is to include "quick start" instructions for getting a simple Ray application running from a brand new Ubuntu machine. To try write an application using Ray from Java, I had to do the following.

sudo apt install maven default-jdk

Then I created a project with mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

Then I had to add the following to the pom.xml.

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-api</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-runtime-common</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-runtime-native</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-runtime-dev</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-common</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.ray</groupId>
      <artifactId>ray-hook</artifactId>
      <version>1.0</version>
    </dependency>

and also

  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

Then I had to add a bunch of imports like

import org.ray.api.Ray;
import org.ray.api.RayRemote;
import org.ray.api.RayActor;
import org.ray.api.RayList;
import org.ray.api.RayObject;
import org.ray.api.WaitResult;
import org.ray.util.logger.RayLog;

to the application.

Then I had to duplicate ray/java/ray.config.ini and add %CONFIG_FILE_DIR%/../../my-app/target/my-app-1.0-SNAPSHOT.jar = under the [ray.java.path.classes.package] header.

Then I compiled with mvn package.

Then I had to do export RAY_CONFIG=/path/to/ray.config.ini.

Then I compiled with java -Djava.library.path=/home/ubuntu/ray/build/src/plasma/:/home/ubuntu/ray/build/src/local_scheduler/ -cp target/my-app-1.0-SNAPSHOT.jar:/home/ubuntu/ray/java/test/lib/* com.mycompany.app.App

I think we can come up with much simpler instructions (e.g., we can provide an example so the user doesn't have to do mvn archetype:generate and so the pom.xml is already in place.

java/README.md Outdated

```sh
# build native components
sh ../build.sh -l java
Copy link
Collaborator

Choose a reason for hiding this comment

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

I had to replace this with ../build.sh -l java to make it work. With sh I got ../build.sh: 10: ../build.sh: Syntax error: "(" unexpected.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I will fix it soon, thanks.

java/README.md Outdated
@@ -0,0 +1,308 @@
This directory contains the java worker, with the following components.
Copy link
Collaborator

Choose a reason for hiding this comment

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

It'd be preferable to convert the documentation to RST (instead of markdown) for consistency with the rest of the documentation.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's ok to me, i could try to change the format from markdown to RST.

@salah-man
Copy link
Contributor Author

Thanks for your time @robertnishihara.
First, the class under test package actually the sample or demo case besides the test case.
Second, i could add a module like example which has the simple hello world case.

@salah-man
Copy link
Contributor Author

Excuse me, but after all these pr(inclue the pr in Arrow) merged, we still need to start a final pr to let the java worker work well, which need to update the version of arrow, add the java test to the Ray ci, and some adaptation work. And the code and test is ready at my local, but i could not submit the pr when the pr currently submited not merged, because i could not have the right base code. How about add the example module in the final pr, and of couse i could change the Readme.md to RST format in this pr. Thank you very much @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/5630/
Test PASSed.

@robertnishihara
Copy link
Collaborator

@salah-man sounds good, I think it is fine to add the example in a subsequent PR.

@pcmoritz pcmoritz changed the title [JavaWorker]Enable java worker support [JavaWorker] Enable java worker support May 26, 2018
@pcmoritz
Copy link
Contributor

@salah-man This looks good, but before we can merge it, can you please add an entry in the Travis build matrix to test it? For a start it's fine to just add some simple tests to test the basic functionality of the API. I think it also needs to use apache/arrow#2065 to work.

@salah-man
Copy link
Contributor Author

Hi @pcmoritz you are right, and i still have the final PR at my local, which is for the version update of arrow, add java test case to the Travis ci and some adaption work, and the code is ready. And because the final PR is based on the current PR, so i do not submit before this PR merged. So whether i should submit the final PR into the current PR with different commit or submit another independent PR?

@pcmoritz
Copy link
Contributor

Can you submit the final PR so we can have a look at it? It doesn't matter that it is based on this PR for now :)

@salah-man
Copy link
Contributor Author

@pcmoritz Ok, i will rebase the master branch from current branch and cherry-pick the adaption, and i could the submit the final PR into current PR.

@pcmoritz
Copy link
Contributor

Just submitting the PR so we can see the diff to this one would also be ok, then we can decide if we want to put them together or merge them separately.

@salah-man
Copy link
Contributor Author

OK i see, i could submit a PR based on the branch of java_worker_mr3, and i need a little time to clean the code because i notice that the master branch have do some work the same as me (some thing like 225608e). And i will finish code clean and test as soon as possible. Thank you very much @pcmoritz

salah-man added 2 commits May 26, 2018 14:20
--------------------------
This commit includes a tailored version of the Java worker implementation from Ant Financial.
The changes for build system, python module, src module and arrow are in other commits, this commit consists of the following modules:
 - java/api: Ray API definition
 - java/common: utilities
 - java/hook: binary rewrite of the Java byte-code for remote execution
 - java/runtime-common: common implementation of the runtime in worker
 - java/runtime-dev: a pure-java mock implementation of the runtime for fast development
 - java/runtime-native: a native implementation of the runtime
 - java/test: various tests

Contributors for this work:
 Guyang Song, Peng Cao, Senlin Zhu,Xiaoying Chu, Yiming Yu, Yujie Liu, Zhenyu Guo
@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/5637/
Test FAILed.

@salah-man
Copy link
Contributor Author

Hi, here comes the final PR, which compare the code branch of java_worker_mr3, Thanks.
antgroup#15

@pcmoritz
Copy link
Contributor

pcmoritz commented May 26, 2018

Thanks, that looks good! Let's add the changes on top of this PR and merge the changes together, so we have a fully functional PR integrated.

@salah-man
Copy link
Contributor Author

Ok, i have already add the changes on top of this PR.

@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/5638/
Test FAILed.

@salah-man salah-man closed this May 26, 2018
@salah-man salah-man reopened this May 26, 2018
@salah-man salah-man closed this May 26, 2018
@salah-man salah-man reopened this May 26, 2018
@pcmoritz
Copy link
Contributor

Jenkins retest this please

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

Copy link
Contributor

@pcmoritz pcmoritz left a comment

Choose a reason for hiding this comment

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

+1, thanks a lot for getting this merged!

@pcmoritz pcmoritz merged commit a8d3c05 into ray-project:master May 26, 2018
@robertnishihara
Copy link
Collaborator

Awesome, thanks for contributing this!

@salah-man
Copy link
Contributor Author

Thank you very much, your comments are really helpful and professional, and look forward to the next cooperation @robertnishihara @pcmoritz. And thank you for your time again.

alok added a commit to alok/ray that referenced this pull request Jun 3, 2018
* master:
  [autoscaler] GCP node provider (ray-project#2061)
  [xray] Evict tasks from the lineage cache (ray-project#2152)
  [ASV] Add ray.init and simple Ray benchmarks (ray-project#2166)
  Re-encrypt key for uploading to S3 from travis to use travis-ci.com. (ray-project#2169)
  [rllib] Fix A3C PyTorch implementation (ray-project#2036)
  [JavaWorker] Do not kill local-scheduler-forked workers in RunManager.cleanup (ray-project#2151)
  Update Travis CI badge from travis-ci.org to travis-ci.com. (ray-project#2155)
  Implement Python global state API for xray. (ray-project#2125)
  [xray] Improve flush algorithm for the lineage cache (ray-project#2130)
  Fix support for actor classmethods (ray-project#2146)
  Add empty df test (ray-project#1879)
  [JavaWorker] Enable java worker support (ray-project#2094)
  [DataFrame] Fixing the code formatting of the tests (ray-project#2123)
  Update resource documentation (remove outdated limitations). (ray-project#2022)
  bugfix: use array redis_primary_addr out of its scope (ray-project#2139)
  Fix infinite retry in Push function. (ray-project#2133)
  [JavaWorker] Changes to the directory under src for support java worker (ray-project#2093)
  Integrate credis with Ray & route task table entries into credis. (ray-project#1841)
@salah-man salah-man deleted the java_worker_mr3 branch July 21, 2018 12:02
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