Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.1 f8454650a -> 0b5ec9ab9
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/0b5ec9ab Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/0b5ec9ab Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/0b5ec9ab Branch: refs/heads/4.x-HBase-1.1 Commit: 0b5ec9ab9ca267f7a575ed5163460a6b8ab43cb8 Parents: f845465 Author: Samarth Jain <[email protected]> Authored: Tue Oct 3 13:54:52 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Tue Oct 3 13:54:52 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/0b5ec9ab/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;
