[ https://issues.apache.org/jira/browse/ARTEMIS-2408?focusedWorklogId=278391&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-278391 ]
ASF GitHub Bot logged work on ARTEMIS-2408: ------------------------------------------- Author: ASF GitHub Bot Created on: 17/Jul/19 18:28 Start Date: 17/Jul/19 18:28 Worklog Time Spent: 10m Work Description: clebertsuconic commented on pull request #2759: ARTEMIS-2408 Too many opened FDs after server stops URL: https://github.com/apache/activemq-artemis/pull/2759#discussion_r304579778 ########## File path: artemis-server/src/main/java/org/apache/activemq/artemis/core/remoting/server/impl/RemotingServiceImpl.java ########## @@ -407,15 +408,28 @@ public void stop(final boolean criticalError) throws Exception { conn.disconnect(criticalError); } + Map<Acceptor, Future<?>> acceptorFutures = new HashMap<>(); for (Acceptor acceptor : acceptors.values()) { try { - acceptor.stop(); + acceptorFutures.put(acceptor, acceptor.asyncStop()); } catch (Throwable t) { ActiveMQServerLogger.LOGGER.errorStoppingAcceptor(acceptor.getName()); } } + long acceptorTimeout = System.currentTimeMillis() + 3000; + for (Map.Entry<Acceptor, Future<?>> acceptorFuture : acceptorFutures.entrySet()) { + if (acceptorFuture.getValue() != null) { + try { + acceptorFuture.getValue().get(Math.max(0, acceptorTimeout - System.currentTimeMillis()), TimeUnit.MILLISECONDS); Review comment: I'm not concerned as there is no semantic change if a timeout is applied. I'm actually glad the test caught this situation right on the testsuite. It would been a regression if it wasn't for that test. I will make a manual test before merging it. Although this test is automating how I used to test this manually (by adding and removing a network card through ifconfig) ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 278391) Time Spent: 6h (was: 5h 50m) > Too many opened FDs after server stops > -------------------------------------- > > Key: ARTEMIS-2408 > URL: https://issues.apache.org/jira/browse/ARTEMIS-2408 > Project: ActiveMQ Artemis > Issue Type: Bug > Reporter: Domenico Bruscino > Priority: Major > Time Spent: 6h > Remaining Estimate: 0h > > The number of opened FDs after stop the server on the testsuite is much > higher than the number before the server is started, when default netty > configuration is used. > > -- This message was sent by Atlassian JIRA (v7.6.14#76016)