(self)
| 588 | """ |
| 589 | |
| 590 | def __str__(self): |
| 591 | # TODO(scv119): expose more disk usage information and link to a doc. |
| 592 | return super(OutOfDiskError, self).__str__() + ( |
| 593 | "\n" |
| 594 | "The object cannot be created because the local object store" |
| 595 | " is full and the local disk's utilization is over capacity" |
| 596 | " (95% by default)." |
| 597 | "Tip: Use `df` on this node to check disk usage and " |
| 598 | "`ray memory` to check object store memory usage." |
| 599 | ) |
| 600 | |
| 601 | |
| 602 | @PublicAPI |