Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 57bdb344a -> 587b79b52
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/587b79b5 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/587b79b5 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/587b79b5 Branch: refs/heads/4.x-HBase-0.98 Commit: 587b79b52c72b847ea77b1286f844d91ffbe8610 Parents: 57bdb34 Author: Samarth Jain <[email protected]> Authored: Tue Oct 3 13:54:32 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Tue Oct 3 13:54:32 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/587b79b5/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;
