-
-
Notifications
You must be signed in to change notification settings - Fork 314
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add FrameworkBenchmarks performance test
- Loading branch information
joeylee.lz
committed
Jun 10, 2022
1 parent
c671a7f
commit ff1d36f
Showing
5 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
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
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,20 @@ | ||
# FrameworkBenchmarks | ||
|
||
[FrameworkBenchmarks](https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Java) provides representative performance measures across a wide field of web application frameworks. With much help from the community, coverage is quite broad and we are happy to broaden it further with contributions. | ||
|
||
Here we focus on the wide range of Java frameworks for web applications scenarios. | ||
|
||
FrameworkBenchmarks covers common workloads as plaintext processing, json content parsing, popular database manipulations | ||
for different frameworks. | ||
|
||
Notice the different from external `netty` tests: | ||
```aidl | ||
external tests runs framework inner unit tests to ensure frameworks behaving correctly. | ||
perf framework tests stresses common worloads to ensure frameworks are performing well under test VMs. | ||
``` | ||
|
||
We are enabling the following list of frameworks to avoid regression: | ||
|
||
| Framework | Workloads | Version | | ||
|-----------|----------------|---------| | ||
| netty | plaintext,json | 11 | |
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,39 @@ | ||
<?xml version="1.0"?> | ||
<project name="FrameworkBenchmarks-Test" default="build" basedir="."> | ||
<taskdef resource="net/sf/antcontrib/antlib.xml" /> | ||
<description> | ||
Build FrameworkBenchmarks-Test Docker image | ||
</description> | ||
|
||
<!-- set properties for this build --> | ||
<property name="TEST" value="framework-benchmarks" /> | ||
<property name="DEST" value="${BUILD_ROOT}/perf/${TEST}" /> | ||
<property name="src" location="." /> | ||
|
||
<condition property="git-prefix" value="git" else="https"> | ||
<isset property="isZOS"/> | ||
</condition> | ||
|
||
<target name="init"> | ||
<mkdir dir="${DEST}"/> | ||
</target> | ||
|
||
<target name="getFrameworkBenchmarks" depends="init" description="Clone the distribution"> | ||
<echo message="Cloning FrameworkBenchmarks"/> | ||
<var name="git_command" value="clone --depth 1 -b master ${git-prefix}://github.com/TechEmpower/FrameworkBenchmarks.git ${DEST}"/> | ||
<echo message="git ${git_command}" /> | ||
<exec executable="git" failonerror="false" dir="."> | ||
<arg line="${git_command}" /> | ||
</exec> | ||
</target> | ||
|
||
<target name="dist" depends="getFrameworkBenchmarks" description="generate the distribution"> | ||
<copy todir="${DEST}"> | ||
<fileset dir="${src}" includes="*.xml, *.mk"/> | ||
</copy> | ||
</target> | ||
|
||
<target name="build"> | ||
<antcall target="dist" inheritall="true" /> | ||
</target> | ||
</project> |
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,88 @@ | ||
<?xml version='1.0' encoding='UTF-8'?> | ||
<!-- | ||
# 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. | ||
--> | ||
<playlist xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../TKG/playlist.xsd"> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-netty</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh netty netty.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-quarkus</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh quarkus quarkus.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-spring</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh spring spring.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-spark</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh spark spark.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-servlet3</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh servlet3 servlet3.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
<test> | ||
<testCaseName>FrameworkBenchmarks-servlet3</testCaseName> | ||
<command> | ||
${TEST_RESROOT}/../../../aqa-tests/perf/tfb-runner.sh vertx vertx.dockerfile ${TEST_RESROOT} | ||
</command> | ||
<levels> | ||
<level>special</level> | ||
</levels> | ||
<groups> | ||
<group>perf</group> | ||
</groups> | ||
</test> | ||
</playlist> |
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,19 @@ | ||
test=$1 | ||
dockerfile=$2 | ||
TEST_RESROOT=$3 | ||
|
||
cd ${TEST_RESROOT} | ||
testcase=` echo ${dockerfile} | cut -d'.' -f 1` | ||
dockerfile=${TEST_RESROOT}/frameworks/Java/${test}/${dockerfile} | ||
|
||
if [ ! -f ${dockerfile} ]; then | ||
echo "Warning: ${dockerfile} not found" | ||
exit 1; | ||
fi | ||
|
||
cp -r ${TEST_JDK_HOME} ${TEST_RESROOT}/frameworks/Java/${test}/jdk | ||
awk '/CMD.*/ && !x {print "COPY jdk /opt/java/openjdk"; x=1} 1' ${dockerfile} > tmpt && mv tmpt ${dockerfile} | ||
awk '/CMD.*/ && !x {print "ENV JAVA_HOME=/opt/java/openjdk"; x=1} 1' ${dockerfile} > tmpt && mv tmpt ${dockerfile} | ||
awk '/CMD.*/ && !x {print "ENV PATH=/opt/java/openjdk/bin:$PATH"; x=1} 1' ${dockerfile} > tmpt && mv tmpt ${dockerfile} | ||
cat ${dockerfile} | ||
./tfb --test $testcase |