From dev-return-73051-archive-asf-public=cust-asf.ponee.io@zookeeper.apache.org Wed Sep 12 20:51:31 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 295B4180630 for ; Wed, 12 Sep 2018 20:51:30 +0200 (CEST) Received: (qmail 56399 invoked by uid 500); 12 Sep 2018 18:51:30 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 56377 invoked by uid 99); 12 Sep 2018 18:51:29 -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; Wed, 12 Sep 2018 18:51:29 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 01F8FDFC65; Wed, 12 Sep 2018 18:51:29 +0000 (UTC) From: lvfangmin To: dev@zookeeper.apache.org Reply-To: dev@zookeeper.apache.org Message-ID: Subject: [GitHub] zookeeper pull request #622: [ZOOKEEPER-3145] Potential watch missing issue ... Content-Type: text/plain Date: Wed, 12 Sep 2018 18:51:29 +0000 (UTC) GitHub user lvfangmin opened a pull request: https://github.com/apache/zookeeper/pull/622 [ZOOKEEPER-3145] Potential watch missing issue due to stale pzxid when replaying CloseSession txn with fuzzy snapshot Currently, the CloseSession txn is not idempotent, executing the CloseSession twice won't get the same result, which could cause pzxid inconsistent, which in turn cause watches missing. For more details, please check the description in ZOOKEEPER-3145. You can merge this pull request into a Git repository by running: $ git pull https://github.com/lvfangmin/zookeeper ZOOKEEPER-3145 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/zookeeper/pull/622.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 #622 ---- commit 9576e25ae1ecc09b8d17a144b9aa82604f03fdd0 Author: Fangmin Lyu Date: 2018-09-12T18:30:05Z Add CloseSessionTxn to track the nodes being deleted when close session ---- ---