Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 465D4D32C for ; Wed, 5 Sep 2012 09:18:27 +0000 (UTC) Received: (qmail 32726 invoked by uid 500); 5 Sep 2012 09:18:27 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 32659 invoked by uid 500); 5 Sep 2012 09:18:27 -0000 Mailing-List: contact commits-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 commits@camel.apache.org Received: (qmail 32651 invoked by uid 99); 5 Sep 2012 09:18:26 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Sep 2012 09:18:26 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Sep 2012 09:18:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D456723888E4 for ; Wed, 5 Sep 2012 09:17:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r831193 - in /websites/production/camel/content: cache/main.pageCache threading-model.html Date: Wed, 05 Sep 2012 09:17:40 -0000 To: commits@camel.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120905091740.D456723888E4@eris.apache.org> Author: buildbot Date: Wed Sep 5 09:17:40 2012 New Revision: 831193 Log: Production update by buildbot for camel Modified: websites/production/camel/content/cache/main.pageCache websites/production/camel/content/threading-model.html Modified: websites/production/camel/content/cache/main.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/camel/content/threading-model.html ============================================================================== --- websites/production/camel/content/threading-model.html (original) +++ websites/production/camel/content/threading-model.html Wed Sep 5 09:17:40 2012 @@ -172,7 +172,10 @@ See the org.apache.camel.spi.Executo

The ExecutorServiceManager has APIs for shutting down thread pools graceful and aggressively. Its encourage to use this API for creating and shutting down thread pools.

-

From Camel 2.10.2 onwards Camel the graceful shutdown(executorService) method from ExecutorServiceManager will shutdown graceful at first, until a timeout value is hit. After that it shutdown aggressively. The timeout value is by default 5000 millis. You can configure a custom value on the ExecutorServiceManager if needed.

+

From Camel 2.10.2 onwards Camel the graceful shutdown(executorService) method from ExecutorServiceManager will shutdown graceful at first, until a timeout value is hit. After that it shutdown aggressively, again using the timeout value to wait for the operation to complete. This means you can wait at most 2 x timeout for shutting down the thread pool.
+The timeout value is by default 30000 millis. You can configure a custom value on the ExecutorServiceManager if needed.

+ +

During shutdown Camel will log every 5th second at INFO level progress of shutting down the thread pool. For example in case a shutdown takes a while, then there is activity in the logs.

See Also