yihua commented on code in PR #9395:
URL: https://github.com/apache/hudi/pull/9395#discussion_r1328024397
##########
hudi-common/src/main/java/org/apache/hudi/common/engine/HoodieEngineContext.java:
##########
@@ -105,4 +105,12 @@ public abstract <I, K, V> List<V> reduceByKey(
public abstract void cancelJob(String jobId);
public abstract void cancelAllJobs();
+
+ public <T> Stream<T> stream(List<T> data, Integer parallelism) {
+ return stream(stream(data.stream(), data.size()), parallelism);
+ }
+
+ public <T> Stream<T> stream(Stream<T> data, Integer parallelism) {
+ return parallelism == null || parallelism >
Runtime.getRuntime().availableProcessors() ? data : data.parallel();
Review Comment:
Got it. @stream2000 do you still have concerns?
--
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]