You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2018/10/21 05:57:00 UTC

[jira] [Commented] (GEODE-5908) DiskStoreID.compare treat different DiskStoreID with same leastSig as equal

    [ https://issues.apache.org/jira/browse/GEODE-5908?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16658089#comment-16658089 ] 

ASF subversion and git services commented on GEODE-5908:
--------------------------------------------------------

Commit e0bc9ce1b3cb6073025e74aaf5247b861dc5747e in geode's branch refs/heads/feature/GEODE-5908 from zhouxh
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=e0bc9ce ]

GEODE-5908: DiskStoreID.compare should compare mostSig, then leastSig


> DiskStoreID.compare treat different DiskStoreID with same leastSig as equal
> ---------------------------------------------------------------------------
>
>                 Key: GEODE-5908
>                 URL: https://issues.apache.org/jira/browse/GEODE-5908
>             Project: Geode
>          Issue Type: Bug
>          Components: core
>            Reporter: xiaojian zhou
>            Assignee: xiaojian zhou
>            Priority: Major
>
> When reviewing code, I found this actually is a bug, and will impact our 
> checkForConflict() to throw CME in following case:
> stamps's DiskStoreID is: 5a42b9ec2e6e45db-87559e428bd3ad67
> tag's DiskStoreID is: a870e3a0126e4b0d-87559e428bd3ad67
> tag is actually bigger than stamp's. But in current code, they will be treated as equal. 
> I wrote a junit test to reproduce this problem.
>  
> The root cause is:
> *diff --git a/geode-core/src/main/java/org/apache/geode/internal/cache/persistence/DiskStoreID.java b/geode-core/src/main/java/org/apache/geode/internal/cache/persistence/DiskStoreID.java*
> *index 601d24899..0392e92dd 100644*
> *--- a/geode-core/src/main/java/org/apache/geode/internal/cache/persistence/DiskStoreID.java*
> *+++ b/geode-core/src/main/java/org/apache/geode/internal/cache/persistence/DiskStoreID.java*
> @@ -80,7 +80,7 @@ public class DiskStoreID implements VersionSource<DiskStoreID>, Serializable {
>        return 1;
>      }
>      int result = Long.signum(mostSig - tagID.mostSig);
> -    if (result != 0) {
> +    if (result == 0) {
>        result = Long.signum(leastSig - tagID.leastSig);
>      }
>      return result;



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)