Hisoka-X commented on code in PR #9733:
URL: https://github.com/apache/seatunnel/pull/9733#discussion_r2287447987
##########
seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/rest/service/JobInfoService.java:
##########
@@ -93,7 +94,7 @@ public JsonArray getJobsByStateJson(String state) {
SeaTunnelServer seaTunnelServer = getSeaTunnelServer(true);
- return finishedJob.values().stream()
+ return finishedJob.values().parallelStream()
Review Comment:
Do we really need to use parallelStream? Will there be a significant
performance impact?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]