`
hpgary
  • 浏览: 81709 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Java Benchmark 基准测试

阅读更多
import java.util.Arrays;
import java.util.concurrent.TimeUnit;

import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.BenchmarkMode;
import org.openjdk.jmh.annotations.Measurement;
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.Threads;
import org.openjdk.jmh.annotations.Warmup;
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;

@BenchmarkMode(Mode.Throughput)//基准测试类型
@OutputTimeUnit(TimeUnit.SECONDS)//基准测试结果的时间类型
@Warmup(iterations = 3)//预热的迭代次数
@Threads(2)//测试线程数量
@State(Scope.Thread)//该状态为每个线程独享
//度量:iterations进行测试的轮次,time每轮进行的时长,timeUnit时长单位,batchSize批次数量
@Measurement(iterations = 2, time = -1, timeUnit = TimeUnit.SECONDS, batchSize = -1)
public class InstructionsBenchmark{
    static int staticPos = 0;
    //String src = "SELECT a FROM ab             , ee.ff AS f,(SELECT a FROM `schema_bb`.`tbl_bb`,(SELECT a FROM ccc AS c, `dddd`));";
    final byte[] srcBytes = {83, 69, 76, 69, 67, 84, 32, 97, 32, 70, 82, 79, 77, 32, 97, 98, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 44, 32, 101, 101, 46, 102, 102, 32, 65, 83, 32, 102, 44, 40, 83, 69, 76, 69, 67, 84, 32, 97, 32, 70, 82, 79, 77, 32, 96, 115, 99, 104, 101, 109, 97, 95, 98, 98, 96, 46, 96, 116, 98, 108, 95, 98, 98, 96, 44, 40, 83, 69, 76, 69, 67, 84, 32, 97, 32, 70, 82, 79, 77, 32, 99, 99, 99, 32, 65, 83, 32, 99, 44, 32, 96, 100, 100, 100, 100, 96, 41, 41, 59};
    int len = srcBytes.length;
    byte[] array = new byte[8192];
    int memberVariable = 0;

    //run
    public static void main(String[] args) throws RunnerException {
        Options opt = new OptionsBuilder()
                .include(InstructionsBenchmark.class.getSimpleName())
                .forks(1)
                //     使用之前要安装hsdis
                //-XX:-TieredCompilation 关闭分层优化 -server
                //-XX:+LogCompilation  运行之后项目路径会出现按照测试顺序输出hotspot_pid<PID>.log文件,可以使用JITWatch进行分析,可以根据最后运行的结果的顺序按文件时间找到对应的hotspot_pid<PID>.log文件
                .jvmArgs("-XX:+UnlockDiagnosticVMOptions", "-XX:+LogCompilation", "-XX:+TraceClassLoading", "-XX:+PrintAssembly")
                //  .addProfiler(CompilerProfiler.class)    // report JIT compiler profiling via standard MBeans
                //  .addProfiler(GCProfiler.class)    // report GC time
                // .addProfiler(StackProfiler.class) // report method stack execution profile
                // .addProfiler(PausesProfiler.class)
                /*
                WinPerfAsmProfiler
                You must install Windows Performance Toolkit. Once installed, locate directory with xperf.exe file
                and either add it to PATH environment variable, or set it to jmh.perfasm.xperf.dir system property.
                 */
                //.addProfiler(WinPerfAsmProfiler.class)
                //更多Profiler,请看JMH介绍
                //.output("InstructionsBenchmark.log")//输出信息到文件
                .build();
        new Runner(opt).run();
    }


    //空循环 对照项
    @Benchmark
    public int emptyLoop() {
        int pos = 0;
        while (pos < len) {
            ++pos;
        }
        return pos;
    }

    @Benchmark
    public int increment() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            ++result;
            ++pos;
        }
        return result;
    }

    @Benchmark
    public int decrement() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            --result;
            ++pos;
        }
        return result;
    }

    @Benchmark
    public int ifElse() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            if (pos == 10) {
                ++result;
                ++pos;
            } else {
                ++pos;
            }
        }
        return result;
    }

    @Benchmark
    public int ifElse2() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            if (pos == 10) {
                ++result;
                ++pos;
            } else if (pos == 20) {
                ++result;
                ++pos;
            } else {
                ++pos;
            }
        }
        return result;
    }

    @Benchmark
    public int ifnotElse() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            if (pos != 10) {
                ++pos;
            } else {
                ++result;
                ++pos;
            }
        }
        return result;
    }

    @Benchmark
    public int ifLessthanElse() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            if (pos < 10) {
                ++pos;
            } else {
                ++result;
                ++pos;
            }
        }
        return result;
    }

    @Benchmark
    public int ifGreaterthanElse() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            if (pos > 10) {
                ++pos;
            } else {
                ++result;
                ++pos;
            }
        }
        return result;
    }

    @Benchmark
    public int readMemberVariable_a_byteArray() {
        int pos = 0;
        int result = 0;
        while (pos < len) {
            result = srcBytes[pos];
            pos++;
        }
        return result;
    }

}

 ops/time:标识每秒钟执行的次数

 依赖jar包:

<dependency>
			<groupId>org.openjdk.jmh</groupId>
			<artifactId>jmh-core</artifactId>
			<version>${jmh.version}</version>
		</dependency>
		<dependency>
			<groupId>org.openjdk.jmh</groupId>
			<artifactId>jmh-generator-annprocess</artifactId>
			<version>${jmh.version}</version>
			<scope>provided</scope>
		</dependency>

 

<build>
		<plugins>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>exec-maven-plugin</artifactId>
				<executions>
					<execution>
						<id>run-benchmarks</id>
						<phase>integration-test</phase>
						<goals>
							<goal>exec</goal>
						</goals>
						<configuration>
							<classpathScope>test</classpathScope>
							<executable>java</executable>
							<arguments>
								<argument>-classpath</argument>
								<classpath />
								<argument>org.openjdk.jmh.Main</argument>
								<argument>.*</argument>
							</arguments>
						</configuration>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>

 

分享到:
评论

相关推荐

    Java Benchmark 基准测试的实例详解

    Java Benchmark 基准测试的实例详解 Java Benchmark 基准测试的实例详解是 Java 语言中的一种性能测试方法,主要用于度量 Java 应用程序的性能。通过使用 Java Benchmark,可以对 Java 应用程序的性能进行评估和...

    JMH - Java 微基准测试工具(自助性能测试)完整可运行代码

    Java Micro Benchmark Harness(简称JMH)是Oracle JDK项目的一个子项目,它提供了一套用于开发、执行和分析Java和Java虚拟机(JVM)微基准测试的框架。JMH的目标是帮助开发者正确地进行性能测试,避免常见的陷阱,...

    BenchmarkSQL-5.0 数据库基准测试工具-个人修改测试版本

    BenchmarkSQL 是用 Java 编写的,它可以在任何支持 Java 的操作系统上运行,并且允许用户自定义配置和运行基准测试。 BenchmarkSQL 能够模拟真实数据库业务工作负载,可用于测试各种数据库系统的性能,包括 Oracle、...

    caliper,面向java的微基准测试库.zip

    在编写自己的基准测试时,你需要继承Caliper提供的`Benchmark`类,并在其中定义你要测试的方法。然后,使用`@Param`注解来指定可能的输入参数,Caliper会自动遍历这些参数组合并执行测试。 总之,Caliper是一个强大...

    使用JMH进行微基准测试不要猜,要测试!Java开发Jav

    Java Micro Benchmark Harness(JMH)就是这样一款强大的工具,它由Oracle JDK开发团队维护,专为Java、JVM以及相关语言提供了一个标准的基准测试框架。本文将深入探讨如何使用JMH进行微基准测试,分享一些相关的...

    微基准测试工具:jmh

    JMH,全称为Java Micro Benchmark Harness,是由Oracle公司开发的一个强大的性能测试框架,专用于进行微基准测试。这个工具旨在帮助Java开发者精确地测量代码片段、方法或者整个程序的性能,以便优化和理解代码执行...

    关于JMH(Java Microbenchmark Harness)微基准测试的使用说明.zip

    Java Microbenchmark Harness(JMH)是Oracle公司开发的一个用于创建、执行和分析Java微基准测试的框架。这个框架使得开发者可以有效地评估代码片段在不同条件下的性能,从而优化应用程序的性能。下面将详细介绍JMH...

    YCSB是Yahoo公司的一个用来对云服务进行基准测试的工具

    Cloud Serving Benchmark,是由Yahoo公司开发的一款用于评估云存储服务性能的基准测试工具。这款工具旨在为云数据库和其他数据存储系统提供一个标准化的测试框架,帮助开发者和研究人员更好地理解和比较不同系统在...

    db-benchmark:db基准测试工具

    **db-benchmark: 数据库基准测试工具** 在IT领域,尤其是在数据库系统的设计、优化和比较中,基准测试扮演着至关重要的角色。`db-benchmark`是一个专门用于数据库性能评估的工具,它允许开发者和数据库管理员对不同...

    java_server_benchmark:用于基准测试的基于 Java Servlet 的应用程序

    `java_server_benchmark`项目提供了一个基于Java Servlet的基准测试应用程序,帮助开发者了解其服务器在处理HTTP请求、数据库操作或其他计算密集型任务时的性能表现。 Java Servlet是一种Java API,用于扩展Web...

    apache-spark-benchmark:Apache Spark 框架的测试基准

    Apache Spark 基准测试 该项目是硕士论文的成果,旨在成为 Apache Spark 框架的测试平台。 其基本思想是能够在软件和硬件的不同环境中运行该框架,以查看其行为,并将获得的结果与类似的解决方案(如 Hive、Redshift...

    基准测试神器 – JMH [ Java Microbenchmark Harness ]

    JMH,全称Java Microbenchmark Harness,是Java领域内的一款强大的微基准测试工具。它由OpenJDK/Oracle官方提供,专为衡量Java代码的微小性能而设计,能够精确到毫秒级别。通过JMH,开发者可以测试特定函数的执行...

    Android-Bazel和Gradle的Android基准测试项目

    - **JUnit4和BenchmarkDotNet**:在Android中,可以使用JUnit4的@Benchmark注解进行基准测试,而BenchmarkDotNet是Java/.NET平台的一个更高级的基准测试框架。 - **Android Benchmarking**:在Android项目中,可以...

    nio-benchmark:Java NIO回显服务器的基准测试

    使用JMH的Java NIO回显服务器的基准测试 基准测试针对各种服务器运行相同的客户端代码。 客户 客户端主程序是nio.JMHClientMain,具有可选参数: thread = 确定初始化的客户端数(默认为1) cycle = 如果为true,...

    flink-benchmarks:各种基准测试,主要是比较HDFS和XtreemFS上的Flink

    标题中的“flink-benchmarks”指的是Apache Flink的一个基准测试项目,主要目的是评估和比较Flink在不同存储系统上的性能。在这个特定的场景中,它对比了Flink在HDFS(Hadoop Distributed File System)和XtreemFS这...

    Benchmark-Algorithms:Java中的Sorting Algorithms基准测试应用程序

    Java中的Sorting Algorithms基准测试应用程序 该算法基准测试程序使用最大为10,000的整数的测试输入条件来测量算法的时间复杂度。 虽然不是非常面向对象,但我们由于将其构建为一个整体式代码块而获得了额外的荣誉...

    jsr353-benchmark:基于JMH的基准测试套件,用于基准测试JSR 353(用于JSON处理的Java API)实现

    基于JMH的基准测试套件,用于对各种JSON解析器进行基准测试(当前:Jackson,Genson,GSON,Glassfish JSR 353 RI和Apache Johnzon)。 还会生成基准结果图表。 Usage: java -Xmx2048m -Xms2048m -jar json-parser-...

Global site tag (gtag.js) - Google Analytics