You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/02/14 19:19:39 UTC

svn commit: r1446290 - /accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java

Author: ecn
Date: Thu Feb 14 18:19:39 2013
New Revision: 1446290

URL: http://svn.apache.org/r1446290
Log:
ACCUMULO-1062 2000 threads is a little too much for a unit test

Modified:
    accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java

Modified: accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java
URL: http://svn.apache.org/viewvc/accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java?rev=1446290&r1=1446289&r2=1446290&view=diff
==============================================================================
--- accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java (original)
+++ accumulo/trunk/server/src/test/java/org/apache/accumulo/server/tabletserver/InMemoryMapTest.java Thu Feb 14 18:19:39 2013
@@ -309,7 +309,7 @@ public class InMemoryMapTest extends Tes
   @Test
   public void testParallelWriteSpeed() throws InterruptedException {
     List<Double> timings = new ArrayList<Double>();
-    for (int threads: new int[]{1, 2, 16, 64, 256, 2048} ) {
+    for (int threads: new int[]{1, 2, 16, 64, 256} ) {
       final long now = System.currentTimeMillis();
       final long counts[] = new long[threads];
       final InMemoryMap imm = new InMemoryMap(false, "/tmp");