Return-Path: X-Original-To: apmail-activemq-dev-archive@www.apache.org Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5D0D610ACE for ; Mon, 21 Oct 2013 17:26:45 +0000 (UTC) Received: (qmail 97692 invoked by uid 500); 21 Oct 2013 17:26:44 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 97337 invoked by uid 500); 21 Oct 2013 17:26:39 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Delivered-To: moderator for dev@activemq.apache.org Received: (qmail 11820 invoked by uid 99); 21 Oct 2013 15:19:28 -0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=FREEMAIL_ENVFROM_END_DIGIT,SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of sophiawright43@gmail.com does not designate 216.139.250.139 as permitted sender) Date: Mon, 21 Oct 2013 07:49:31 -0700 (PDT) From: Sophia Wright To: dev@activemq.apache.org Message-ID: <1382366970782-4673047.post@n4.nabble.com> In-Reply-To: <1381853326378-4672828.post@n4.nabble.com> References: <1381853326378-4672828.post@n4.nabble.com> Subject: Re: [jira] [Created] (AMQ-4267) Huge tx-*.tmp file in the kahadb directory MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hey, I am also checking the same issue with my broker. It is creating tx-*.temp file using below source code: activemq-parent-5.8.0-source-release/activemq-parent-5.8.0/activemq-kahadb-store/src/main/java/org/apache/activemq/store/kahadb/disk/page/Transaction.java: protected File getTempFile() { if (txFile == null) { txFile = new File(getPageFile().getDirectory(), IOHelper.toFileSystemSafeName("tx-" + Long.toString(getWriteTransactionId()) + "-" + Long.toString(System.currentTimeMillis()) + ".tmp")); } return txFile; } Waiting for someone from activeMQ dev team to reply ? -- View this message in context: http://activemq.2283324.n4.nabble.com/jira-Created-AMQ-4267-Huge-tx-tmp-file-in-the-kahadb-directory-tp4662065p4673047.html Sent from the ActiveMQ - Dev mailing list archive at Nabble.com.