Merge branch 'cassandra-3.11' into trunk

This commit is contained in:
Jay Zhuang 2018-06-08 10:47:14 -07:00
commit 958e13d166
8 changed files with 162 additions and 52 deletions

View File

@ -248,6 +248,7 @@
3.11.3
* Remove BTree.Builder Recycler to reduce memory usage (CASSANDRA-13929)
* Reduce nodetool GC thread count (CASSANDRA-14475)
* Fix New SASI view creation during Index Redistribution (CASSANDRA-14055)
* Remove string formatting lines from BufferPool hot path (CASSANDRA-14416)

View File

@ -420,8 +420,8 @@
<dependency groupId="org.jboss.byteman" artifactId="byteman-bmunit" version="${byteman.version}"/>
<dependency groupId="org.openjdk.jmh" artifactId="jmh-core" version="1.19"/>
<dependency groupId="org.openjdk.jmh" artifactId="jmh-generator-annprocess" version="1.19"/>
<dependency groupId="org.openjdk.jmh" artifactId="jmh-core" version="1.21"/>
<dependency groupId="org.openjdk.jmh" artifactId="jmh-generator-annprocess" version="1.21"/>
<dependency groupId="org.apache.cassandra" artifactId="cassandra-all" version="${version}" />
<dependency groupId="io.dropwizard.metrics" artifactId="metrics-core" version="3.1.5" />

View File

@ -402,7 +402,7 @@ public class SSTableReversedIterator extends AbstractSSTableIterator
public void reset()
{
built = null;
rowBuilder = BTree.builder(metadata.comparator);
rowBuilder.reuse();
deletionBuilder = MutableDeletionInfo.builder(partitionLevelDeletion, metadata().comparator, false);
}

View File

@ -739,7 +739,7 @@ public class BTreeRow extends AbstractRow
this.clustering = null;
this.primaryKeyLivenessInfo = LivenessInfo.EMPTY;
this.deletion = Deletion.LIVE;
this.cells_ = null;
this.cells_.reuse();
this.hasComplex = false;
}

View File

@ -252,7 +252,10 @@ public class ComplexColumnData extends ColumnData implements Iterable<Cell>
{
this.column = column;
this.complexDeletion = DeletionTime.LIVE; // default if writeComplexDeletion is not called
this.builder = BTree.builder(column.cellComparator());
if (builder == null)
builder = BTree.builder(column.cellComparator());
else
builder.reuse(column.cellComparator());
}
public void addComplexDeletion(DeletionTime complexDeletion)

View File

@ -21,12 +21,12 @@ package org.apache.cassandra.utils.btree;
import java.util.*;
import java.util.function.Consumer;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Function;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterators;
import com.google.common.collect.Ordering;
import io.netty.util.Recycler;
import org.apache.cassandra.utils.ObjectSizes;
import static com.google.common.collect.Iterables.concat;
@ -787,25 +787,14 @@ public class BTree
return 1 + lookupSizeMap(root, childIndex - 1);
}
final static Recycler<Builder> builderRecycler = new Recycler<Builder>()
{
protected Builder newObject(Handle handle)
{
return new Builder(handle);
}
};
public static <V> Builder<V> builder(Comparator<? super V> comparator)
{
Builder<V> builder = builderRecycler.get();
builder.reuse(comparator);
return builder;
return new Builder<>(comparator);
}
public static <V> Builder<V> builder(Comparator<? super V> comparator, int initialCapacity)
{
return builder(comparator);
return new Builder<>(comparator, initialCapacity);
}
public static class Builder<V>
@ -834,12 +823,23 @@ public class BTree
boolean detected = true; // true if we have managed to cheaply ensure sorted (+ filtered, if resolver == null) as we have added
boolean auto = true; // false if the user has promised to enforce the sort order and resolve any duplicates
QuickResolver<V> quickResolver;
final Recycler.Handle recycleHandle;
private Builder(Recycler.Handle handle)
protected Builder(Comparator<? super V> comparator)
{
this(comparator, 16);
}
protected Builder(Comparator<? super V> comparator, int initialCapacity)
{
if (initialCapacity == 0)
initialCapacity = 16;
this.comparator = comparator;
this.values = new Object[initialCapacity];
}
@VisibleForTesting
public Builder()
{
this.recycleHandle = handle;
this.values = new Object[16];
}
@ -851,7 +851,6 @@ public class BTree
this.detected = builder.detected;
this.auto = builder.auto;
this.quickResolver = builder.quickResolver;
this.recycleHandle = null;
}
/**
@ -869,30 +868,17 @@ public class BTree
return this;
}
public void recycle()
public void reuse()
{
if (recycleHandle != null)
{
this.cleanup();
builderRecycler.recycle(this, recycleHandle);
}
reuse(comparator);
}
/**
* Cleans up the Builder instance before recycling it.
*/
private void cleanup()
public void reuse(Comparator<? super V> comparator)
{
quickResolver = null;
this.comparator = comparator;
Arrays.fill(values, null);
count = 0;
detected = true;
auto = true;
}
private void reuse(Comparator<? super V> comparator)
{
this.comparator = comparator;
}
public Builder<V> auto(boolean auto)
@ -1119,16 +1105,9 @@ public class BTree
public Object[] build()
{
try
{
if (auto)
autoEnforce();
return BTree.build(Arrays.asList(values).subList(0, count), UpdateFunction.noOp());
}
finally
{
this.recycle();
}
if (auto)
autoEnforce();
return BTree.build(Arrays.asList(values).subList(0, count), UpdateFunction.noOp());
}
}

