-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle exceptions during node execution more elegantly. (#9585)
* Handle exceptions during node execution more elegantly. * Add changelog entry. * Fix import * Add task documentation. * Change event type for noting thread exceptions.
- Loading branch information
1 parent
e4fe839
commit 6fd0a94
Showing
3 changed files
with
81 additions
and
7 deletions.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Fixes | ||
body: Tighten exception handling to avoid worker thread hangs. | ||
time: 2024-02-16T14:56:32.858967-05:00 | ||
custom: | ||
Author: peterallenwebb | ||
Issue: "9583" |
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 +1,43 @@ | ||
# Task README | ||
|
||
### Task Hierarchy | ||
``` | ||
BaseTask | ||
┣ CleanTask | ||
┣ ConfiguredTask | ||
┃ ┣ GraphRunnableTask | ||
┃ ┃ ┣ CloneTask | ||
┃ ┃ ┣ CompileTask | ||
┃ ┃ ┃ ┣ GenerateTask | ||
┃ ┃ ┃ ┣ RunTask | ||
┃ ┃ ┃ ┃ ┣ BuildTask | ||
┃ ┃ ┃ ┃ ┣ FreshnessTask | ||
┃ ┃ ┃ ┃ ┣ SeedTask | ||
┃ ┃ ┃ ┃ ┣ SnapshotTask | ||
┃ ┃ ┃ ┃ ┗ TestTask | ||
┃ ┃ ┃ ┗ ShowTask | ||
┃ ┃ ┗ ListTask | ||
┃ ┣ RetryTask | ||
┃ ┣ RunOperationTask | ||
┃ ┗ ServeTask | ||
┣ DebugTask | ||
┣ DepsTask | ||
┗ InitTask | ||
``` | ||
|
||
### Runner Hierarchy | ||
``` | ||
BaseRunner | ||
┣ CloneRunner | ||
┣ CompileRunner | ||
┃ ┣ GenericSqlRunner | ||
┃ ┃ ┣ SqlCompileRunner | ||
┃ ┃ ┗ SqlExecuteRunner | ||
┃ ┣ ModelRunner | ||
┃ ┃ ┣ SeedRunner | ||
┃ ┃ ┗ SnapshotRunner | ||
┃ ┣ ShowRunner | ||
┃ ┗ TestRunner | ||
┣ FreshnessRunner | ||
┗ SavedQueryRunner | ||
``` |
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