Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,6 @@ private void execute(ExecutorService service, WorkflowDag workflowDag) throws Ex
if (curRound < workflowDag.getRounds()) {
new DelayNode(workflowDag.getIntermittentDelayMins()).execute(executionContext, curRound);
}

// After each level, report and flush the metrics
Metrics.flush();
} while (curRound++ < workflowDag.getRounds());
log.info("Finished workloads");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ private Schema getSchemaForWriteConfig(Schema targetSchema) {
}
return newWriteSchema;
} catch (Exception e) {
throw new HoodieException("Failed to fetch schema from table.");
throw new HoodieException("Failed to fetch schema from table ", e);
}
}

Expand Down