ORACLE ORION测试IO性能
https://www.oracle.com/technetwork/cn/topics/index-088165-zhs.html 下载地址
Orion是Oracle提供的IO性能测试工具,运行该工具不需要安装oracle database软件或创建数据库。 它可以模拟Oracle数据库的IO负载,也可以用来仿真ASM的条带化的功能
下载后解压就可以直接用
先把要测试的设备写入到同路径的文件中,然后即可测试
[root@localhost oracle]# cat mytest.lun
/dev/mapper/ol-root
[root@localhost oracle]# ./orion_linux_x86-64 -run simple -testname mytest -num_disks 1
ORION: ORacle IO Numbers -- Version 11.1.0.7.0
mytest_20190329_1057
Test will take approximately 9 minutes
Larger caches may take longer [root@localhost oracle]# ls|grep csv
mytest_20190329_1057_iops.csv
mytest_20190329_1057_lat.csv
mytest_20190329_1057_mbps.csv
[root@localhost oracle]# cat mytest_20190329_1057_iops.csv
Large/Small, 1, 2, 3, 4, 5
0, 2302, 4398, 5450, 6006, 6210
1
2
[root@localhost oracle]# cat mytest_20190329_1057_lat.csv
Large/Small, 1, 2, 3, 4, 5
0, 0.43, 0.45, 0.55, 0.67, 0.80
1
2
[root@localhost oracle]# cat mytest_20190329_1057_mbps.csv
Large/Small, 0, 1, 2, 3, 4, 5
1, 271.58
2, 374.26
[root@localhost oracle]#
[root@localhost oracle]# ll|grep mytest
-rw-r--r--. 1 root root 128 Mar 29 11:04 mytest_20190329_1057_iops.csv
-rw-r--r--. 1 root root 128 Mar 29 11:04 mytest_20190329_1057_lat.csv
-rw-r--r--. 1 root root 100 Mar 29 11:04 mytest_20190329_1057_mbps.csv
-rw-r--r--. 1 root root 599 Mar 29 11:04 mytest_20190329_1057_summary.txt
-rw-r--r--. 1 root root 2969 Mar 29 11:04 mytest_20190329_1057_trace.txt
-rw-r--r--. 1 root root 20 Mar 29 10:57 mytest.lun
[root@localhost oracle]# cat mytest_20190329_1057_summary.txt
ORION VERSION 11.1.0.7.0 Commandline:
-run simple -testname mytest -num_disks 1 This maps to this test:
Test: mytest
Small IO size: 8 KB
Large IO size: 1024 KB
IO Types: Small Random IOs, Large Random IOs
Simulated Array Type: CONCAT
Write: 0%
Cache Size: Not Entered
Duration for each Data Point: 60 seconds
Small Columns:, 0
Large Columns:, 0, 1, 2
Total Data Points: 8 Name: /dev/mapper/ol-root Size: 49178214400
1 FILEs found. Maximum Large MBPS=374.26 @ Small=0 and Large=2
Maximum Small IOPS=6210 @ Small=5 and Large=0
Minimum Small Latency=0.43 @ Small=1 and Large=0
结束后会多出5个文件,分别是测试详细信息,概要信息,iops,mbps,latency
ORACLE ORION测试IO性能的更多相关文章
- Linux 如何测试 IO 性能(磁盘读写速度)
这几天做MySQL性能测试,偌大一个公司,找几台性能测试机器都很纠结,终于协调到两台,IO的性能如何还不知道.数据库属于IO密集型的应用,所以还是先评估下Server的IO性能,看看是否能和线上的机器 ...
- Oracle Orion tool check io(ORACLE Orion 工具查看以及校验IO)
文档主要来自oracle官方文档performance 8.3章节 Oracle数据库提供了Orion,一种 I/O校准工具.Orion是预测Oracle数据库性能的工具,无需安装Oracle或创建数 ...
- Oracle 下基于 DBMS_RESOURCE_MANAGER 包估算数据库存储 IO 性能
:first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } img { border: 0; m ...
- Linux如何查看与测试磁盘IO性能
1. 查看磁盘 IO 性能 1.1 top 命令 top 命令通过查看 CPU 的 wa% 值来判断当前磁盘 IO 性能,如果这个数值过大,很可能是磁盘 IO 太高了,当然也可能是其他原因,例如网络 ...
- windows上测试磁盘io性能
一.问题由来 前两天搭建一套演示环境,同样的java war包,放在我们这边服务器好好的,放在那边就运行缓慢. 后来把日志改成异步之后就好了. 后边找了个程序测了下io性能,竟然差了7,8倍. 二.软 ...
- 在Linux中监视IO性能
dd命令 iostat命令 理解iostat的各项输出 iostat的应用实例 附:在Windows中监视IO性能 延伸阅读 dd命令 dd其实是工作于比较低层的一个数据拷贝和转换的*nix平台的工具 ...
- 通过数据库评估存储设备IO性能-Oracle11gIO校准功能介绍
通过数据库评估存储设备IO性能 ---------Oracle11g IO校准功能介绍 前言 I/O子系统是ORACLE数据库的一个重要组成部分,因为I/O操作是贯穿数据库管理全过程,它操作的对象包括 ...
- 使用SQLIO测试磁盘性能
SQLIO 是一个用于测试存储系统能力的命令行工具,用以获取存储系统相关的性能指标,以判断系统的 I/O 处理能力. 在微软的网站可以下载 SQLIO 的安装包,安装后目录中会出现如下文件: EULA ...
- SQL Server中一个隐性的IO性能杀手-Forwarded record
简介 最近在一个客户那里注意到一个计数器很高(Forwarded Records/Sec),伴随着间歇性的磁盘等待队列的波动.本篇文章分享什么是forwarded record,并从原理上谈一 ...
随机推荐
- C++创建或者打开文本,记录运行日志
代码 std::fstream f; f.open("D:/debugTime.txt", std::ios::app); f << "time of XXX ...
- gulp中常用的模块
gulp-cssmin: css压缩 gulp-uglify: js压缩混淆 gulp-imagemin: 图片压缩 gulp-htmlmin: html压缩 gulp-concat: 文件合并 g ...
- 三层交换机RIP动态路由实验
一. 实验目的 1. 掌握三层交换机之间通过RIP协议实现网段互通的配置方法. 2. 理解动态实现方式与静态方式的不同 二. 应用环境 当两台三层交换机级联时,为了保证每台交换机上所连接的 ...
- [HNOI2002] Kathy 函数
数位 DP 套路题,求二进制下区间内回文串个数. 设 dp[][][] 表示到第几位时,是否为回文数,去掉前导零后共几位.之后到边界时判断是否为回文数计入贡献. 一开始不知道答案统计要高精,于是后来就 ...
- [LeetCode] 491. Increasing Subsequences 递增子序列
Given an integer array, your task is to find all the different possible increasing subsequences of t ...
- Spring Boot中的Mongodb多数据源扩展
在日常工作中,我们通过Spring Data Mongodb来操作Mongodb数据库,在Spring Boot中只需要引入spring-boot-starter-data-mongodb即可. 然后 ...
- curl 用法
背景 linux上发起http请求 使用方法 # get请求 curl "http://jwen.me/" # 获取返回的信息头 curl -i "http://jwen ...
- ElasticSearch使用RestHighLevelClient进行搜索查询
Elasticsearch Java API有四类client连接方式:TransportClient. RestClient .Jest. Spring_Data_Elasticsearch.其中 ...
- linux 安装jdk 和tomcat
#创建用户是为了区分操作权限,如果不区分的话可以直接用root用户执行文件目录为 /usr/lcdc #创建lcdc用户, #其中-d和-m选项用来为登录名lcdc, /usr/lcdc(/usr为默 ...
- zipfile
zipfile是一个用于处理zip压缩格式的文件的模块, 主要会用到它的ZipFile类 import zipfile zipfile.is_zipfile('myzip.zip')) # 判断一个文 ...