Return-Path: X-Original-To: apmail-ignite-issues-archive@minotaur.apache.org Delivered-To: apmail-ignite-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 18A1D17DA0 for ; Mon, 14 Sep 2015 06:23:46 +0000 (UTC) Received: (qmail 36299 invoked by uid 500); 14 Sep 2015 06:23:46 -0000 Delivered-To: apmail-ignite-issues-archive@ignite.apache.org Received: (qmail 36244 invoked by uid 500); 14 Sep 2015 06:23:46 -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 36232 invoked by uid 99); 14 Sep 2015 06:23:45 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Sep 2015 06:23:45 +0000 Date: Mon, 14 Sep 2015 06:23:45 +0000 (UTC) From: "Vladimir Ozerov (JIRA)" To: issues@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (IGNITE-1451) IgfsClientCacheSelfTest.testCreateConsistencyMultithreaded fails from time to time. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Vladimir Ozerov created IGNITE-1451: --------------------------------------- Summary: IgfsClientCacheSelfTest.testCreateConsistencyMultithreaded fails from time to time. Key: IGNITE-1451 URL: https://issues.apache.org/jira/browse/IGNITE-1451 Project: Ignite Issue Type: Bug Components: hadoop Affects Versions: 1.1.4 Reporter: Vladimir Ozerov Priority: Critical Fix For: ignite-1.5 Fails pretty rare. {code}java.lang.AssertionError: null at org.apache.ignite.internal.processors.igfs.IgfsImpl$15.call(IgfsImpl.java:1211) at org.apache.ignite.internal.processors.igfs.IgfsImpl$15.call(IgfsImpl.java:1148) at org.apache.ignite.internal.processors.igfs.IgfsImpl.safeOp(IgfsImpl.java:2162) at org.apache.ignite.internal.processors.igfs.IgfsImpl.create0(IgfsImpl.java:1148) at org.apache.ignite.internal.processors.igfs.IgfsImpl.create(IgfsImpl.java:1109) at org.apache.ignite.internal.processors.igfs.IgfsAbstractSelfTest$8.run(IgfsAbstractSelfTest.java:1210) at org.apache.ignite.testframework.GridTestUtils$7.call(GridTestUtils.java:949) at org.apache.ignite.testframework.GridTestThread.run(GridTestThread.java:86){code} Assertion refers to the following scenario: {code} IgniteUuid oldId = meta.putIfAbsent(parentId, fileName, info); if (oldId == null) break; if (!overwrite) throw new IgfsPathAlreadyExistsException("Failed to create file (file already exists): " + path); IgfsFileInfo oldInfo = meta.info(oldId); assert oldInfo != null; {code} Old info is null for some reason. Need to investigate whether assertion is valid and who may remove it concurrently. Can it be a cache consistency issue in client mode? -- This message was sent by Atlassian JIRA (v6.3.4#6332)