View File

@ -0,0 +1,96 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cassandra.test.microbench;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.TimeUnit;
import org.apache.cassandra.utils.btree.BTree;
import org.apache.cassandra.utils.btree.UpdateFunction;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Level;
import org.openjdk.jmh.annotations.Measurement;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.Threads;
import org.openjdk.jmh.annotations.Warmup;
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@Warmup(iterations = 4, time = 1, timeUnit = TimeUnit.SECONDS)
@Measurement(iterations = 8, time = 2, timeUnit = TimeUnit.SECONDS)
@Fork(value = 2)
@Threads(4)
@State(Scope.Benchmark)
public class BTreeBuildBench
{
private List<Integer> data;
@Param({"1", "2", "5", "10", "20", "40", "100", "1000", "10000", "100000"})
int dataSize;
private static final Comparator<Integer> CMP = new Comparator<Integer>()
{
public int compare(Integer o1, Integer o2)
{
return Integer.compare(o1, o2);
}
};
@Setup(Level.Trial)
public void setup()
{
data = new ArrayList<>(dataSize);
for (int i = 0 ; i < dataSize; i++)
data.add(i);
}
private int buildTree(List<Integer> data)
{
Object[] btree = BTree.build(data, UpdateFunction.noOp());
// access the btree to avoid java optimized out this code
return BTree.size(btree);
}
private int treeBuilderAddAll(List<Integer> data)
{
BTree.Builder<Integer> builder = BTree.builder(Comparator.naturalOrder());
Object[] btree = builder.addAll(data).build();
return BTree.size(btree);
}
@Benchmark
public int treeBuilderRecycleAdd()
{
BTree.Builder<Integer> builder = BTree.builder(Comparator.naturalOrder());
builder.auto(false);
for (Integer v : data)
builder.add(v);
Object[] btree = builder.build();
return BTree.size(btree);
}
}

View File

@ -261,6 +261,32 @@ public class BTreeTest
}
}
@Test
public void testBuilderReuse()
{
List<Integer> sorted = seq(20);
BTree.Builder<Integer> builder = BTree.builder(Comparator.naturalOrder());
builder.auto(false);
for (int i : sorted)
builder.add(i);
checkResult(20, builder.build());
builder.reuse();
assertTrue(builder.build() == BTree.empty());
for (int i = 0; i < 12; i++)
builder.add(sorted.get(i));
checkResult(12, builder.build());
builder.auto(true);
builder.reuse(Comparator.reverseOrder());
for (int i = 0; i < 12; i++)
builder.add(sorted.get(i));
checkResult(12, builder.build(), BTree.Dir.DESC);
builder.reuse();
assertTrue(builder.build() == BTree.empty());
}
private static class Accumulator extends Number implements Comparable<Accumulator>
{
final int base;
@ -385,7 +411,12 @@ public class BTreeTest
private static void checkResult(int count, Object[] btree)
{
Iterator<Integer> iter = BTree.slice(btree, CMP, BTree.Dir.ASC);
checkResult(count, btree, BTree.Dir.ASC);
}
private static void checkResult(int count, Object[] btree, BTree.Dir dir)
{
Iterator<Integer> iter = BTree.slice(btree, CMP, dir);
int i = 0;
while (iter.hasNext())
assertEquals(iter.next(), ints[i++]);