You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by GitBox <gi...@apache.org> on 2022/08/10 11:23:14 UTC

[GitHub] [inlong] healchow commented on a diff in pull request #5453: [INLONG-5452][Manager] Change creating resource after group approval to be asynchronous

healchow commented on code in PR #5453:
URL: https://github.com/apache/inlong/pull/5453#discussion_r942333449


##########
inlong-manager/manager-service/src/main/java/org/apache/inlong/manager/service/listener/group/apply/ApproveApplyProcessListener.java:
##########
@@ -45,6 +51,15 @@
 @Component
 public class ApproveApplyProcessListener implements ProcessEventListener {
 
+    private final ExecutorService executorService = new ThreadPoolExecutor(
+            20,
+            40,
+            0L,
+            TimeUnit.MILLISECONDS,
+            new LinkedBlockingQueue<>(),
+            new ThreadFactoryBuilder().setNameFormat("inlong-stream-process-%s").build(),

Review Comment:
   This should be `inlong-group-process`.



-- 
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: commits-unsubscribe@inlong.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org