MariaDB
Section 6: "Profile a real case"
6.1 INTRODUCTION
Profiling & Debugging is an argument that would require an entire book, the aim of this(and the others) posts of this series is to give you the basic knowledge on how to work with these tools and techniques withing Eclipse. For instance if you want to learn to profile with OProfile you should study on the abundant and separate resources, you may start from:http://OProfile.sourceforge.net
6.2 ABOUT NAMING THE PROJECT
If you followed correctly the previous post (Part 4) you should have now a project in Eclipse that we will use to profile MariaDB(or MySQL if you are working on that). I remind you that we decided to prepare anodebugbuild to avoid to have the debug logging functions to be counted in our profiling. The debug logging functions are quickly executed but they are in a very large number so that they would skew our statistics. The case we will study is a bug affecting MariaDB, MySQL and Percona where an outer join becomes extremely slow when using the join_cache, the bug is reported here:
<tt>https://mariadb.atlassian.net/browse/MDEV-6292</tt>
If you remember we decided to name our first project in Eclipse MariaDB10-test1, for this project we are going to use another project name to allow the existence of multiple type of builds. It is particularly useful when, apart from compliling our MariaDB with or without debugging enabled, we will compile different MariaDB, MySQL or Percona versions.The Eclipse project name we will use in this part is:
<b>MariaDB10-test2-nodebug</b>
Naming a project(and not only) is also an art, so that you should find what's more suitable for your use in your specific case, make sure to include basic information like:
Type of release:<tt>mariadb, mysql, percona</tt>
Version:<tt>51,55,56,10 or 5172,5512,10011, or even 10.0.11, 5.6.15-rel63.0</tt>
, etc.
Type of compilation:that is the most important parameters used with cmake, in our case we just need to distinguish between debug and nodebug builds.
I will also assume that you have followed all the steps of previous Parts1,2,3to have this project correctly configured, successfully compiled, and run under Eclipse, I will not repeat the steps needed to do that, please refer to Parts1,2,3and proceed only if you have a MariaDB(or MySQL) project correctly compiling and running under Eclipse as explained in previous parts.
6.3 PROFILE TEST
We have now the project ready to run in Eclipse, and we will run it in profile mode, the first profiling we will do will be an empty-run test, just to test that we are good to profile, to do so:
Right-click on the project (MariaDB10-test2-nodebug) and select:<tt>[Profile As] --> [Profile configurations]</tt>
.
This screen should be familiar, it is the same as [Run] with an added tab [Profiler].
You should already have a Run configuration under<tt>[C/C++ Application]</tt>
, if not<tt>Right Click --> [New]</tt>
, and give it a name.
Now select the<tt>[Profiler]</tt>
tab.
In the drop down list of available profiling tools select: 'OProfile'
Below in the<tt>[Global]</tt>
tab select 'opcontrol' from the drop down list '<tt>Profile with</tt>
'.
Note that every profiling tool will have a different configuration requirements, you will easily notice that by changing the tool from OProfile to another.You have two checkboxes on the lower part of OProfile pane:
[ ] Include dependent shared libraries[ ] Include dependent kernel modules
In our case we will not include these two extra checks. The above are used when you want to profile not only your application but also the shared libraries and kernel modules used during your application profiling. This can be interesting in some cases and it is part of a larger scope, in our case we will just profile our application, so donotcheck the above two boxes.
Click on<tt>[Profile]</tt>
The project will be built and then run under OProfile, you will be asked for root password for that(OProfile cannot run in user mode), in the beginning and possibly in the end of profiling. At this point, always following the instructions on previous parts on how to connect to this instance you can connect and run anything you like, or nothing. Profiling will end when the process mysqld will end, so when you have finished your tests and you want to collect the profiling results you will shutdown mysqld with:
<tt>$ bin/mysqladmin shutdown -uroot -h127.0.0.1 -P10011</tt>
(Assuming mysqld in this project was configured to run on port 10011, as explained onPart 3"4.1 Create a 'Run configuration' and Run")
You will see in Eclipse that OProfile detects that<tt>mysqld</tt>
process is gone and it will start collecting data and creating the report for you, the results will be visible in the lower panel of Eclipse where all logs are shown, you will have a tab<tt>[OProfile]</tt>
with inside a treeview control, in there, under 'current' you have the tree of the function calls ordered by presence, that is the number of calls. If all went well you just finished your first profiling in Eclipse, if you ran an empty-run test and you left mysql up for a few minutes without doing anything, you will probably see the main part of the function calls being some time related calls, calls used to execute temporized background operations. The calls are grouped per function name and listed according to line numbers, if you click on any row, Eclipse should take you to the actual source code line.
Tip:Learn to rename theOProfiletest results. Not very intuitively on the top right of this lower panel there is a<tt>Down-arrow</tt>
, Click on '<tt>Save Default Session</tt>
' and give it a name(like 'emptyrun'). This is important not to lose the results at next execution, we will need to save and compare two different profilings.
6.4 PROFILE THE BUG MDEV-6292
Now that we are familiar with profiling in Eclipse we can step to our real case. We have an extremely slow query and we want to debug why it is that slow, so the aim of this little exercise and of Part 4 & 5 of this blog series is to understand where we should look at before just guessing where the time might be spent. This is a case where profiling is extremely useful, we would have no or little clue where to start looking for debugging this general query slowness problem, while with profiling we can have an idea on where the time is most spent. Moreover this test case is particular good for compared testing, because we know how to inhibit the faulty behaviour by setting a session variable. All we need to do now is to profile like we just did, with the addition of executing the test case in:
<tt>https://mariadb.atlassian.net/browse/MDEV-6292</tt>
SET join_cache_level=0; # First Test#SET join_cache_level=2; # Second Testdrop table if exists t2,t1;CREATE TABLE `t1` (`id` int(11) NOT NULL AUTO_INCREMENT,`col1` varchar(255) NOT NULL DEFAULT '',PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1;CREATE TABLE `t2` (`id` int(11) NOT NULL AUTO_INCREMENT,`parent_id` smallint(3) NOT NULL DEFAULT '0',`col2` varchar(25) NOT NULL DEFAULT '',PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;select now();SELECT t.* FROM t1 t LEFT JOIN t2 c1 ON c1.parent_id = t.id AND c1.col2 = "val"LEFT JOIN t2 c2 ON c2.parent_id = t.id AND c2.col2 = "val"LEFT JOIN t2 c3 ON c3.parent_id = t.id AND c3.col2 = "val"LEFT JOIN t2 c4 ON c4.parent_id = t.id AND c4.col2 = "val"LEFT JOIN t2 c5 ON c5.parent_id = t.id AND c5.col2 = "val"LEFT JOIN t2 c6 ON c6.parent_id = t.id AND c6.col2 = "val"LEFT JOIN t2 c7 ON c7.parent_id = t.id AND c7.col2 = "val"LEFT JOIN t2 c8 ON c8.parent_id = t.id AND c8.col2 = "val"LEFT JOIN t2 c9 ON c9.parent_id = t.id AND c9.col2 = "val"LEFT JOIN t2 c10 ON c10.parent_id = t.id AND c10.col2 = "val"LEFT JOIN t2 c11 ON c11.parent_id = t.id AND c11.col2 = "val"LEFT JOIN t2 c12 ON c12.parent_id = t.id AND c12.col2 = "val"LEFT JOIN t2 c13 ON c13.parent_id = t.id AND c13.col2 = "val"LEFT JOIN t2 c14 ON c14.parent_id = t.id AND c14.col2 = "val"LEFT JOIN t2 c15 ON c15.parent_id = t.id AND c15.col2 = "val"LEFT JOIN t2 c16 ON c16.parent_id = t.id AND c16.col2 = "val"LEFT JOIN t2 c17 ON c17.parent_id = t.id AND c17.col2 = "val"LEFT JOIN t2 c18 ON c18.parent_id = t.id AND c18.col2 = "val"LEFT JOIN t2 c19 ON c19.parent_id = t.id AND c19.col2 = "val"LEFT JOIN t2 c20 ON c20.parent_id = t.id AND c20.col2 = "val"LEFT JOIN t2 c21 ON c21.parent_id = t.id AND c21.col2 = "val"LEFT JOIN t2 c22 ON c22.parent_id = t.id AND c22.col2 = "val"LEFT JOIN t2 c23 ON c23.parent_id = t.id AND c23.col2 = "val"LEFT JOIN t2 c24 ON c24.parent_id = t.id AND c24.col2 = "val"LEFT JOIN t2 c25 ON c25.parent_id = t.id AND c25.col2 = "val"LEFT JOIN t2 c26 ON c26.parent_id = t.id AND c26.col2 = "val"LEFT JOIN t2 c27 ON c27.parent_id = t.id AND c27.col2 = "val"LEFT JOIN t2 c28 ON c28.parent_id = t.id AND c28.col2 = "val"LEFT JOIN t2 c29 ON c29.parent_id = t.id AND c29.col2 = "val"LEFT JOIN t2 c30 ON c30.parent_id = t.id AND c30.col2 = "val"LEFT JOIN t2 c31 ON c31.parent_id = t.id AND c31.col2 = "val"LEFT JOIN t2 c32 ON c32.parent_id = t.id AND c32.col2 = "val"LEFT JOIN t2 c33 ON c33.parent_id = t.id AND c33.col2 = "val"ORDER BY col1;select now();
We will do two profilings:
- one by setting
<tt>SET join_cache_level=0</tt>
before running the test case # Runs fine - one by setting
<tt>SET join_cache_level=2</tt>
before running the test case # Runs extremely slow and note, the dataset is empty!
Remember to save the profile results as explained above before running the second test(something like:
'<tt>join_cache_level0</tt>
' and '<tt>join_cache_level2</tt>
'.
What you should do now is:
- Start profiling
- Execute the test case by setting
<tt>join_cache_level=0</tt>
- Shutdown MariaDB(or MySQL)
- Collect the OProfile results
- Rename the OProfile results from 'current' to 'joincachelevel0'
Repeat using<tt>join_cache_level=2</tt>
at step 2, and<tt>joincachelevel2</tt>
at step 5.
If you run the two profile tests above you should immediately spot what happens when you set the session variable<tt>join_cache_level=2</tt>
, most of the time is spent in, in particular in the method<tt><b>join_records()</b></tt>
of the class<tt><b>JOIN_CACHE</b></tt>
. Double clicking on any line will teleport you to the source code line.
Now that we know that an unjustifiable amount of time is spent in that part of the code we can use this information to proceed to next<tt><b>Part 6: Debug in Eclipse</b></tt>
(available soon).

MySQL適合初學者學習數據庫技能。 1.安裝MySQL服務器和客戶端工具。 2.理解基本SQL查詢,如SELECT。 3.掌握數據操作:創建表、插入、更新、刪除數據。 4.學習高級技巧:子查詢和窗口函數。 5.調試和優化:檢查語法、使用索引、避免SELECT*,並使用LIMIT。

MySQL通過表結構和SQL查詢高效管理結構化數據,並通過外鍵實現表間關係。 1.創建表時定義數據格式和類型。 2.使用外鍵建立表間關係。 3.通過索引和查詢優化提高性能。 4.定期備份和監控數據庫確保數據安全和性能優化。

MySQL是一個開源的關係型數據庫管理系統,廣泛應用於Web開發。它的關鍵特性包括:1.支持多種存儲引擎,如InnoDB和MyISAM,適用於不同場景;2.提供主從復制功能,利於負載均衡和數據備份;3.通過查詢優化和索引使用提高查詢效率。

SQL用於與MySQL數據庫交互,實現數據的增、刪、改、查及數據庫設計。 1)SQL通過SELECT、INSERT、UPDATE、DELETE語句進行數據操作;2)使用CREATE、ALTER、DROP語句進行數據庫設計和管理;3)複雜查詢和數據分析通過SQL實現,提升業務決策效率。

MySQL的基本操作包括創建數據庫、表格,及使用SQL進行數據的CRUD操作。 1.創建數據庫:CREATEDATABASEmy_first_db;2.創建表格:CREATETABLEbooks(idINTAUTO_INCREMENTPRIMARYKEY,titleVARCHAR(100)NOTNULL,authorVARCHAR(100)NOTNULL,published_yearINT);3.插入數據:INSERTINTObooks(title,author,published_year)VA

MySQL在Web應用中的主要作用是存儲和管理數據。 1.MySQL高效處理用戶信息、產品目錄和交易記錄等數據。 2.通過SQL查詢,開發者能從數據庫提取信息生成動態內容。 3.MySQL基於客戶端-服務器模型工作,確保查詢速度可接受。

構建MySQL數據庫的步驟包括:1.創建數據庫和表,2.插入數據,3.進行查詢。首先,使用CREATEDATABASE和CREATETABLE語句創建數據庫和表,然後用INSERTINTO語句插入數據,最後用SELECT語句查詢數據。

MySQL適合初學者,因為它易用且功能強大。 1.MySQL是關係型數據庫,使用SQL進行CRUD操作。 2.安裝簡單,需配置root用戶密碼。 3.使用INSERT、UPDATE、DELETE、SELECT進行數據操作。 4.複雜查詢可使用ORDERBY、WHERE和JOIN。 5.調試需檢查語法,使用EXPLAIN分析查詢。 6.優化建議包括使用索引、選擇合適數據類型和良好編程習慣。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

Dreamweaver Mac版
視覺化網頁開發工具

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。