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

[C++ worker] support build and add C++ worker to python wheel #16496

Merged
merged 21 commits into from
Jul 8, 2021

Conversation

SongGuyang
Copy link
Contributor

@SongGuyang SongGuyang commented Jun 17, 2021

Why are these changes needed?

  • support get a c++ library for ray script, like this:

    • ray cpp --show-library-path
      image

    • ray cpp --generate-bazel-project-template-to {your_dir}
      image

  • support build c++ API to wheel when you set environment variable export RAY_INSTALL_CPP=1

@@ -124,22 +124,23 @@ Ray provides Python, Java, and *EXPERIMENTAL* C++ API. And Ray uses Tasks (funct
.. code-block:: shell

bazel build //cpp:ray_cpp_pkg
bazel build //cpp/example:example
cd cpp/example/
Copy link
Contributor

Choose a reason for hiding this comment

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

Can we avoid this, just use one command.

Copy link
Contributor Author

@SongGuyang SongGuyang Jun 18, 2021

Choose a reason for hiding this comment

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

We need this because example has become an independent bazel project. Do you mean like this cd cpp/example/ && bazel build //:example?

Copy link
Contributor

Choose a reason for hiding this comment

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

How about bazel build //cpp/example:example?
Don't need to goto a sub dir.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

If we use build //cpp/example:example, we can not ensure this project is independent. Just like a sub-project under ray project.

@qicosmos qicosmos self-requested a review June 23, 2021 05:37
Copy link
Member

@kfstorm kfstorm left a comment

Choose a reason for hiding this comment

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

Please replace all print(...) statements with cli_logger.print(...) and all "\n" to cli_logger.newline().

@kfstorm
Copy link
Member

kfstorm commented Jun 23, 2021

I'd prefer to stop using the term "example" and "template project". Try with "sample application" instead.

@kfstorm kfstorm requested a review from raulchen June 23, 2021 06:16
@kfstorm
Copy link
Member

kfstorm commented Jun 23, 2021

@SongGuyang Can you make the printed message colorful by following the usage of cli_logger in ray start?

@SongGuyang
Copy link
Contributor Author

@kfstorm The code has been updated and already used cli_logger.

@SongGuyang SongGuyang linked an issue Jun 28, 2021 that may be closed by this pull request
Copy link
Member

@kfstorm kfstorm left a comment

Choose a reason for hiding this comment

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

LGTM. One comment.

@@ -205,7 +205,7 @@ test_cpp() {
bazel test //cpp:cluster_mode_test --test_arg=--external-cluster=true --test_arg=--redis-password="1234" \
--test_arg=--ray-redis-password="1234"
# run the cpp example
bazel run //cpp/example:example
cd cpp/example && bazel --nosystem_rc --nohome_rc run //:example
Copy link
Member

Choose a reason for hiding this comment

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

What problem does --nosystem_rc --nohome_rc solve? Should we add these to the doc?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Bazel options has been inherited in CI images. But this test is an independent project for users. We need add "--nosystem_rc --nohome_rc" in the test script. But we don't need to add this to the doc because there is no problem in user side.

image

@kfstorm
Copy link
Member

kfstorm commented Jul 8, 2021

test_multi_tenancy timeout should be unrelated.

@kfstorm kfstorm merged commit 560fd15 into ray-project:master Jul 8, 2021
@kfstorm kfstorm deleted the dev_cpp_worker_example branch July 8, 2021 06:42
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.

[C++ API] Release C++ API in python Wheel
3 participants