Return-Path: X-Original-To: apmail-ignite-dev-archive@minotaur.apache.org Delivered-To: apmail-ignite-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 6D2F918F20 for ; Wed, 9 Dec 2015 13:09:11 +0000 (UTC) Received: (qmail 18064 invoked by uid 500); 9 Dec 2015 13:09:11 -0000 Delivered-To: apmail-ignite-dev-archive@ignite.apache.org Received: (qmail 18012 invoked by uid 500); 9 Dec 2015 13:09:11 -0000 Mailing-List: contact dev-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 dev@ignite.apache.org Received: (qmail 17929 invoked by uid 99); 9 Dec 2015 13:09:11 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Dec 2015 13:09:11 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id E9FF22C03DA for ; Wed, 9 Dec 2015 13:09:10 +0000 (UTC) Date: Wed, 9 Dec 2015 13:09:10 +0000 (UTC) From: "Sergey Kozlov (JIRA)" To: dev@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (IGNITE-2118) CacheBinaryAutoStore Example output depend on number of runs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Sergey Kozlov created IGNITE-2118: ------------------------------------- Summary: CacheBinaryAutoStore Example output depend on number of runs Key: IGNITE-2118 URL: https://issues.apache.org/jira/browse/IGNITE-2118 Project: Ignite Issue Type: Bug Affects Versions: 1.5 Reporter: Sergey Kozlov Assignee: Yakov Zhdanov Fix For: 1.5 1. Start H2 server 2. Start ignite node 3. Start CacheBinaryAutoStore a few times. Each time "Loaded cache entries" incremented by one. {noformat} >>> Cache auto store example started. Read value: null Overwrote old value: null Read value: Person [firstName=Isaac, lastName=Newton, id=5980051555829975513, orgId=null, resume=null, salary=0.0] Read value after commit: Person [firstName=Isaac, lastName=Newton, id=5980051555829975513, orgId=null, resume=null, salary=0.0] >>> ------------------------------------------ >>> Load data to cache from DB with custom SQL... Loaded cache entries: 3 >>> Load ALL data to cache from DB... Loaded cache entries: 7 {noformat} {noformat} >>> Cache auto store example started. Read value: null Overwrote old value: null Read value: Person [firstName=Isaac, lastName=Newton, id=5677607654468819582, orgId=null, resume=null, salary=0.0] Read value after commit: Person [firstName=Isaac, lastName=Newton, id=5677607654468819582, orgId=null, resume=null, salary=0.0] >>> ------------------------------------------ >>> Load data to cache from DB with custom SQL... Loaded cache entries: 3 >>> Load ALL data to cache from DB... Loaded cache entries: 8 {noformat} {noformat} >>> Cache auto store example started. Read value: null Overwrote old value: null Read value: Person [firstName=Isaac, lastName=Newton, id=5702655301354862064, orgId=null, resume=null, salary=0.0] Read value after commit: Person [firstName=Isaac, lastName=Newton, id=5702655301354862064, orgId=null, resume=null, salary=0.0] >>> ------------------------------------------ >>> Load data to cache from DB with custom SQL... Loaded cache entries: 3 >>> Load ALL data to cache from DB... Loaded cache entries: 9 {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)