简体   繁体   English

Java - 如何在外部ExecutorService上调用shutdown时,使ExecutorService在另一个ExecutorService中运行而不关闭?

[英]Java - How to make an ExecutorService running inside another ExecutorService not to shutdown when shutdown is invoked on the outer ExecutorService?

I have a Executor service running inside another executor service to send emails. 我在另一个执行程序服务中运行Executor服务来发送电子邮件。 If I call shutdown on the outer executor, it is waiting for the inner executor service to shutdown which is drastically affecting the response time. 如果我在外部执行程序上调用shutdown,它正在等待内部执行程序服务关闭,这会严重影响响应时间。

private final ExecutorService blastExecutor = Executors.newFixedThreadPool(20);
private final ExecutorService mailExecutor  = Executors.newFixedThreadPool(2);

public void findDealers() {

          blastExecutor.execute(new Runnable() {
                        public void run() {
                            try {
                                identifyDealers();
                            } catch (Exception e) {

                            }
                        }
                    });

        blastExecutor.shutdown();
        try {
            blastExecutor.awaitTermination(30, TimeUnit.MINUTES);

        } catch (InterruptedException e) {

        }
        logger.info("Completed sending request blasts.");
}

public void identifyDealers() {

           mailExecutor.execute(new Runnable() {
                        public void run() {
                            try {
                                sendEmail();
                            } catch (Exception e) {

                            }
                        }
                    });
}

Here, at blastExecutor.shutdown() it invokes shutdown of mailExecutor as well(?) blastExecutor.shutdown()blastExecutor.shutdown()调用mailExecutor关闭(?)

This is just a sample code and there are lot of business happening inside identifyDealers() method. 这只是一个示例代码,并且在identifyDealers()方法中发生了很多业务。 How can I make sendEmail asynchronous and make blastExecutor.shutdown() not to wait for shutdown of mailExecutor ? 如何使sendEmail异步并使blastExecutor.shutdown()不等待mailExecutor关闭?

Your assumption seems to be wrong, shutdown() should only act on the outer executor. 你的假设似乎是错误的, shutdown()应该只对外部执行器起作用。 It does not shut down any other executors. 它不会关闭任何其他执行程序。

Here's a small example based on your code: 这是一个基于您的代码的小例子:

ExecutorService e1 = Executors.newFixedThreadPool(20);
final ExecutorService e2 = Executors.newFixedThreadPool(2);

e1.execute(new Runnable() {
    public void run() {
        System.out.println("e1 started");

        e2.execute(new Runnable() {
            public void run() {
                System.out.println("e2 started");
                try {
                    Thread.sleep(2000);
                } catch (InterruptedException e) {
                }
                System.out.println("e2 completed");
            }
        });

        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
        }

    }
});

e1.shutdown();
System.out.println("e1 shut down signal send");

e1.awaitTermination(30, TimeUnit.MINUTES);
System.out.println("e1 terminated");

e2.awaitTermination(30, TimeUnit.MINUTES);
System.out.println("e2 terminated");

The application won't terminate, it blocks on e2.awaitTermination and in the output it also shows that e2 never got a shut down signal: 应用程序不会终止,它会在e2.awaitTerminatione2.awaitTermination ,在输出中它也会显示e2从未收到关闭信号:

e1 started
e1 shut down signal send
e2 started
e1 terminated
e2 completed

If mailExecutor really does shut down, I think there is something else going on that is not shown in your code. 如果mailExecutor确实关闭了,我认为还有其他的东西在你的代码中没有显示。 As the basic structure of your code looks now, you are running a single task and immediately shut down the executer, which could mean you may don't even need the blastExecutor . 由于您的代码的基本结构现在看起来,您正在运行单个任务并立即关闭执行程序,这可能意味着您可能甚至不需要blastExecutor

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM