Add startup benchmarks
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,6 +6,7 @@
|
||||
.project
|
||||
.settings/
|
||||
.springBeans
|
||||
.apt_generated/
|
||||
target/
|
||||
_site/
|
||||
.idea
|
||||
@@ -18,4 +19,4 @@ _site/
|
||||
.DS_Store
|
||||
/spring-cloud-sleuth-core/nb-configuration.xml
|
||||
/spring-cloud-sleuth-core/nbactions.xml
|
||||
jmh-result.csv
|
||||
jmh-result.csv
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
<properties>
|
||||
<main.basedir>${project.basedir}/..</main.basedir>
|
||||
<jmh.version>1.11.3</jmh.version>
|
||||
<jmh.version>1.16</jmh.version>
|
||||
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
|
||||
<maven-install-plugin.version>2.5.2</maven-install-plugin.version>
|
||||
<sonar.skip>true</sonar.skip>
|
||||
@@ -43,7 +43,7 @@
|
||||
<!-- Import dependency management from Spring Boot -->
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-dependencies</artifactId>
|
||||
<version>1.5.1.RELEASE</version>
|
||||
<version>1.5.4.RELEASE</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
@@ -51,13 +51,6 @@
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.cloud</groupId>
|
||||
<artifactId>spring-cloud-sleuth-dependencies</artifactId>
|
||||
<version>${project.version}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>spring-cloud-sleuth-core</artifactId>
|
||||
@@ -248,7 +241,7 @@
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
<version>1.5.1.RELEASE</version>
|
||||
<version>1.5.4.RELEASE</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
|
||||
@@ -0,0 +1,143 @@
|
||||
/*
|
||||
* Copyright 2016-2017 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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.springframework.cloud.sleuth.benchmarks.jmh.benchmarks;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import org.openjdk.jmh.util.FileUtils;
|
||||
import org.openjdk.jmh.util.Utils;
|
||||
|
||||
import org.springframework.cloud.sleuth.benchmarks.app.SleuthBenchmarkingSpringApp;
|
||||
|
||||
public class ProcessLauncherState {
|
||||
|
||||
private Process started;
|
||||
private List<String> args;
|
||||
private List<String> extraArgs;
|
||||
private File home;
|
||||
private String mainClass = SleuthBenchmarkingSpringApp.class.getName();
|
||||
private int length;
|
||||
|
||||
public ProcessLauncherState(String dir, String... args) {
|
||||
this.args = new ArrayList<>(Arrays.asList(args));
|
||||
int count = 0;
|
||||
this.args.add(count++, System.getProperty("java.home") + "/bin/java");
|
||||
this.args.add(count++, "-Xmx128m");
|
||||
this.args.add(count++, "-cp");
|
||||
this.args.add(count++, getClasspath());
|
||||
this.args.add(count++, "-Djava.security.egd=file:/dev/./urandom");
|
||||
this.args.add(count++, "-XX:TieredStopAtLevel=1"); // zoom
|
||||
if (System.getProperty("bench.args") != null) {
|
||||
this.args.addAll(count++,
|
||||
Arrays.asList(System.getProperty("bench.args").split(" ")));
|
||||
}
|
||||
this.length = args.length;
|
||||
this.home = new File(dir);
|
||||
}
|
||||
|
||||
public void setMainClass(String mainClass) {
|
||||
this.mainClass = mainClass;
|
||||
}
|
||||
|
||||
public void setExtraArgs(String... extraArgs) {
|
||||
this.extraArgs = Arrays.asList(extraArgs);
|
||||
}
|
||||
|
||||
private String getClasspath() {
|
||||
StringBuilder builder = new StringBuilder();
|
||||
for (URL url : ((URLClassLoader) getClass().getClassLoader()).getURLs()) {
|
||||
if (builder.length() > 0) {
|
||||
builder.append(File.pathSeparator);
|
||||
}
|
||||
builder.append(url.toString());
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
public void after() throws Exception {
|
||||
if (started != null && started.isAlive()) {
|
||||
System.err.println(
|
||||
"Stopped " + mainClass + ": " + started.destroyForcibly().waitFor());
|
||||
}
|
||||
}
|
||||
|
||||
public Collection<String> capture(String... additional) throws Exception {
|
||||
List<String> args = new ArrayList<>(this.args);
|
||||
args.addAll(Arrays.asList(additional));
|
||||
ProcessBuilder builder = new ProcessBuilder(args);
|
||||
builder.directory(home);
|
||||
builder.redirectErrorStream(true);
|
||||
customize(builder);
|
||||
if (!"false".equals(System.getProperty("debug", "false"))) {
|
||||
System.err.println("Running: " + Utils.join(args, " "));
|
||||
}
|
||||
started = builder.start();
|
||||
return FileUtils.readAllLines(started.getInputStream());
|
||||
}
|
||||
|
||||
public void run() throws Exception {
|
||||
List<String> args = new ArrayList<>(this.args);
|
||||
args.add(args.size() - this.length, this.mainClass);
|
||||
if (extraArgs!=null) {
|
||||
args.addAll(extraArgs);
|
||||
}
|
||||
ProcessBuilder builder = new ProcessBuilder(args);
|
||||
builder.directory(home);
|
||||
builder.redirectErrorStream(true);
|
||||
customize(builder);
|
||||
if (!"false".equals(System.getProperty("debug", "false"))) {
|
||||
System.err.println("Running: " + Utils.join(args, " "));
|
||||
}
|
||||
started = builder.start();
|
||||
monitor();
|
||||
}
|
||||
|
||||
protected void customize(ProcessBuilder builder) {
|
||||
}
|
||||
|
||||
protected void monitor() throws IOException {
|
||||
System.out.println(output(started.getInputStream(), "Started"));
|
||||
}
|
||||
|
||||
protected static String output(InputStream inputStream, String marker)
|
||||
throws IOException {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
BufferedReader br = null;
|
||||
br = new BufferedReader(new InputStreamReader(inputStream));
|
||||
String line = null;
|
||||
while ((line = br.readLine()) != null && !line.contains(marker)) {
|
||||
sb.append(line + System.getProperty("line.separator"));
|
||||
}
|
||||
if (line != null) {
|
||||
sb.append(line + System.getProperty("line.separator"));
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
public File getHome() {
|
||||
return home;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Copyright 2016-2017 the original author or authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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.springframework.cloud.sleuth.benchmarks.jmh.benchmarks;
|
||||
|
||||
import org.openjdk.jmh.annotations.Benchmark;
|
||||
import org.openjdk.jmh.annotations.BenchmarkMode;
|
||||
import org.openjdk.jmh.annotations.Fork;
|
||||
import org.openjdk.jmh.annotations.Level;
|
||||
import org.openjdk.jmh.annotations.Measurement;
|
||||
import org.openjdk.jmh.annotations.Mode;
|
||||
import org.openjdk.jmh.annotations.Scope;
|
||||
import org.openjdk.jmh.annotations.State;
|
||||
import org.openjdk.jmh.annotations.TearDown;
|
||||
import org.openjdk.jmh.annotations.Warmup;
|
||||
|
||||
@Measurement(iterations = 5)
|
||||
@Warmup(iterations = 1)
|
||||
@Fork(value = 2, warmups = 0)
|
||||
@BenchmarkMode(Mode.AverageTime)
|
||||
public class StartupBenchmark {
|
||||
|
||||
@Benchmark
|
||||
public void withAnnotations(ApplicationState state) throws Exception {
|
||||
state.run();
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
public void withoutAnnotations(ApplicationState state) throws Exception {
|
||||
state.setExtraArgs("--spring.sleuth.annotation.enabled=false");
|
||||
state.run();
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
public void withoutAsync(ApplicationState state) throws Exception {
|
||||
state.setExtraArgs("--spring.sleuth.async.enabled=false", "--spring.sleuth.annotation.enabled=false");
|
||||
state.run();
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
public void withoutScheduled(ApplicationState state) throws Exception {
|
||||
state.setExtraArgs("--spring.sleuth.scheduled.enabled=false", "--spring.sleuth.async.enabled=false", "--spring.sleuth.annotation.enabled=false");
|
||||
state.run();
|
||||
}
|
||||
|
||||
@Benchmark
|
||||
public void withoutWeb(ApplicationState state) throws Exception {
|
||||
state.setExtraArgs("--spring.sleuth.web.enabled=false", "--spring.sleuth.scheduled.enabled=false", "--spring.sleuth.async.enabled=false", "--spring.sleuth.annotation.enabled=false");
|
||||
state.run();
|
||||
}
|
||||
|
||||
@State(Scope.Benchmark)
|
||||
public static class ApplicationState extends ProcessLauncherState {
|
||||
public ApplicationState() {
|
||||
super("target", "--server.port=0");
|
||||
}
|
||||
|
||||
@TearDown(Level.Iteration)
|
||||
public void stop() throws Exception {
|
||||
super.after();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user