Return-Path: X-Original-To: apmail-activemq-users-archive@www.apache.org Delivered-To: apmail-activemq-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 263521072C for ; Tue, 8 Oct 2013 12:19:20 +0000 (UTC) Received: (qmail 63990 invoked by uid 500); 8 Oct 2013 12:19:19 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 63769 invoked by uid 500); 8 Oct 2013 12:19:18 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 63760 invoked by uid 99); 8 Oct 2013 12:19:16 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Oct 2013 12:19:16 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of minfrin@sharp.fm designates 174.143.229.200 as permitted sender) Received: from [174.143.229.200] (HELO chandler.sharp.fm) (174.143.229.200) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Oct 2013 12:19:09 +0000 Received: from chandler.sharp.fm (localhost [127.0.0.1]) by chandler.sharp.fm (Postfix) with ESMTP id 954328480DA for ; Tue, 8 Oct 2013 07:18:48 -0500 (CDT) Received: from [10.100.35.146] (83-244-153-144.cust-83.exponential-e.net [83.244.153.144]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (Client did not present a certificate) (Authenticated sender: minfrin@sharp.fm) by chandler.sharp.fm (Postfix) with ESMTP id 24BC98480D7 for ; Tue, 8 Oct 2013 07:18:47 -0500 (CDT) From: Graham Leggett Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Tuning activemq for reliability, not performance Message-Id: Date: Tue, 8 Oct 2013 14:18:45 +0200 To: "users@activemq.apache.org" Mime-Version: 1.0 (Mac OS X Mail 6.6 \(1510\)) X-Mailer: Apple Mail (2.1510) X-Virus-Scanned: ClamAV using ClamSMTP X-Virus-Checked: Checked by ClamAV on apache.org Hi all, We have a system that does heavy message processing where we have very = few (tens, hundreds) of messages that take minutes to process each. What we also have is periodic activemq v5.8.0 instability that causes = the "java service wrapper" to proactively send a "kill -9" signal to the = activemq process. This reverts the queue state right back to where the = queue was started, and long since processed messages suddenly come back, = triggering a very expensive message re-processing exercise. What we want to do is ensure that all memory caching in activemq is = switched off completely, and all changes are written through to disk at = all times. We don't care about the performance implications, reliability = is our number one requirement. If activemq leaks, crashes, we want the = most recent state practical preserved. Is this possible? Regards, Graham --