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

[Ray component: Core] Enable better progress bar #26426

Open
JiahaoYao opened this issue Jul 9, 2022 · 0 comments
Open

[Ray component: Core] Enable better progress bar #26426

JiahaoYao opened this issue Jul 9, 2022 · 0 comments
Labels
enhancement Request for new feature and/or capability observability Issues related to the Ray Dashboard, Logging, Metrics, Tracing, and/or Profiling P2 Important issue, but not time-critical

Comments

@JiahaoYao
Copy link
Contributor

What happened + What you expected to happen

from tqdm import trange
import ray 
import time

@ray.remote
def func(x):
    for i in trange(x):
        time.sleep(i)
    return x

ray.get(func.remote(10))

and I get the outputs

2022-07-09 11:32:26,340 INFO services.py:1483 -- View the Ray dashboard at http://127.0.0.1:8265/
  0%|          | 0/10 [00:00<?, ?it/s]
 20%|██        | 2/10 [00:01<00:04,  2.00it/s]
 30%|███       | 3/10 [00:03<00:07,  1.13s/it]
 40%|████      | 4/10 [00:06<00:10,  1.83s/it]
 50%|█████     | 5/10 [00:10<00:12,  2.58s/it]
 60%|██████    | 6/10 [00:15<00:13,  3.39s/it]
 70%|███████   | 7/10 [00:21<00:12,  4.23s/it]
 80%|████████  | 8/10 [00:28<00:10,  5.10s/it]
 90%|█████████ | 9/10 [00:36<00:06,  6.00s/it]
100%|██████████| 10/10 [00:45<00:00,  4.50s/it]

#9233 ray-project/ray_lightning#176

Versions / Dependencies

NA

Reproduction script

NA

Issue Severity

High: It blocks me from completing my task.

@JiahaoYao JiahaoYao added bug Something that is supposed to be working; but isn't triage Needs triage (eg: priority, bug/not-bug, and owning component) labels Jul 9, 2022
@scottsun94 scottsun94 added the observability Issues related to the Ray Dashboard, Logging, Metrics, Tracing, and/or Profiling label Oct 13, 2022
@richardliaw richardliaw added the core Issues that should be addressed in Ray Core label Oct 29, 2022
@rkooo567 rkooo567 added P2 Important issue, but not time-critical enhancement Request for new feature and/or capability triage Needs triage (eg: priority, bug/not-bug, and owning component) and removed triage Needs triage (eg: priority, bug/not-bug, and owning component) core Issues that should be addressed in Ray Core bug Something that is supposed to be working; but isn't P2 Important issue, but not time-critical labels Oct 30, 2022
@hora-anyscale hora-anyscale added P2 Important issue, but not time-critical and removed triage Needs triage (eg: priority, bug/not-bug, and owning component) labels Dec 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Request for new feature and/or capability observability Issues related to the Ray Dashboard, Logging, Metrics, Tracing, and/or Profiling P2 Important issue, but not time-critical
Projects
None yet
Development

No branches or pull requests

5 participants