Skip to content

Commit e8b0f80

Browse files
authored
[Data] Change log level for ignored exceptions (ray-project#44408)
Ray Data gives you the option to ignore some number of errored blocks (for example, if you have some faulty data in your dataset). Currently, we log these exceptions as warnings. This PR updates the code to log the exceptions as errors. Signed-off-by: Balaji Veeramani <[email protected]>
1 parent 1fcd7b7 commit e8b0f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ray/data/_internal/execution/streaming_executor_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ def process_completed_tasks(
436436
" Ignoring this exception with remaining"
437437
f" max_errored_blocks={remaining}."
438438
)
439-
logger.get_logger().warning(error_message, exc_info=e)
439+
logger.get_logger().error(error_message, exc_info=e)
440440
else:
441441
error_message += (
442442
" Dataset execution will now abort."

0 commit comments

Comments
 (0)