Repository: phoenix Updated Branches: refs/heads/master 119f86e0c -> 54e2bbf83
PHOENIX-4272 Dial down number of threads and repeats in ConcurrentMutationsIT Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/54e2bbf8 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/54e2bbf8 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/54e2bbf8 Branch: refs/heads/master Commit: 54e2bbf83ba3493dc70eb3d68965453475da2f73 Parents: 119f86e Author: Samarth Jain <[email protected]> Authored: Tue Oct 3 13:54:11 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Tue Oct 3 13:54:11 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/54e2bbf8/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java index e5f22da..d1f30c6 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/ConcurrentMutationsIT.java @@ -215,9 +215,9 @@ public class ConcurrentMutationsIT extends ParallelStatsDisabledIT { } @Test - @Repeat(10) + @Repeat(5) public void testConcurrentUpserts() throws Exception { - int nThreads = 8; + int nThreads = 4; final int batchSize = 200; final int nRows = 51; final int nIndexValues = 23;
