Skip to content

Commit 94e6926

Browse files
authored
Merge pull request #281 from dclong/dev
Merge dev into main
2 parents c063e07 + be40b5a commit 94e6926

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

dsutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from . import git
44
from . import poetry
55

6-
__version__ = "0.61.3"
6+
__version__ = "0.61.4"

dsutil/hadoop/log.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ class LogFilter:
6565
"error",
6666
"Exception",
6767
"exception",
68+
"failures",
6869
)
6970
PATTERNS = (
7071
(r"\d{2,}[-/]\d{2,}[-/]\d{2,}\s\d+:\d+:\d+", "YYYY/MM/DD HH:MM:SS"),
@@ -290,6 +291,11 @@ def _error_priority(line: str) -> tuple[int, str, str]:
290291
1,
291292
"http://www.legendu.net/misc/blog/spark-issue-InsertOperationConflictException-failed-to-hold-insert-operation-lock"
292293
),
294+
(
295+
r"(?i)max number of executor failures",
296+
1,
297+
"http://www.legendu.net/misc/blog/spark-issue:-max-number-of-executor-failures-reached"
298+
),
293299
(
294300
"(?i)serialized results is bigger than spark.driver.maxResultSize", 2,
295301
"http://www.legendu.net/misc/blog/spark-issues-total-size-bigger-than-maxresultsize/"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dsutil"
3-
version = "0.61.3"
3+
version = "0.61.4"
44
description = "A utils Python package for data scientists."
55
authors = ["Benjamin Du <[email protected]>"]
66

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Currently, Python 3.7 and 3.8 are supported.
2525
2626
You can download a copy of the latest release and install it using pip.
2727
```
28-
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.61.3/dsutil-0.61.3-py3-none-any.whl
28+
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.61.4/dsutil-0.61.4-py3-none-any.whl
2929
```
3030
Or you can use the following command to install the latest master branch
3131
if you have pip 20.0+.

0 commit comments

Comments
 (0)