-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply performance improvement from Tags to KeyValues
- Loading branch information
Showing
3 changed files
with
280 additions
and
30 deletions.
There are no files selected for viewing
102 changes: 102 additions & 0 deletions
102
benchmarks/benchmarks-core/src/jmh/java/io/micrometer/benchmark/core/KeyValuesBenchmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
* Copyright 2024 VMware, Inc. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.micrometer.benchmark.core; | ||
|
||
import io.micrometer.common.KeyValue; | ||
import io.micrometer.common.KeyValues; | ||
import org.openjdk.jmh.annotations.*; | ||
import org.openjdk.jmh.runner.Runner; | ||
import org.openjdk.jmh.runner.RunnerException; | ||
import org.openjdk.jmh.runner.options.Options; | ||
import org.openjdk.jmh.runner.options.OptionsBuilder; | ||
|
||
import java.util.concurrent.TimeUnit; | ||
|
||
@Fork(1) | ||
@Measurement(iterations = 2) | ||
@Warmup(iterations = 2) | ||
@BenchmarkMode(Mode.AverageTime) | ||
@OutputTimeUnit(TimeUnit.NANOSECONDS) | ||
public class KeyValuesBenchmark { | ||
|
||
static final KeyValue[] orderedKeyValuesSet10 = new KeyValue[] { KeyValue.of("key0", "value"), | ||
KeyValue.of("key1", "value"), KeyValue.of("key2", "value"), KeyValue.of("key3", "value"), | ||
KeyValue.of("key4", "value"), KeyValue.of("key5", "value"), KeyValue.of("key6", "value"), | ||
KeyValue.of("key7", "value"), KeyValue.of("key8", "value"), KeyValue.of("key9", "value") }; | ||
|
||
static final KeyValue[] orderedKeyValuesSet4 = new KeyValue[] { KeyValue.of("key0", "value"), | ||
KeyValue.of("key1", "value"), KeyValue.of("key2", "value"), KeyValue.of("key3", "value"), }; | ||
|
||
static final KeyValue[] orderedKeyValuesSet2 = new KeyValue[] { KeyValue.of("key0", "value"), | ||
KeyValue.of("key1", "value"), }; | ||
|
||
static final KeyValue[] unorderedKeyValuesSet10 = new KeyValue[] { KeyValue.of("key1", "value"), | ||
KeyValue.of("key2", "value"), KeyValue.of("key3", "value"), KeyValue.of("key4", "value"), | ||
KeyValue.of("key5", "value"), KeyValue.of("key6", "value"), KeyValue.of("key7", "value"), | ||
KeyValue.of("key8", "value"), KeyValue.of("key9", "value"), KeyValue.of("key0", "value") }; | ||
|
||
static final KeyValue[] unorderedKeyValuesSet4 = new KeyValue[] { KeyValue.of("key1", "value"), | ||
KeyValue.of("key2", "value"), KeyValue.of("key3", "value"), KeyValue.of("key0", "value"), }; | ||
|
||
static final KeyValue[] unorderedKeyValuesSet2 = new KeyValue[] { KeyValue.of("key1", "value"), | ||
KeyValue.of("key0", "value") }; | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfOrderedKeyValuesSet10() { | ||
return KeyValues.of(orderedKeyValuesSet10); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfOrderedKeyValuesSet4() { | ||
return KeyValues.of(orderedKeyValuesSet4); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfOrderedKeyValuesSet2() { | ||
return KeyValues.of(orderedKeyValuesSet2); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfUnorderedKeyValuesSet10() { | ||
return KeyValues.of(unorderedKeyValuesSet10); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfUnorderedKeyValuesSet4() { | ||
return KeyValues.of(unorderedKeyValuesSet4); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues KeyValuesOfUnorderedKeyValuesSet2() { | ||
return KeyValues.of(unorderedKeyValuesSet2); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues of() { | ||
return KeyValues.of("key", "value", "key2", "value2", "key3", "value3", "key4", "value4", "key5", "value5"); | ||
} | ||
|
||
@Benchmark | ||
public KeyValues dotAnd() { | ||
return KeyValues.of("key", "value").and("key2", "value2", "key3", "value3", "key4", "value4", "key5", "value5"); | ||
} | ||
|
||
public static void main(String[] args) throws RunnerException { | ||
Options opt = new OptionsBuilder().include(KeyValuesBenchmark.class.getSimpleName()).build(); | ||
new Runner(opt).run(); | ||
} | ||
|
||
} |
52 changes: 52 additions & 0 deletions
52
...ks/benchmarks-core/src/jmh/java/io/micrometer/benchmark/core/KeyValuesMergeBenchmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright 2024 VMware, Inc. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.micrometer.benchmark.core; | ||
|
||
import io.micrometer.common.KeyValues; | ||
import org.openjdk.jmh.annotations.*; | ||
import org.openjdk.jmh.runner.Runner; | ||
import org.openjdk.jmh.runner.RunnerException; | ||
import org.openjdk.jmh.runner.options.Options; | ||
import org.openjdk.jmh.runner.options.OptionsBuilder; | ||
|
||
import java.util.concurrent.TimeUnit; | ||
|
||
@Fork(1) | ||
@Measurement(iterations = 2) | ||
@Warmup(iterations = 2) | ||
@BenchmarkMode(Mode.AverageTime) | ||
@OutputTimeUnit(TimeUnit.NANOSECONDS) | ||
@State(Scope.Thread) | ||
public class KeyValuesMergeBenchmark { | ||
|
||
static final KeyValues left = KeyValues.of("key", "value", "key2", "value2", "key6", "value6", "key7", "value7", | ||
"key8", "value8", "keyA", "valueA", "keyC", "valueC", "keyE", "valueE", "keyF", "valueF", "keyG", "valueG", | ||
"keyG", "valueG", "keyG", "valueG", "keyH", "valueH"); | ||
|
||
static final KeyValues right = KeyValues.of("key", "value", "key1", "value1", "key2", "value2", "key3", "value3", | ||
"key4", "value4", "key5", "value5", "keyA", "valueA", "keyB", "valueB", "keyD", "valueD"); | ||
|
||
@Benchmark | ||
public KeyValues mergeKeyValues() { | ||
return left.and(right); | ||
} | ||
|
||
public static void main(String[] args) throws RunnerException { | ||
Options opt = new OptionsBuilder().include(KeyValuesMergeBenchmark.class.getSimpleName()).build(); | ||
new Runner(opt).run(); | ||
} | ||
|
||
} |
Oops, something went wrong.