Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0B688200B65 for ; Wed, 3 Aug 2016 01:46:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 09EED160AA8; Tue, 2 Aug 2016 23:46:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 52F34160A76 for ; Wed, 3 Aug 2016 01:46:21 +0200 (CEST) Received: (qmail 33724 invoked by uid 500); 2 Aug 2016 23:46:20 -0000 Mailing-List: contact issues-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list issues@ignite.apache.org Received: (qmail 33713 invoked by uid 99); 2 Aug 2016 23:46:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Aug 2016 23:46:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 6C2392C0033 for ; Tue, 2 Aug 2016 23:46:20 +0000 (UTC) Date: Tue, 2 Aug 2016 23:46:20 +0000 (UTC) From: "Denis Magda (JIRA)" To: issues@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (IGNITE-3386) Reentrant lock is lost when lock owner leaves topology MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Tue, 02 Aug 2016 23:46:22 -0000 [ https://issues.apache.org/jira/browse/IGNITE-3386?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Denis Magda updated IGNITE-3386: -------------------------------- Attachment: (was: LockIssue.java) > Reentrant lock is lost when lock owner leaves topology > ------------------------------------------------------ > > Key: IGNITE-3386 > URL: https://issues.apache.org/jira/browse/IGNITE-3386 > Project: Ignite > Issue Type: Bug > Affects Versions: 1.6 > Reporter: Denis Magda > Assignee: Vladisav Jelisavcic > Priority: Critical > Labels: important > Fix For: 1.7 > > > If to create a lock with the following configuration > {{IgniteLock lock = ignite.reentrantLock("lock", true, true, true);}} > and perform the following steps below > 1) run the first node using {{LockIssue}} that is attached; > 2) run the second node using {{LockIssue}}; > 3) stop the first node. > you will get the following exception on the second node side (the lock information will be lost and the second node won't recreate it ignore "create=true" flag): > {code} > SEVERE: Failed to compare and set: o.a.i.i.processors.datastructures.GridCacheLockImpl$Sync$1@67aea87d > class org.apache.ignite.IgniteCheckedException: Failed to find reentrant lock with given name: test > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync$1.call(GridCacheLockImpl.java:525) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync$1.call(GridCacheLockImpl.java:518) > at org.apache.ignite.internal.processors.cache.GridCacheUtils$23.call(GridCacheUtils.java:1648) > at org.apache.ignite.internal.processors.cache.GridCacheUtils.outTx(GridCacheUtils.java:891) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync.compareAndSetGlobalState(GridCacheLockImpl.java:517) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync.tryAcquire(GridCacheLockImpl.java:400) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync.tryAcquire(GridCacheLockImpl.java:437) > at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireQueued(AbstractQueuedSynchronizer.java:861) > at java.util.concurrent.locks.AbstractQueuedSynchronizer.acquire(AbstractQueuedSynchronizer.java:1197) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl$Sync.lock(GridCacheLockImpl.java:432) > at org.apache.ignite.internal.processors.datastructures.GridCacheLockImpl.lock(GridCacheLockImpl.java:1201) > at com.bfm.amc.loaders.server.StartIgniteServer.main(StartIgniteServer.java:15) > {code} > However the issue is not 100% reproduced but it should be clear from the logs what happens. -- This message was sent by Atlassian JIRA (v6.3.4#6332)