From dev-return-2101-apmail-tephra-dev-archive=tephra.apache.org@tephra.incubator.apache.org Thu Apr 26 00:12:19 2018 Return-Path: X-Original-To: apmail-tephra-dev-archive@minotaur.apache.org Delivered-To: apmail-tephra-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B522C1832B for ; Thu, 26 Apr 2018 00:12:19 +0000 (UTC) Received: (qmail 72469 invoked by uid 500); 26 Apr 2018 00:12:19 -0000 Delivered-To: apmail-tephra-dev-archive@tephra.apache.org Received: (qmail 72425 invoked by uid 500); 26 Apr 2018 00:12:19 -0000 Mailing-List: contact dev-help@tephra.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tephra.incubator.apache.org Delivered-To: mailing list dev@tephra.incubator.apache.org Received: (qmail 72410 invoked by uid 99); 26 Apr 2018 00:12:18 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Apr 2018 00:12:18 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 76D68C00B8 for ; Thu, 26 Apr 2018 00:12:18 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.01 X-Spam-Level: X-Spam-Status: No, score=-4.01 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id JOKa-6y4s62j for ; Thu, 26 Apr 2018 00:12:17 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id 0429C5F67B for ; Thu, 26 Apr 2018 00:12:16 +0000 (UTC) Received: (qmail 72382 invoked by uid 99); 26 Apr 2018 00:12:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Apr 2018 00:12:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4D5B2DFB31; Thu, 26 Apr 2018 00:12:16 +0000 (UTC) From: poornachandra To: dev@tephra.incubator.apache.org Reply-To: dev@tephra.incubator.apache.org Message-ID: Subject: [GitHub] incubator-tephra pull request #72: TEPHRA-270 TEPHRA-271 Transaction state c... Content-Type: text/plain Date: Thu, 26 Apr 2018 00:12:16 +0000 (UTC) GitHub user poornachandra opened a pull request: https://github.com/apache/incubator-tephra/pull/72 TEPHRA-270 TEPHRA-271 Transaction state cache bug fixes JIRA: https://issues.apache.org/jira/browse/TEPHRA-270 https://issues.apache.org/jira/browse/TEPHRA-271 This PR contains a couple of bug fixes for the Transaction state cache to fix race conditions and deadlocks. You can merge this pull request into a Git repository by running: $ git pull https://github.com/poornachandra/incubator-tephra feature/tx-state-cache Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-tephra/pull/72.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #72 ---- commit 73feed9a6a93d032c2e19e4e7d77fa4eb2065fcf Author: poorna Date: 2018-04-25T23:51:56Z TEPHRA-270 Do not refresh the transaction state during co-processor startup to prevent deadlocks commit d42b282ec03c8e0d07bbb2a714961f2dd9b7641d Author: poorna Date: 2018-04-25T23:58:22Z TEPHRA-271 Wait for the refresh thread to stop during shutdown to prevent race conditions ---- ---