You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Monani Mihir (JIRA)" <ji...@apache.org> on 2018/12/22 12:29:00 UTC

[jira] [Created] (PHOENIX-5080) Index becomes Active during Partial Index Rebuilder if Index Failure happens

Monani Mihir created PHOENIX-5080:
-------------------------------------

             Summary: Index becomes Active during Partial Index Rebuilder if Index Failure happens
                 Key: PHOENIX-5080
                 URL: https://issues.apache.org/jira/browse/PHOENIX-5080
             Project: Phoenix
          Issue Type: Bug
    Affects Versions: 4.14.1
            Reporter: Monani Mihir


After PHOENIX-4130 and PHOENIX-4600 , If there is Index failure during Partial Index Rebuild, Rebuilder will try again to write Index updates. If it succeeds then it will transition Index from INACTIVE to ACTIVE, even before Rebuilder finishes.

Here is where it goes wrong, I think :- 
{code:java}
PhoenixIndexFailurePolicy.java :- 
public static void doBatchWithRetries(MutateCommand mutateCommand,
            IndexWriteException iwe, PhoenixConnection connection, ReadOnlyProps config) throws IOException {
....
    while (canRetryMore(numRetry++, maxTries, canRetryUntil)) {
    ...
        handleIndexWriteSuccessFromClient(iwe, connection);
    ...
    }
}
....
private static void handleIndexWriteSuccessFromClient(IndexWriteException indexWriteException, PhoenixConnection conn) {
        handleExceptionFromClient(indexWriteException, conn, PIndexState.ACTIVE);
}

{code}
 

 

 



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