Skip to content

Commit d25e361

Browse files
authored
Merge pull request #319 from dclong/dev
Merge dev into main
2 parents 3e2e3be + 211468e commit d25e361

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
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.69.0"
6+
__version__ = "0.69.1"

dsutil/hadoop/log.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,14 @@ def _error_priority(line: str) -> tuple[int, str, str]:
232232
:return: The priority of the error line.
233233
"""
234234
patterns = [
235+
(
236+
"SIGILL", 1,
237+
"http://www.legendu.net/misc/blog/spark-issue:-shell-related"
238+
),
239+
(
240+
"(?i)command not found", 1,
241+
"http://www.legendu.net/misc/blog/spark-issue:-shell-related"
242+
),
235243
(
236244
"(?i)panicked at.*RUST_BACKTRACE", 1,
237245
"http://www.legendu.net/misc/blog/spark-issue:-rust-panic/"
@@ -301,6 +309,10 @@ def _error_priority(line: str) -> tuple[int, str, str]:
301309
"(?i)NSQuotaExceededException", 1,
302310
"http://www.legendu.net/misc/blog/spark-issue:-namespace-quota-is-exceeded"
303311
),
312+
(
313+
r"(?i)RuntimeException: Unsupported literal type class", 1,
314+
" http://www.legendu.net/misc/blog/spark-issue:-RuntimeException:-unsupported-literal-type-class"
315+
),
304316
(
305317
r"(?i)TypeError: withReplacement", 1,
306318
"http://www.legendu.net/misc/blog/spark-issue:-TypeError-withReplacement"

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.69.0"
3+
version = "0.69.1"
44
description = "A utils Python package for data scientists."
55
authors = ["Benjamin Du <[email protected]>"]
66

readme.md

Lines changed: 2 additions & 2 deletions
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
```bash
28-
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.69.0/dsutil-0.69.0-py3-none-any.whl
28+
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.69.1/dsutil-0.69.1-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+.
@@ -35,7 +35,7 @@ pip3 install --user -U git+https://github.com/dclong/dsutil@main
3535
Use one of the following commands if you want to install all components of dsutil.
3636
Available additional components are `cv`, `docker`, `pdf`, `jupyter`, `admin` and `all`.
3737
```bash
38-
pip3 install "dsutil[cv] @ https://github.com/dclong/dsutil/releases/download/v0.69.0/dsutil-0.69.0-py3-none-any.whl"
38+
pip3 install "dsutil[cv] @ https://github.com/dclong/dsutil/releases/download/v0.69.1/dsutil-0.69.1-py3-none-any.whl"
3939
# or
4040
pip3 install --user -U "dsutil[all] @ git+https://github.com/dclong/dsutil@main"
4141
```

0 commit comments

Comments
 (0)