blob: 351138e00088b68b0246623ed51244455385aed1 [file] [log] [blame]
/*
* 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.io.Serializable;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import org.apache.cassandra.config.DatabaseDescriptor;
import org.apache.cassandra.config.OverrideConfigurationLoader;
import org.apache.cassandra.diag.DiagnosticEvent;
import org.apache.cassandra.diag.DiagnosticEventService;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
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 DiagnosticEventServiceBench
{
private DiagnosticEventService service = DiagnosticEventService.instance();
private DiagnosticEvent event = new DummyEvent();
@Param({ "0", "1", "12" })
private int subscribers = 0;
@Setup
public void setup()
{
OverrideConfigurationLoader.override((config) -> {
config.diagnostic_events_enabled = true;
});
DatabaseDescriptor.daemonInitialization();
service.cleanup();
for (int i = 0; i < subscribers; i++)
{
service.subscribe(DummyEvent.class, new Consumer<DummyEvent>()
{
public void accept(DummyEvent dummyEvent)
{
// No-op
}
});
}
}
@Benchmark
public void publishEvents()
{
service.publish(event);
}
final static class DummyEvent extends DiagnosticEvent
{
public Enum<?> getType()
{
return null;
}
public Object getSource()
{
return null;
}
public Map<String, Serializable> toMap()
{
return null;
}
}
}