You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The verifyGlueRCA Check 2 filtered /aws-glue/jobs/error for error
indicators (?Exception ?Error ?FATAL ...), but every Glue job's stderr
contains benign JVM startup output with "Error" in classpath entries
(e.g., -XX:OnOutOfMemoryError) and Glue's internal AnalyzerLogHelper
messages. This caused every SUCCEEDED job to be reclassified as FAILED.
Check 1 (GlueExceptionAnalysisJobFailed in the RCA log stream) is
Glue's purpose-built mechanism for detecting false successes and is
sufficient. Post-run validation provides the application-level safety
net for data quality issues.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.7.1] - 2026-03-08
9
+
10
+
### Fixed
11
+
12
+
-**Glue RCA false-positive failure classification (Check 2 removed)**: The `verifyGlueRCA` Check 2 filter pattern (`?Exception ?Error ?FATAL ...`) matched benign JVM startup output in Glue's stderr (`/aws-glue/jobs/error`), causing every SUCCEEDED Glue job to be reclassified as FAILED. Classpath entries like `-XX:OnOutOfMemoryError` and Glue's internal `AnalyzerLogHelper` messages contain "Error" as substrings, producing a 100% false positive rate. Removed Check 2 entirely — Check 1 (GlueExceptionAnalysisJobFailed in the RCA log stream) is Glue's purpose-built mechanism for detecting false successes and is sufficient. Post-run validation provides the application-level safety net for data quality issues.
0 commit comments