Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 99068200CF0 for ; Thu, 7 Sep 2017 10:23:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 97B3B1609DB; Thu, 7 Sep 2017 08:23:06 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B9A6D1609BF for ; Thu, 7 Sep 2017 10:23:05 +0200 (CEST) Received: (qmail 61528 invoked by uid 500); 7 Sep 2017 08:23:04 -0000 Mailing-List: contact issues-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list issues@camel.apache.org Received: (qmail 61519 invoked by uid 99); 7 Sep 2017 08:23:04 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2017 08:23:04 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 3460C1A6EBC for ; Thu, 7 Sep 2017 08:23:04 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.201 X-Spam-Level: X-Spam-Status: No, score=-99.201 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id GBw-aTOTNQBE for ; Thu, 7 Sep 2017 08:23:02 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 9DF2E5F6C8 for ; Thu, 7 Sep 2017 08:23:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id C7EE7E087D for ; Thu, 7 Sep 2017 08:23:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 71ECE2414B for ; Thu, 7 Sep 2017 08:23:00 +0000 (UTC) Date: Thu, 7 Sep 2017 08:23:00 +0000 (UTC) From: "Nazar Vishka (JIRA)" To: issues@camel.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (CAMEL-11750) Camel route with multicast (parallel) generate huge CPU load MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 07 Sep 2017 08:23:06 -0000 [ https://issues.apache.org/jira/browse/CAMEL-11750?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16156670#comment-16156670 ] Nazar Vishka commented on CAMEL-11750: -------------------------------------- I propose minor fix: {code}public long getDelay(TimeUnit unit) { return unit.convert(id - index.get(), TimeUnit.SECONDS); }{code} It does not broke other logic but adds 1 second delat for a task that is 2nd in the queue, 2 sec for 3rd task, 3sec for 4th task, etc. On my test project it helps to decrease CPU load: !https://www.screencast.com/t/wz6BFkI37! > Camel route with multicast (parallel) generate huge CPU load > ------------------------------------------------------------ > > Key: CAMEL-11750 > URL: https://issues.apache.org/jira/browse/CAMEL-11750 > Project: Camel > Issue Type: Bug > Components: camel-core > Reporter: Nazar Vishka > Priority: Critical > > I've created simple [Spring Camel Route application|https://github.com/leofromgroza/camel-long-term-route] that can be used for issue reproducing. Here we have very simple route: > {code} > public void configure() throws Exception { > from("direct:start").routeId("start") > .multicast().parallelProcessing() > .to("direct:very-long-task", "direct:long-task") > .end(); > from("direct:long-task").routeId("long-task") > .log("Started long-task") > .process(exchange -> Thread.sleep(5000)) > .log("Finished long-task") > .end(); > from("direct:very-long-task").routeId("very-long-task") > .log("Started very-long-task") > .process(exchange -> Thread.sleep(35000)) > .log("Finished very-long-task") > .end(); > }{code} > From our main route 'start' we are starting in parallel two sub-routes: 'long-task' and 'very-long-task'. They are just doing something for some period of time and do not generate any load to the system. > But I found that when one task finished earlier than other one, route start to make a huge CPU load. Here you can see a CPU usage during executiong of Camel route that was mentioned earlier (after finishing of 'long-task' usage of CPU uncreased from 0 to 12.5%): > !https://content.screencast.com/users/NazarV/folders/Jing/media/830268f0-d184-4c57-adb1-b782ea63fa6d/2017-09-06_1241.png! > Screenshot was made when I was running route on my Windows PC with 4 physical CPU cores + 4 HT. On Unix systems we found that after end of 'long-task' it used 100% of one core till the end of work. > One more interesting thing that i've found is that the main load on the system was generated by the thread MulticastProcessor-AggregateTask that was spending a lot of time in the method java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject#awaitNanos that was called from java.util.concurrent.DelayQueue#poll(long, java.util.concurrent.TimeUnit): > {code}"Camel (camel-1) thread #2 - MulticastProcessor-AggregateTask" #29 daemon prio=5 os_prio=0 tid=0x00000000215e3000 nid=0x7a0 runnable [0x0000000022eaf000] > java.lang.Thread.State: RUNNABLE > at java.lang.Thread.isInterrupted(Native Method) > at java.lang.Thread.interrupted(Thread.java:944) > at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.checkInterruptWhileWaiting(AbstractQueuedSynchronizer.java:2002) > at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2079) > at java.util.concurrent.DelayQueue.poll(DelayQueue.java:273) > at org.apache.camel.util.concurrent.SubmitOrderedCompletionService.poll(SubmitOrderedCompletionService.java:127) > at org.apache.camel.processor.MulticastProcessor$AggregateOnTheFlyTask.aggregateOnTheFly(MulticastProcessor.java:463) > at org.apache.camel.processor.MulticastProcessor$AggregateOnTheFlyTask.run(MulticastProcessor.java:418) > at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) > at java.util.concurrent.FutureTask.run(FutureTask.java:266) > at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) > at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) > at java.lang.Thread.run(Thread.java:745){code} > In DelayQueue#poll(long, java.util.concurrent.TimeUnit) we have a piece of code: > {code}E first = q.peek(); > if (first == null) { > ... > } else { > long delay = first.getDelay(NANOSECONDS); > ... > long timeLeft = available.awaitNanos(delay) {code} > During debugging I found that E first is object of class [org.apache.camel.util.concurrent.SubmitOrderedCompletionService.SubmitOrderFutureTask|https://github.com/apache/camel/blob/camel-2.19.2/camel-core/src/main/java/org/apache/camel/util/concurrent/SubmitOrderedCompletionService.java] and it's very interesting [getDelay(TimeUnit) method|https://github.com/apache/camel/blob/camel-2.19.2/camel-core/src/main/java/org/apache/camel/util/concurrent/SubmitOrderedCompletionService.java#L64] always return 1. I thing that is a source of current issue: > {code} public long getDelay(TimeUnit unit) { > // if the answer is 0 then this task is ready to be taken > return id - index.get(); > }{code} > So when delay is 1, AggregateTask thread is not sleeping at all and generates a huge CPU load all the time when it is waiting for the end of the last task. > I think that [getDelay(TimeUnit) method|https://github.com/apache/camel/blob/camel-2.19.2/camel-core/src/main/java/org/apache/camel/util/concurrent/SubmitOrderedCompletionService.java#L64] should be somehow re-implemented. -- This message was sent by Atlassian JIRA (v6.4.14#64029)