Updated Branches:
  refs/heads/trunk 08b2bc596 -> 6f8d73711

rename store -> cfs


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/2c35a5d3
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/2c35a5d3
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/2c35a5d3

Branch: refs/heads/trunk
Commit: 2c35a5d36681caf80de916c0ab6a90061d5bf87e
Parents: 08b2bc5
Author: Jonathan Ellis <jbel...@apache.org>
Authored: Tue Apr 9 21:03:50 2013 -0500
Committer: Jonathan Ellis <jbel...@apache.org>
Committed: Tue Apr 9 21:04:09 2013 -0500

----------------------------------------------------------------------
 .../compaction/LeveledCompactionStrategyTest.java  |   43 +++++++--------
 1 files changed, 20 insertions(+), 23 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/2c35a5d3/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java
----------------------------------------------------------------------
diff --git 
a/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java
 
b/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java
index f4fd960..9760c7e 100644
--- 
a/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java
+++ 
b/test/unit/org/apache/cassandra/db/compaction/LeveledCompactionStrategyTest.java
@@ -49,7 +49,7 @@ import static org.junit.Assert.assertTrue;
 public class LeveledCompactionStrategyTest extends SchemaLoader
 {
     /*
-     * This excercise in particular the code of #4142
+     * This exercises in particular the code of #4142
      */
     @Test
     public void testValidationMultipleSSTablePerLevel() throws Exception
@@ -57,7 +57,7 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
         String ksname = "Keyspace1";
         String cfname = "StandardLeveled";
         Table table = Table.open(ksname);
-        ColumnFamilyStore store = table.getColumnFamilyStore(cfname);
+        ColumnFamilyStore cfs = table.getColumnFamilyStore(cfname);
 
         ByteBuffer value = ByteBuffer.wrap(new byte[100 * 1024]); // 100 KB 
value, make it easy to have multiple files
 
@@ -75,15 +75,14 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
                 rm.add(cfname, ByteBufferUtil.bytes("column" + c), value, 0);
             }
             rm.apply();
-            store.forceBlockingFlush();
+            cfs.forceBlockingFlush();
         }
 
-        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)store.getCompactionStrategy();
-
+        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)cfs.getCompactionStrategy();
         while (strat.getLevelSize(0) > 1)
         {
-            store.forceMajorCompaction();
-            Thread.sleep(200);
+            cfs.forceMajorCompaction();
+            Thread.sleep(100);
         }
         // Checking we're not completely bad at math
         assert strat.getLevelSize(1) > 0;
@@ -94,7 +93,7 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
         int gcBefore = (int)(System.currentTimeMillis()/1000) - 
table.getColumnFamilyStore(cfname).metadata.getGcGraceSeconds();
         ActiveRepairService.TreeRequest req = new 
ActiveRepairService.TreeRequest("1", FBUtilities.getLocalAddress(), range, 
gcBefore, p);
         ActiveRepairService.Validator validator = new 
ActiveRepairService.Validator(req);
-        CompactionManager.instance.submitValidation(store, validator).get();
+        CompactionManager.instance.submitValidation(cfs, validator).get();
     }
 
     @Test
@@ -103,7 +102,7 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
         String ksname = "Keyspace1";
         String cfname = "StandardLeveled";
         Table table = Table.open(ksname);
-        ColumnFamilyStore store = table.getColumnFamilyStore(cfname);
+        ColumnFamilyStore cfs = table.getColumnFamilyStore(cfname);
 
         // make sure we have SSTables in L1
         ByteBuffer value = ByteBuffer.wrap(new byte[100 * 1024]);
@@ -118,11 +117,11 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
                 rm.add(cfname, ByteBufferUtil.bytes("column" + c), value, 0);
             }
             rm.apply();
-            store.forceBlockingFlush();
+            cfs.forceBlockingFlush();
         }
-        store.forceMajorCompaction();
+        cfs.forceMajorCompaction();
 
-        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)store.getCompactionStrategy();
+        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)cfs.getCompactionStrategy();
         assert strat.getLevelSize(1) > 0;
 
         // get LeveledScanner for level 1 sstables
@@ -135,13 +134,14 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
         // scanner.getCurrentPosition should be equal to total bytes of L1 
sstables
         assert scanner.getCurrentPosition() == SSTable.getTotalBytes(sstables);
     }
+
     @Test
     public void testMutateLevel() throws Exception
     {
         String ksname = "Keyspace1";
         String cfname = "StandardLeveled";
         Table table = Table.open(ksname);
-        ColumnFamilyStore store = table.getColumnFamilyStore(cfname);
+        ColumnFamilyStore cfs = table.getColumnFamilyStore(cfname);
 
         ByteBuffer value = ByteBuffer.wrap(new byte[100 * 1024]); // 100 KB 
value, make it easy to have multiple files
 
@@ -159,20 +159,20 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
                 rm.add(cfname, ByteBufferUtil.bytes("column" + c), value, 0);
             }
             rm.apply();
-            store.forceBlockingFlush();
+            cfs.forceBlockingFlush();
         }
 
-        store.disableAutoCompaction();
-        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)store.getCompactionStrategy();
+        cfs.disableAutoCompaction();
+        LeveledCompactionStrategy strat = 
(LeveledCompactionStrategy)cfs.getCompactionStrategy();
         while (strat.getLevelSize(0) > 1)
         {
-            store.forceMajorCompaction();
-            Thread.sleep(200);
+            cfs.forceMajorCompaction();
+            Thread.sleep(100);
         }
 
         Set<SSTableReader> changedSSTables = new HashSet<SSTableReader>();
-        Collection<SSTableReader> sstables = 
store.getDataTracker().getUncompactingSSTables();
-        store.getDataTracker().markCompacting(sstables); // dont touch my 
sstables!
+        Collection<SSTableReader> sstables = 
cfs.getDataTracker().getUncompactingSSTables();
+        cfs.getDataTracker().markCompacting(sstables); // dont touch my 
sstables!
         // change sstable level on all current sstables
         for (SSTableReader s : sstables)
         {
@@ -193,8 +193,5 @@ public class LeveledCompactionStrategyTest extends 
SchemaLoader
         int [] levels = strat.manifest.getAllLevelSize();
         // verify that the manifest has correct amount of sstables
         assertEquals(changedSSTables.size(), levels[6]);
-
     }
-
-
 }

Reply via email to