Merge "Remove raw references to Map in XSQL"
[controller.git] / opendaylight / md-sal / benchmark-data-store / src / main / java / org / opendaylight / controller / md / sal / dom / store / benchmark / InMemoryDataStoreWithSameThreadedExecutorBenchmark.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.md.sal.dom.store.benchmark;
9
10 import java.util.concurrent.ExecutorService;
11 import java.util.concurrent.TimeUnit;
12 import org.opendaylight.controller.md.sal.dom.store.impl.InMemoryDOMDataStore;
13 import org.opendaylight.yangtools.util.concurrent.SpecialExecutors;
14 import org.openjdk.jmh.annotations.Level;
15 import org.openjdk.jmh.annotations.Setup;
16 import org.openjdk.jmh.annotations.TearDown;
17 import org.openjdk.jmh.annotations.Fork;
18 import org.openjdk.jmh.annotations.Scope;
19 import org.openjdk.jmh.annotations.State;
20 import org.openjdk.jmh.annotations.BenchmarkMode;
21 import org.openjdk.jmh.annotations.Mode;
22 import org.openjdk.jmh.annotations.OutputTimeUnit;
23
24 /**
25  * Benchmark for testing of performance of write operations for InMemoryDataStore. The instance
26  * of benchmark creates InMemoryDataStore with Data Change Listener Executor Service as Blocking Bounded Fast Thread Pool
27  * and DOM Store Executor Service as Same Thread Executor.
28  *
29  * @author Lukas Sedlak <lsedlak@cisco.com>
30  */
31 @State(Scope.Thread)
32 @BenchmarkMode(Mode.AverageTime)
33 @OutputTimeUnit(TimeUnit.MILLISECONDS)
34 @Fork(1)
35 public class InMemoryDataStoreWithSameThreadedExecutorBenchmark extends AbstractInMemoryDatastoreWriteTransactionBenchmark {
36
37     private static final int MAX_DATA_CHANGE_EXECUTOR_POOL_SIZE = 20;
38     private static final int MAX_DATA_CHANGE_EXECUTOR_QUEUE_SIZE = 1000;
39
40     @Setup(Level.Trial)
41     public void setUp() throws Exception {
42         final String name = "DS_BENCHMARK";
43         final ExecutorService dataChangeListenerExecutor = SpecialExecutors.newBlockingBoundedFastThreadPool(
44             MAX_DATA_CHANGE_EXECUTOR_POOL_SIZE, MAX_DATA_CHANGE_EXECUTOR_QUEUE_SIZE, name + "-DCL");
45
46         domStore = new InMemoryDOMDataStore("SINGLE_THREADED_DS_BENCHMARK", dataChangeListenerExecutor);
47         schemaContext = BenchmarkModel.createTestContext();
48         domStore.onGlobalContextUpdated(schemaContext);
49         initTestNode();
50     }
51
52     @TearDown
53     public void tearDown() {
54         schemaContext = null;
55         domStore = null;
56     }
57 }