-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
[Data] Truncate progress bar description #46801
Merged
bveeramani
merged 5 commits into
ray-project:master
from
scottjlee:0725-truncate-opname
Jul 30, 2024
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,10 +1,14 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import logging | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import threading | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from typing import Any, List, Optional | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import ray | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from ray.experimental import tqdm_ray | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from ray.types import ObjectRef | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from ray.util.annotations import Deprecated | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
from ray.util.debug import log_once | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger = logging.getLogger(__name__) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import tqdm | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -44,6 +48,10 @@ class ProgressBar: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
because no tasks have finished yet), doesn't display the full | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
progress bar. Still displays basic progress stats from tqdm.""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# If the name/description of the progress bar exceeds this length, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# it will be truncated. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MAX_NAME_LENGTH = 100 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def __init__( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name: str, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -52,7 +60,7 @@ def __init__( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
position: int = 0, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
enabled: Optional[bool] = None, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._desc = name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._desc = self._truncate_name(name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._progress = 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Prepend a space to the unit for better formatting. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if unit[0] != " ": | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -83,6 +91,34 @@ def __init__( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
needs_warning = False | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._bar = None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def _truncate_name(self, name: str) -> str: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ctx = ray.data.context.DataContext.get_current() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
not ctx.enable_progress_bar_name_truncation | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
or len(name) <= self.MAX_NAME_LENGTH | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if log_once("ray_data_truncate_operator_name"): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.warning( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
f"Truncating long operator name to {self.MAX_NAME_LENGTH} characters." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"To disable this behavior, set `ray.data.DataContext.get_current()." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"DEFAULT_ENABLE_PROGRESS_BAR_NAME_TRUNCATION = False`." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
op_names = name.split("->") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Include as many operators as possible without exceeding `MAX_NAME_LENGTH`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Always include the first and last operator names so | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# it is easy to identify the DAG. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
truncated_op_names = [op_names[0]] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for i, op_name in enumerate(op_names[1:-1]): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len("->".join(truncated_op_names)) + len(op_name) > self.MAX_NAME_LENGTH: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
truncated_op_names.append("...") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
break | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
truncated_op_names.append(op_name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(op_names) > 1: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
truncated_op_names.append(op_names[-1]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return "->".join(truncated_op_names) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: Not a big deal, but I think there are some edge cases where the truncated name can exceed
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def block_until_complete(self, remaining: List[ObjectRef]) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
t = threading.current_thread() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
while remaining: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -117,6 +153,7 @@ def fetch_until_complete(self, refs: List[ObjectRef]) -> List[Any]: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return [ref_to_result[ref] for ref in refs] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def set_description(self, name: str) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
name = self._truncate_name(name) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if self._bar and name != self._desc: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._desc = name | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._bar.set_description(self._desc) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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
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.
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.
Should we add a warn-once that the name is getting truncated and that the behavior can be disabled with
DEFAULT_ENABLE_PROGRESS_BAR_NAME_TRUNCATION
? Not sure if users will know how to disable it otherwise