云倉管理Navicat for Snowflake 17 v17.2.4 官方正式版 x64
92.4MB / 04-09
開源跨平臺(tái) SQLite 管理工具 SQLiteStudio v3.4.8 中文多語安裝
61.7MB / 12-04
DB Browser for SQLite(SQLITE數(shù)據(jù)庫編輯器) v3.13.0 綠色免費(fèi)中
14.5MB / 10-09
數(shù)據(jù)庫管理Navicat Premium v17.1.3 綠色中文單文件免費(fèi)版
157.6MB / 10-03
Navicat Premium 17 Lite(數(shù)據(jù)庫管理軟件) v17.2.3 中文綠色精簡
113MB / 04-03
Navicat Data Modeler Lite 4(免費(fèi)數(shù)據(jù)庫設(shè)計(jì)工具) v4.0.6.0 官
94.1MB / 07-08
Navicat Premium Lite 17(免費(fèi)數(shù)據(jù)庫管理軟件) v17.2.3 中文精簡
113MB / 04-03
SAPIEN PrimalSQL 2024 v4.5.87 x64 安裝授權(quán)版(附安裝教程)
59MB / 06-11
Navicat BI(數(shù)據(jù)轉(zhuǎn)換圖表工具) v2.1.12 中文免費(fèi)安裝版 x64
117MB / 01-03
SQL Studio(國產(chǎn)數(shù)據(jù)庫管理軟件) V1.0.3 最新免費(fèi)版
265MB / 11-26
-
DBeaver Community(開源數(shù)據(jù)庫管理工具) v25.0.3 64位 官方中文 數(shù)據(jù)庫 / 120MB
-
DBeaver Community社區(qū)版(可視化數(shù)據(jù)庫管理工具) v25.0.3 64位 數(shù)據(jù)庫 / 124MB
-
Navicat for PostgreSQL(數(shù)據(jù)庫管理工具) v17.2.4 64位 中文企業(yè) 數(shù)據(jù)庫 / 94MB
-
Navicat 17 for SQLite v17.2.4 中文企業(yè)免費(fèi)版(附安裝教程) 數(shù)據(jù)庫 / 91.6MB
-
Navicat for SQL Server 17 v17.2.4 中文免費(fèi)企業(yè)版(附安裝教程) 數(shù)據(jù)庫 / 147MB
-
Navicat for MariaDB 17 v17.2.4 中文企業(yè)正式版(附安裝教程) 數(shù)據(jù)庫 / 93.5MB
-
Navicat for Redis 17 v17.2.4 中文免費(fèi)正式版(附安裝教程) 32位 數(shù)據(jù)庫 / 134MB
-
Navicat For MySQL圖形化管理工具 v17.2.4 64bit 官方中文免費(fèi)版 數(shù)據(jù)庫 / 93.6MB
-
Navicat for MySQL 17 v17.2.4 中文企業(yè)正式版(附安裝教程) 64位 數(shù)據(jù)庫 / 143MB
-
云倉管理Navicat for Snowflake 17 v17.2.4 官方正式版 x64 數(shù)據(jù)庫 / 92.4MB
詳情介紹
下載DBT2 Benchmark,編譯安裝,按照README-MYSQL中的步驟來操作。報(bào)告的時(shí)間是客戶端的經(jīng)過時(shí)間,不是在服務(wù)器端的CPU時(shí)間。執(zhí)行BENCHMARK()若干次可能是明智的,并且注意服務(wù)器機(jī)器的負(fù)載有多重來解釋結(jié)果。需要由aclocal、autoheader、autoconf、automake,以及mysql、mysql-libs、mysql-devel。
$ ./congigure --with-mysql
$ make
$ sudo make install
安裝好datagen,然后生成數(shù)據(jù),需要先創(chuàng)建對(duì)應(yīng)的目錄如/tmp/dbt2-w3。
$ datagen -w 3 -d /tmp/dbt2-w3 --mysql
warehouses = 3
first warehouse = 1
districts = 10
customers = 3000
items = 100000
orders = 3000
stock = 100000
new_orders = 900
生成完數(shù)據(jù)后就可以執(zhí)行scripts/mysql/mysql_load_db.sh腳本將數(shù)據(jù)導(dǎo)入到數(shù)據(jù)庫中。
benchmark 使用方法:
這里還有一種方法能夠獲取到 mysql 執(zhí)行一個(gè)sql 語句或sql 表達(dá)式的 時(shí)間,并且可以由用戶指定執(zhí)行次數(shù)。通過執(zhí)行大規(guī)模次數(shù), 才能夠獲得比較穩(wěn)定的 sql 執(zhí)行時(shí)間。
select benchmark(num, exp) ; 其中 num 為執(zhí)行次數(shù),exp 為希望獲得執(zhí)行時(shí)間的表達(dá)式 ,不包括 sql 語句
select benchmark(1, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概是 0.0011秒 ,可以計(jì)算表達(dá)式時(shí)間
select benchmark(1, select * from MYTABLE limit 0,40 ); Mysql 報(bào)錯(cuò),說明EXP 不能為sql 語句,只能為表達(dá)式或函數(shù)
下面是對(duì)num 賦予不同的數(shù)值,查看執(zhí)行不同次數(shù)所耗費(fèi)的時(shí)間
select benchmark(100, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.0012秒
select benchmark(10000, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.0056秒
select benchmark(1000000, to_days(2011-04-07) - to_days(now()) <1 ); 執(zhí)行時(shí)間大概也是 0.4454秒
為什么執(zhí)行100次和執(zhí)行 1次的時(shí)間耗費(fèi)差不多呢? 這是因?yàn)榭赡鼙蛔⑷肓司彺娴木壒剩虼薭enchmark 不能用來完成一種實(shí)際的 基準(zhǔn)測(cè)試。
英文介紹:
The DBT2 Benchmark Tool can be used to run automated benchmarks for MySQL and MySQL Cluster. It supports three types of benchmarks:
DBT2
SysBench
flexAsynch
It has been primarily used on Linux x86_64 platforms, but occasional benchmarks have also been run on Solaris and Windows. It can be used to test MySQL based on MySQL 5.6 and MySQL 5.7 Releases (older versions might work as well but isn't maintained any more).
DBT2 is an open source benchmark that mimics an OLTP application for a company owning large amounts of warehouses. It contains transactions to handle New Orders, Order Entry, Order Status, Payment and Stock handling. The transactions are a mix of read and write transactions. Using MySQL the benchmark tests a single MySQL Server instance. Using MySQL Cluster the benchmark tool can drive large distributed tests with many MySQL Cluster Data nodes and MySQL Server instances. The DBT2 Benchmark Tool provides scripts to automate execution of these benchmarks.
The DBT2 tarball also contains a benchmark tool using PowerShell on Windows to run sysbench on Windows. There is also scripts mimicing top on Windows. Finally there is also a set of simple scripts to use the perf tool on Linux.
FlexAsynch is a benchmark specifically developed to test scalability of MySQL Cluster. It is found in any MySQL Cluster source tarball under storage/ndb/test/ndbapi. The features required to run it in this parallel manner requires a MySQL Cluster 7.x version released after the 15th of October 2011. The DBT2 Benchmark Tool can be used to run distributed tests with many MySQL Cluster Data nodes and many flexAsynch benchmark programs in a completely automated fashion. The latest version of flexAsynch mainly exists in the source tree for the 2 most recent versions.
MySQL Server Version: 5.6 and later
MySQL Cluster Version: MySQL Cluster 7.3 and later
下載地址
人氣軟件
navicat11注冊(cè)機(jī)(Navicat11全系列注冊(cè)機(jī)) 中文綠色版
MSSQL2008 正式版 sql server 2008 r2 64位&32位
Navicat 16 Keygen注冊(cè)機(jī)(NavicatCracker) v16.0 中文最新破解版
Navicat Keygen Patch(Navicat全系列注冊(cè)機(jī)) v5.6.0 漢化版
Sybase powerbuilder 12.5 官方正式特別版(PowerBuilder 12.1完
instantclient-basic(輕量級(jí)數(shù)據(jù)庫) v12.2.0.1.0 Win64 官方免費(fèi)
Navicat for Oracle 12.0 官方中文特別版(附破解補(bǔ)丁+注冊(cè)機(jī)) 64
Navicat for Oracle (Oracle數(shù)據(jù)庫圖形管理工具) v11.2.13 簡體
Navicat For MySQL圖形化管理工具 12.0 簡體中文免費(fèi)版 (方便的
Sybase PowerDesigner v12.5 特別特別版
相關(guān)文章
-
云倉管理Navicat for Snowflake 17 v17.2.4 官方正式版 x64
Navicat for Snowflake 旨在簡化你與 Snowflake 的交互,使你能夠輕松處理海量數(shù)據(jù),它提供多種功能,包括數(shù)據(jù)建模、商業(yè)智能(BI)、人工智能(AI)集成以及多種數(shù)據(jù)遷移...
-
開源跨平臺(tái) SQLite 管理工具 SQLiteStudio v3.4.8 中文多語安裝免費(fèi)版 32/64位
SQLiteStudio是一款免費(fèi)、開源且跨平臺(tái)的SQLite數(shù)據(jù)庫管理工具,它的鏈接是。本文將深入解析其功能、技術(shù)實(shí)現(xiàn)和應(yīng)用場(chǎng)景,以期吸引更多用戶了解并使用它...
-
DB Browser for SQLite(SQLITE數(shù)據(jù)庫編輯器) v3.13.0 綠色免費(fèi)中文版
DB Browser For SQLite(DB4S)是一個(gè)高品質(zhì)、交互、開源系統(tǒng)的專用工具,用以創(chuàng)建、設(shè)計(jì)和編輯與SQLite兼容的數(shù)據(jù)庫文件。歡迎需要的朋友下載使用...
-
數(shù)據(jù)庫管理Navicat Premium v17.1.3 綠色中文單文件免費(fèi)版
Navicat Premium17是一個(gè)數(shù)據(jù)庫管理工具,結(jié)合了其他Navicat成員的功能,可輕松連接到MySQL、SQLite、Oracle、MariaDB、Mssql、及PostgreSQL數(shù)據(jù)庫,這里提供最新中文單文...
-
Navicat Premium 17 Lite(數(shù)據(jù)庫管理軟件) v17.2.3 中文綠色精簡版
Navicat Premium Lite是Navicat的免費(fèi)精簡版,它包含了用戶執(zhí)行主要的基本數(shù)據(jù)庫操作所需的核心功能,包括 MySQL、PostgreSQL、SQL Server、Oracle、MariaDB,以及 Redis ...
-
Navicat Data Modeler Lite 4(免費(fèi)數(shù)據(jù)庫設(shè)計(jì)工具) v4.0.6.0 官方中文精簡版 64位
Navicat Data Modeler Lite 是 Navicat Data Modeler 的精簡版本,它提供基本的功能,可讓你輕松創(chuàng)建數(shù)據(jù)模型并理解你的數(shù)據(jù)庫結(jié)構(gòu),軟件支持各種數(shù)據(jù)庫系統(tǒng),本次提供的是...
下載聲明
☉ 解壓密碼:chabaoo.cn 就是本站主域名,希望大家看清楚,[ 分享碼的獲取方法 ]可以參考這篇文章
☉ 推薦使用 [ 迅雷 ] 下載,使用 [ WinRAR v5 ] 以上版本解壓本站軟件。
☉ 如果這個(gè)軟件總是不能下載的請(qǐng)?jiān)谠u(píng)論中留言,我們會(huì)盡快修復(fù),謝謝!
☉ 下載本站資源,如果服務(wù)器暫不能下載請(qǐng)過一段時(shí)間重試!或者多試試幾個(gè)下載地址
☉ 如果遇到什么問題,請(qǐng)?jiān)u論留言,我們定會(huì)解決問題,謝謝大家支持!
☉ 本站提供的一些商業(yè)軟件是供學(xué)習(xí)研究之用,如用于商業(yè)用途,請(qǐng)購買正版。
☉ 本站提供的DBT2 Benchmark Tool (mysql壓力測(cè)試工具) V0.37.50.14資源來源互聯(lián)網(wǎng),版權(quán)歸該下載資源的合法擁有者所有。