-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
Conversation
Test PASSed. |
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.
Then I created a project with Then I had to add the following to the
and also
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 Then I compiled with Then I had to do Then I compiled with 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 |
java/README.md
Outdated
|
||
```sh | ||
# build native components | ||
sh ../build.sh -l java |
There was a problem hiding this comment.
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
.
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
Thanks for your time @robertnishihara. |
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 . |
84f6f25
to
a58ab22
Compare
Test PASSed. |
@salah-man sounds good, I think it is fine to add the example in a subsequent PR. |
@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. |
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? |
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 :) |
@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. |
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. |
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 |
-------------------------- 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
a58ab22
to
3d14a2a
Compare
Test FAILed. |
Hi, here comes the final PR, which compare the code branch of java_worker_mr3, Thanks. |
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. |
Ok, i have already add the changes on top of this PR. |
Test FAILed. |
Jenkins retest this please |
Test PASSed. |
There was a problem hiding this 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!
Awesome, thanks for contributing this! |
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. |
* 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)
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:
Contributors for this work:
Guyang Song, Peng Cao, Senlin Zhu,Xiaoying Chu, Yiming Yu, Yujie Liu, Zhenyu Guo