You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@phoenix.apache.org by "Hudson (Jira)" <ji...@apache.org> on 2019/12/04 17:24:00 UTC

[jira] [Commented] (PHOENIX-5597) No read repair happens when scans filter rows based on a covered column

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

Hudson commented on PHOENIX-5597:
---------------------------------

FAILURE: Integrated in Jenkins build PreCommit-PHOENIX-Build #3167 (See [https://builds.apache.org/job/PreCommit-PHOENIX-Build/3167/])
PHOENIX-5597 No read repair happens when scans filter rows based on a (kadir: rev 29844e4745b15d7aee20f622245aba6cc4cf70ec)
* (edit) phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexCheckerIT.java
* (edit) phoenix-core/src/main/java/org/apache/phoenix/execute/MutationState.java
* (edit) phoenix-core/src/main/java/org/apache/phoenix/hbase/index/IndexRegionObserver.java
* (edit) phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java
* (edit) phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java


> No read repair happens when scans filter rows based on a covered column
> -----------------------------------------------------------------------
>
>                 Key: PHOENIX-5597
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-5597
>             Project: Phoenix
>          Issue Type: Bug
>    Affects Versions: 5.0.0, 4.14.3
>            Reporter: Kadir OZDEMIR
>            Assignee: Kadir OZDEMIR
>            Priority: Blocker
>             Fix For: 4.15.0, 5.1.0
>
>         Attachments: PHOENIX-5597.4.x-HBase-1.5.001.patch, PHOENIX-5597.4.x-HBase-1.5.002.patch, PHOENIX-5597.master.001.patch
>
>          Time Spent: 1h 10m
>  Remaining Estimate: 0h
>
> Assume that the schema for a data and index table is as follows:
> create table datatable (id varchar(10) not null primary key, val1 varchar(10), val2 varchar(10), val3 varchar(10))
> create index indextable on datatable (val1) include (val2, val3)
> A query that filters rows on a covered column does not trigger the index read repair for unverified index rows. For example, the following query will not trigger the read repair
> select val2, val3 from datatable WHERE val1 = 'ab' and val2 = 'abc'
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)