-
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
[core] Skip setproctitle
tests on non-Linux machines
#51229
Merged
edoakes
merged 2 commits into
ray-project:master
from
kevin85421:laptop-repro-proc-title
Mar 11, 2025
Merged
[core] Skip setproctitle
tests on non-Linux machines
#51229
edoakes
merged 2 commits into
ray-project:master
from
kevin85421:laptop-repro-proc-title
Mar 11, 2025
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dayshah
approved these changes
Mar 10, 2025
This PR fixes the post-merge failures in #51182. However, the premerge fails consistently, and the failure seems to be unrelated #51229 (comment). Is it OK to merge to fix the post-merge failure? |
qinyiyan
pushed a commit
to qinyiyan/ray
that referenced
this pull request
Mar 13, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com>
park12sj
pushed a commit
to park12sj/ray
that referenced
this pull request
Mar 18, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com>
jaychia
pushed a commit
to jaychia/ray
that referenced
this pull request
Mar 19, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com> Signed-off-by: Jay Chia <17691182+jaychia@users.noreply.github.com>
jaychia
pushed a commit
to jaychia/ray
that referenced
this pull request
Mar 19, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com> Signed-off-by: Jay Chia <17691182+jaychia@users.noreply.github.com>
Drice1999
pushed a commit
to Drice1999/ray
that referenced
this pull request
Mar 23, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com>
dhakshin32
pushed a commit
to dhakshin32/ray
that referenced
this pull request
Mar 27, 2025
…1229) ray-project#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of `psutil.Process().name()` differs as well. ``` [ref]: https://github.com/dvarrazzo/py-setproctitle > The process title is usually visible in files such as /proc/PID/cmdline, /proc/PID/status, /proc/PID/comm, depending on the operating system and kernel version. This information is used by user-space tools such as ps and top. ``` For example, in Linux, the `/proc/pid/comm` can't be more than 15 chars. However, MacOS doesn't have `/proc/pid/comm`. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check". ```python def test_main_thread_short_comm(self, ray_start_regular): """ Test that the main thread's comm is not truncated. """ @ray.remote class A: def check(self): pid = os.getpid() assert _is_actor_task_running(pid, "check") assert psutil.Process(pid).name() == "ray::A.check" assert psutil.Process(pid).cmdline()[0] == "ray::A.check" return pid a = A.remote() pid = ray.get(a.check.remote()) wait_for_condition(lambda: not _is_actor_task_running(pid, "check")) ``` ## Related issue number Closes ray-project#51182 Closes ray-project#45966 On my Mac M3 <img width="1728" alt="image" src="https://github.com/user-attachments/assets/c8c0addf-9c18-402d-bafd-135ff8f6ea7a" /> Signed-off-by: Kai-Hsun Chen <kaihsun@anyscale.com> Signed-off-by: Dhakshin Suriakannu <d_suriakannu@apple.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why are these changes needed?
#51158 adds tests for process titles. However, the definition of "title" varies across different operating systems, and the behavior of
psutil.Process().name()
differs as well.For example, in Linux, the
/proc/pid/comm
can't be more than 15 chars. However, MacOS doesn't have/proc/pid/comm
. In the following test, the name of the process in Mac is "python3.9", but the name on Linux is "ray::A.check".Related issue number
Closes #51182
Closes #45966
Checks
git commit -s
) in this PR.scripts/format.sh
to lint the changes in this PR.method in Tune, I've added it in
doc/source/tune/api/
under thecorresponding
.rst
file.On my Mac M3