-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Protect against concurrent reads/writes to Context keyvalues #5739
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
/* | ||
* 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 io.micrometer.observation.Observation; | ||
import io.micrometer.observation.ObservationRegistry; | ||
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; | ||
|
||
@State(Scope.Benchmark) | ||
@OutputTimeUnit(TimeUnit.NANOSECONDS) | ||
@Threads(4) | ||
public class ObservationKeyValuesBenchmark { | ||
|
||
private static final KeyValues KEY_VALUES = KeyValues.of("key1", "value1", "key2", "value2", "key3", "value3", | ||
"key4", "value4", "key5", "value5"); | ||
|
||
private final ObservationRegistry registry = ObservationRegistry.create(); | ||
|
||
private final Observation.Context context = new TestContext(); | ||
|
||
private final Observation observation = Observation.createNotStarted("jmh", () -> context, registry); | ||
|
||
@Benchmark | ||
@Group("contended") | ||
@GroupThreads(1) | ||
public Observation contendedWrite() { | ||
return write(); | ||
} | ||
|
||
@Benchmark | ||
@Group("contended") | ||
@GroupThreads(1) | ||
public KeyValues contendedRead() { | ||
return read(); | ||
} | ||
|
||
@Benchmark | ||
@Threads(1) | ||
public Observation uncontendedWrite() { | ||
return write(); | ||
} | ||
|
||
@Benchmark | ||
@Threads(1) | ||
public KeyValues uncontendedRead() { | ||
return read(); | ||
} | ||
|
||
private Observation write() { | ||
return observation.lowCardinalityKeyValues(KEY_VALUES); | ||
} | ||
|
||
private KeyValues read() { | ||
return observation.getContext().getLowCardinalityKeyValues(); | ||
} | ||
|
||
public static void main(String[] args) throws RunnerException { | ||
Options options = new OptionsBuilder().include(ObservationKeyValuesBenchmark.class.getSimpleName()) | ||
.warmupIterations(3) | ||
.measurementIterations(5) | ||
.mode(Mode.SampleTime) | ||
.forks(1) | ||
.build(); | ||
|
||
new Runner(options).run(); | ||
} | ||
|
||
static class TestContext extends Observation.Context { | ||
|
||
} | ||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ plugins { | |
dependencies { | ||
implementation project(":micrometer-core") | ||
// implementation("io.micrometer:micrometer-core:1.12.4") | ||
implementation project(":micrometer-test") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This dependency was causing a weird ClassNotFoundException when running jcstress from IntelliJ, but it is only here for the |
||
implementation project(":micrometer-registry-prometheus") | ||
runtimeOnly(libs.logbackLatest) | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* 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.concurrencytests; | ||
|
||
import io.micrometer.common.KeyValue; | ||
import io.micrometer.observation.Observation; | ||
import org.openjdk.jcstress.annotations.Actor; | ||
import org.openjdk.jcstress.annotations.JCStressTest; | ||
import org.openjdk.jcstress.annotations.Outcome; | ||
import org.openjdk.jcstress.annotations.State; | ||
import org.openjdk.jcstress.infra.results.LL_Result; | ||
|
||
import java.util.UUID; | ||
|
||
import static org.openjdk.jcstress.annotations.Expect.ACCEPTABLE; | ||
import static org.openjdk.jcstress.annotations.Expect.FORBIDDEN; | ||
|
||
public class ObservationContextConcurrencyTest { | ||
|
||
@JCStressTest | ||
@State | ||
@Outcome(id = "No exception, No exception", expect = ACCEPTABLE) | ||
@Outcome(expect = FORBIDDEN) | ||
public static class ConsistentKeyValues { | ||
|
||
private final Observation.Context context = new TestContext(); | ||
|
||
private final String uuid = UUID.randomUUID().toString(); | ||
|
||
@Actor | ||
public void read(LL_Result r) { | ||
try { | ||
context.getHighCardinalityKeyValues(); | ||
r.r1 = "No exception"; | ||
} | ||
catch (Exception e) { | ||
r.r1 = e.getClass(); | ||
} | ||
} | ||
|
||
@Actor | ||
public void write(LL_Result r) { | ||
try { | ||
context.addHighCardinalityKeyValue(KeyValue.of(uuid, uuid)); | ||
r.r2 = "No exception"; | ||
} | ||
catch (Exception e) { | ||
r.r2 = e.getClass(); | ||
} | ||
} | ||
|
||
} | ||
|
||
static class TestContext extends Observation.Context { | ||
|
||
} | ||
|
||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
contended
group will share the threads configured for the benchmark in proportion to the specified@GroupThreads
. So in this current setup there will be two execution groups forcontended
, each with 2 threads, one thread reading and one thread writing concurrently.