Skip to content

Commit

Permalink
more benchmarks + filter
Browse files Browse the repository at this point in the history
fix test

Modify test to access random filtered rows

formatting

fix test

remove main method

Add newline

Add newline
  • Loading branch information
nishantmonu51 committed Jun 4, 2015
1 parent 35e2fde commit 37873eb
Show file tree
Hide file tree
Showing 2 changed files with 177 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets 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 io.druid.benchmark;

import com.google.common.primitives.Ints;
import io.druid.segment.data.CompressedObjectStrategy;
import io.druid.segment.data.CompressedVSizeIntsIndexedSupplier;
import io.druid.segment.data.IndexedInts;
import io.druid.segment.data.VSizeIndexedInts;
import io.druid.segment.data.WritableSupplier;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
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.infra.Blackhole;

import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.channels.WritableByteChannel;
import java.util.BitSet;
import java.util.Random;
import java.util.concurrent.TimeUnit;

@State(Scope.Benchmark)
public class CompressedIndexedIntsBenchmark
{
private IndexedInts uncompressed;
private IndexedInts compressed;

@Param({"1", "2", "3", "4"})
int bytes;

// Number of rows to read, the test will read random rows
@Param({"1000", "10000", "100000", "1000000", "1000000"})
int filteredRowCount;

private BitSet filter;

@Setup
public void setup() throws IOException
{
Random rand = new Random(0);
int[] vals = new int[0x100000];
final int bound = 1 << bytes;
for (int i = 0; i < vals.length; ++i) {
vals[i] = rand.nextInt(bound);
}
final ByteBuffer bufferCompressed = serialize(
CompressedVSizeIntsIndexedSupplier.fromList(
Ints.asList(vals),
bound - 1,
CompressedVSizeIntsIndexedSupplier.maxIntsInBufferForBytes(bytes),
ByteOrder.nativeOrder(), CompressedObjectStrategy.CompressionStrategy.LZ4
)
);
this.compressed = CompressedVSizeIntsIndexedSupplier.fromByteBuffer(
bufferCompressed, ByteOrder.nativeOrder()
).get();

final ByteBuffer bufferUncompressed = serialize(
new VSizeIndexedInts.VSizeIndexedIntsSupplier(
VSizeIndexedInts.fromArray(
vals
)
)
);
this.uncompressed = VSizeIndexedInts.readFromByteBuffer(bufferUncompressed);

filter = new BitSet();
for (int i = 0; i < filteredRowCount; i++) {
int rowToAccess = rand.nextInt(vals.length);
// Skip already selected rows if any
while (filter.get(rowToAccess)) {
rowToAccess = (rowToAccess+1) % vals.length;
}
filter.set(rowToAccess);
}

}

private static ByteBuffer serialize(WritableSupplier<IndexedInts> writableSupplier) throws IOException
{
final ByteBuffer buffer = ByteBuffer.allocateDirect((int) writableSupplier.getSerializedSize());

WritableByteChannel channel = new WritableByteChannel()
{
@Override
public int write(ByteBuffer src) throws IOException
{
int size = src.remaining();
buffer.put(src);
return size;
}

@Override
public boolean isOpen()
{
return true;
}

@Override
public void close() throws IOException
{
}
};

writableSupplier.writeToChannel(channel);
buffer.rewind();
return buffer;
}

@Benchmark
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void uncompressed(Blackhole blackhole)
{
for (int i = filter.nextSetBit(0); i >= 0; i = filter.nextSetBit(i + 1)) {
blackhole.consume(uncompressed.get(i));
}
}

@Benchmark
@BenchmarkMode(Mode.AverageTime)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void compressed(Blackhole blackhole)
{
for (int i = filter.nextSetBit(0); i >= 0; i = filter.nextSetBit(i + 1)) {
blackhole.consume(compressed.get(i));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.channels.WritableByteChannel;
import java.util.BitSet;
import java.util.List;
import java.util.Random;
import java.util.concurrent.TimeUnit;
Expand All @@ -60,18 +61,24 @@ public class CompressedVSizeIndexedBenchmark
@Param({"1", "2", "3", "4"})
int bytes;

@Param({"5", "10"})
@Param({"5", "10", "100", "1000"})
int valuesPerRowBound;

// Number of rows to read, the test will read random rows
@Param({"1000", "10000", "100000", "1000000", "1000000"})
int filteredRowCount;

private BitSet filter;

@Setup
public void setup() throws IOException
{
Random rand = new Random(0);
List<int[]> rows = Lists.newArrayList();
final int bound = 1 << bytes;
for (int i = 0; i < 0x10000; i++) {
int[] row = new int[rand.nextInt(valuesPerRowBound)];
int count = rand.nextInt(valuesPerRowBound);
for (int i = 0; i < 0x100000; i++) {
int count = rand.nextInt(valuesPerRowBound) + 1;
int[] row = new int[rand.nextInt(count)];
for (int j = 0; j < row.length; j++) {
row[j] = rand.nextInt(bound);
}
Expand Down Expand Up @@ -115,6 +122,16 @@ public VSizeIndexedInts apply(int[] input)
).asWritableSupplier()
);
this.uncompressed = VSizeIndexed.readFromByteBuffer(bufferUncompressed);

filter = new BitSet();
for (int i = 0; i < filteredRowCount; i++) {
int rowToAccess = rand.nextInt(rows.size());
// Skip already selected rows if any
while (filter.get(rowToAccess)) {
rowToAccess = (rowToAccess+1) % rows.size();
}
filter.set(rowToAccess);
}
}

private static ByteBuffer serialize(WritableSupplier<IndexedMultivalue<IndexedInts>> writableSupplier)
Expand Down Expand Up @@ -154,8 +171,7 @@ public void close() throws IOException
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void uncompressed(Blackhole blackhole)
{
final int size = uncompressed.size();
for (int i = 0; i < size; ++i) {
for (int i = filter.nextSetBit(0); i >= 0; i = filter.nextSetBit(i + 1)) {
IndexedInts row = uncompressed.get(i);
for (int j = 0; j < row.size(); j++) {
blackhole.consume(row.get(j));
Expand All @@ -168,22 +184,11 @@ public void uncompressed(Blackhole blackhole)
@OutputTimeUnit(TimeUnit.MICROSECONDS)
public void compressed(Blackhole blackhole)
{
final int size = compressed.size();
for (int i = 0; i < size; ++i) {
for (int i = filter.nextSetBit(0); i >= 0; i = filter.nextSetBit(i + 1)) {
IndexedInts row = compressed.get(i);
for (int j = 0; j < row.size(); j++) {
blackhole.consume(row.get(j));
}
}
}

public static void main(String... args) throws IOException, RunnerException
{
Options opt = new OptionsBuilder()
.include(CompressedVSizeIndexedBenchmark.class.getSimpleName())
.forks(1)
.build();

new Runner(opt).run();
}
}
}

0 comments on commit 37873eb

Please sign in to comment.