File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
integration/spark/app/src/main/java/io/openlineage/spark/agent/lifecycle Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,9 @@ public ExecutionContext createRddExecutionContext(int jobId) {
8585 public Optional <ExecutionContext > createSparkSQLExecutionContext (long executionId ) {
8686 QueryExecution queryExecution = SQLExecution .getQueryExecution (executionId );
8787 if (queryExecution == null ) {
88- log .error ("Query execution is null: can't emit event for executionId {}" , executionId );
88+ // We changed this log level from error to warn so it doesn't mix with other MR and Itapu error logs.
89+ // We should investigate if we can act upon this issue. If not, we should change this to debug
90+ log .warn ("Query execution is null: can't emit event for executionId {}" , executionId );
8991 return Optional .empty ();
9092 }
9193 SparkSession sparkSession = queryExecution .sparkSession ();
You can’t perform that action at this time.
0 commit comments