Skip to content
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

Add "functional" benchmark #9908

Draft
wants to merge 2 commits into
base: 4.1.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'io.micronaut.build.internal.convention-base'
id "me.champeau.jmh" version "0.7.1"
id "me.champeau.jmh"
}

dependencies {
Expand Down
3 changes: 3 additions & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ dependencies {
implementation "org.tomlj:tomlj:1.1.0"
implementation "me.champeau.gradle:japicmp-gradle-plugin:0.4.2"
implementation "org.graalvm.buildtools.native:org.graalvm.buildtools.native.gradle.plugin:0.9.26"
implementation "io.micronaut.gradle:micronaut-gradle-plugin:4.1.1"
implementation "me.champeau.jmh:jmh-gradle-plugin:0.7.1"
implementation "com.github.johnrengelman:shadow:8.1.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import io.micronaut.build.internal.ext.DefaultMicronautCoreExtension

plugins {
id "io.micronaut.build.internal.common"
id "io.micronaut.build.internal.substitutions"
}

micronautBuild {
Expand Down Expand Up @@ -62,20 +63,6 @@ tasks.withType(Jar).configureEach {
preserveFileTimestamps = false
}

configurations.all {
resolutionStrategy.dependencySubstitution {
rootProject.subprojects.each {
if (!it.name.startsWith('test-')) {
if (it.name.contains('bom')) {
substitute platform(module("io.micronaut:micronaut-${it.name}")) using platform(project(":${it.name}")) because "we want to test with what we're building"
} else {
substitute module("io.micronaut:micronaut-${it.name}") using project(":${it.name}") because "we want to test with what we're building"
}
}
}
}
}

dependencies {
annotationProcessor libs.bundles.asm
annotationProcessor(libs.micronaut.docs.map {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
import me.champeau.jmh.JmhBytecodeGeneratorTask

plugins {
id("io.micronaut.application")
id("io.micronaut.aot")
id("com.github.johnrengelman.shadow")
id("me.champeau.jmh")
id("io.micronaut.build.internal.substitutions")
}

repositories {
mavenCentral()
}

application {
mainClass = "io.micronaut.http.bench.Application"
}

micronaut {
runtime("netty")
testRuntime("junit5")
processing {
incremental(true)
annotations("io.micronaut.http.bench.*")
}

aot {
version = libs.versions.micronaut.aot
optimizeServiceLoading = true
convertYamlToJava = false
precomputeOperations = true
cacheEnvironment = true
optimizeClassLoading = true
deduceEnvironment = true
optimizeNetty = true
replaceLogbackXml = true
}
}

dependencies {
annotationProcessor(libs.micronaut.serde.processor)
implementation(libs.micronaut.serde.jackson)
runtimeOnly(libs.logback.classic)
}

jmh {
includeTests = false
}

def optimizedJmhJar = tasks.register("optimizedJmhJar", Jar) {
group = "jmh"
description = "Generates a JMH benchmark jar using the Micronaut AOT optimized jar"
archiveAppendix = 'jmh-all'
manifest {
attributes 'Main-Class': 'org.openjdk.jmh.Main'
}
from(configurations.jmh.incoming.artifacts.resolvedArtifacts.map {
it.collect { artifact -> zipTree(artifact.file )}
})
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
from(tasks.named("optimizedJitJarAll", Jar).map { zipTree(it.archiveFile.get().asFile)})
from(sourceSets.jmh.output)
def bytecodeGen = tasks.named("jmhRunBytecodeGenerator", JmhBytecodeGeneratorTask)
from(tasks.named("jmhCompileGeneratedClasses", JavaCompile))
from(bytecodeGen.map {
it.generatedResourcesDir
})
// For build reproducibility
preserveFileTimestamps = false
reproducibleFileOrder = true
}

graalvmNative {
toolchainDetection = false
metadataRepository {
enabled = true
}
binaries {
all {
resources.autodetect()
}
}
binaries {
jmhAot {
classpath.from(optimizedJmhJar)
mainClass = 'org.openjdk.jmh.Main'
// We're using a fat jar, so we copy the configuration from the main binary in order
// to include configuration for the embedded jars
configurationFileDirectories.from(graalvmNative.binaries.main.configurationFileDirectories)
}
}
}

tasks.withType(me.champeau.jmh.JMHTask).configureEach {
doFirst {
throw new UnsupportedOperationException(
"""
Running benchmarks directly from Gradle is not supported.
You can run java -jar ${it.jarArchive.get().asFile}
""".stripIndent()
)
}
}

tasks.named("nativeJmhAotCompile") {
doFirst {
println graalvmNative.binaries.jmhAot.configurationFileDirectories.files
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* This plugin applies dependency substitutions so that modules
* which are built locally are preferred over their binary versions.
*/

configurations.all {
resolutionStrategy.dependencySubstitution {
rootProject.subprojects.each {
if (!it.name.startsWith('test-')) {
if (it.name.contains('bom')) {
substitute platform(module("io.micronaut:micronaut-${it.name}")) using platform(project(":${it.name}")) because "we want to test with what we're building"
} else {
substitute module("io.micronaut:micronaut-${it.name}") using project(":${it.name}") because "we want to test with what we're building"
}
}
}
}
}
12 changes: 12 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,12 @@ junit-platform="1.9.3"
logback = "1.4.11"
logbook-netty = "2.16.0"
log4j = "2.20.0"
micronaut = "4.1.1" # This version is a *platform* version used in benchmarks only
micronaut-aot = "2.1.1"
micronaut-aws = "4.0.4"
micronaut-groovy = "4.0.1"
micronaut-session = "4.0.0"
micronaut-serde = "2.2.4"
micronaut-sql = "5.0.0-M7"
micronaut-test = "4.0.2"
micronaut-validation = "4.0.0-M9"
Expand Down Expand Up @@ -83,6 +86,7 @@ test-boms-micronaut-validation = { module = "io.micronaut.validation:micronaut-v
test-boms-micronaut-rxjava2 = { module = "io.micronaut.rxjava2:micronaut-rxjava2-bom", version.ref = "micronaut-rxjava2" }
test-boms-micronaut-rxjava3 = { module = "io.micronaut.rxjava3:micronaut-rxjava3-bom", version.ref = "micronaut-rxjava3" }
test-boms-micronaut-reactor = { module = "io.micronaut.reactor:micronaut-reactor-bom", version.ref = "micronaut-reactor" }
test-boms-micronaut-serde = { module = "io.micronaut.serde:micronaut-serde", version.ref = "micronaut-serde" }

boms-groovy = { module = "org.apache.groovy:groovy-bom", version.ref = "managed-groovy" }
boms-kotlin = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "managed-kotlin" }
Expand Down Expand Up @@ -214,6 +218,10 @@ logback-classic = { module = "ch.qos.logback:logback-classic", version.ref = "lo

logbook-netty = { module = "org.zalando:logbook-netty", version.ref = "logbook-netty" }

# This is only present so that the "micronaut" version is updated by renovatebot
micronaut-platform = { module = "io.micronaut.platform:micronaut-platform", version.ref = "micronaut"}

micronaut-aot-bom = { module = "io.micronaut.aot:micronaut-aot-bom", version.ref = "micronaut-aot" }
micronaut-docs = { module = "io.micronaut.docs:micronaut-docs-asciidoc-config-props", version.ref = "micronaut-docs" }
micronaut-runtime-groovy = { module = "io.micronaut.groovy:micronaut-runtime-groovy", version.ref = "micronaut-groovy" }
micronaut-session = { module = "io.micronaut.session:micronaut-session", version.ref = "micronaut-session" }
Expand All @@ -225,6 +233,10 @@ micronaut-test-spock = { module = "io.micronaut.test:micronaut-test-spock", vers

micronaut-sql-jdbc = { module = "io.micronaut.sql:micronaut-jdbc", version.ref = "micronaut-sql" }
micronaut-sql-jdbc-tomcat = { module = "io.micronaut.sql:micronaut-jdbc-tomcat", version.ref = "micronaut-sql" }

micronaut-serde-processor = { module = "io.micronaut.serde:micronaut-serde-processor", version.ref = "micronaut-serde" }
micronaut-serde-jackson = { module = "io.micronaut.serde:micronaut-serde-jackson", version.ref = "micronaut-serde" }

mysql-driver = { module = "mysql:mysql-connector-java" }

neo4j-bolt = { module = "org.neo4j.driver:neo4j-java-driver", version.ref = "neo4j-java-driver" }
Expand Down
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ include "websocket"

// test suites
include "test-suite"
include "test-suite-benchmarks"
include "test-suite-geb"
include "test-suite-helper"
include "test-suite-http-client-jdk-ssl"
Expand Down
7 changes: 7 additions & 0 deletions test-suite-benchmarks/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
plugins {
id("io.micronaut.build.internal.convention-benchmark")
}

application {
mainClass = "io.micronaut.http.bench.Application"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
* Copyright 2003-2021 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
*
* 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.micronaut.http.bench;

import io.micronaut.context.ApplicationContext;
import io.micronaut.runtime.Micronaut;
import io.micronaut.runtime.server.EmbeddedServer;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Fork;
import org.openjdk.jmh.annotations.Mode;
import org.openjdk.jmh.annotations.OutputTimeUnit;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.annotations.TearDown;

import java.io.IOException;
import java.io.InputStream;
import java.util.concurrent.TimeUnit;

@State(Scope.Thread)
public class SimpleControllerBenchmark {
// run this benchmark with:
// ./gradlew :test-suite-benchmarks:optimizedJmhJar && java -jar test-suite-benchmarks/build/libs/test-suite-benchmarks-jmh-all-*-SNAPSHOT.jar

ApplicationContext ctx;

@Benchmark
@BenchmarkMode(Mode.SingleShotTime)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@Fork(20)
public byte[] getSomeJson() throws IOException {
ctx = Micronaut.run(SimpleControllerBenchmark.class);
try (InputStream s = ctx.getBean(EmbeddedServer.class).getURL().openStream()) {
return s.readAllBytes();
}
}

@TearDown
public void shutdown() {
// not part of the measurement
ctx.close();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* Copyright 2003-2021 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
*
* 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.micronaut.http.bench;

import io.micronaut.runtime.Micronaut;

public class Application {
public static void main(String[] args) {
Micronaut.run(Application.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package io.micronaut.http.bench;

import io.micronaut.serde.annotation.Serdeable;

@Serdeable
public record Person(
String name,
int age
) {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
* Copyright 2003-2021 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
*
* 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.micronaut.http.bench;

import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;

import java.util.List;

@Controller
public class SimpleController {
private final List<Person> PERSONS = List.of(
new Person("Bob", 44),
new Person("Alice", 42)
);

@Get
public List<Person> list() {
return PERSONS;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
micronaut.server.port=-1
micronaut.netty.event-loops.default.num-threads=1
micronaut.netty.event-loops.parent.num-threads=1
14 changes: 14 additions & 0 deletions test-suite-benchmarks/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>

<root level="info">
<appender-ref ref="STDOUT" />
</root>
</configuration>