Repository: phoenix Updated Branches: refs/heads/master ba0a67f82 -> d87931c02
PHOENIX-4039 Increase default number of RPC retries for our index rebuild task Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/d87931c0 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/d87931c0 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/d87931c0 Branch: refs/heads/master Commit: d87931c02bcfabfb3442b11afdaf9614ed9d17de Parents: ba0a67f Author: Samarth Jain <[email protected]> Authored: Tue Jul 18 22:16:50 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Tue Jul 18 22:16:50 2017 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/phoenix/query/QueryServicesOptions.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/d87931c0/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java index a59d5e6..8ffb0af 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/query/QueryServicesOptions.java @@ -186,7 +186,7 @@ public class QueryServicesOptions { public static final long DEFAULT_INDEX_REBUILD_QUERY_TIMEOUT = 30000 * 60; // 30 mins public static final long DEFAULT_INDEX_REBUILD_RPC_TIMEOUT = 30000 * 60; // 30 mins public static final long DEFAULT_INDEX_REBUILD_CLIENT_SCANNER_TIMEOUT = 30000 * 60; // 30 mins - public static final int DEFAULT_INDEX_REBUILD_RPC_RETRIES_COUNTER = 0; // no retries at rpc level + public static final int DEFAULT_INDEX_REBUILD_RPC_RETRIES_COUNTER = 1; // 1 retry at rpc level public static final int DEFAULT_INDEX_REBUILD_DISABLE_TIMESTAMP_THRESHOLD = 30000 * 60; // 30 mins /**
