搜索
首页数据库mysql教程Compiling & Debugging MariaDB(and MySQL) in Ecli_MySQL

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:

  1. Start profiling
  2. Execute the test case by setting<tt>join_cache_level=0</tt>
  3. Shutdown MariaDB(or MySQL)
  4. Collect the OProfile results
  5. 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).

声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
如何使用Alter Table语句在MySQL中更改表?如何使用Alter Table语句在MySQL中更改表?Mar 19, 2025 pm 03:51 PM

本文讨论了使用MySQL的Alter Table语句修改表,包括添加/删除列,重命名表/列以及更改列数据类型。

如何为MySQL连接配置SSL/TLS加密?如何为MySQL连接配置SSL/TLS加密?Mar 18, 2025 pm 12:01 PM

文章讨论了为MySQL配置SSL/TLS加密,包括证书生成和验证。主要问题是使用自签名证书的安全含义。[角色计数:159]

您如何处理MySQL中的大型数据集?您如何处理MySQL中的大型数据集?Mar 21, 2025 pm 12:15 PM

文章讨论了处理MySQL中大型数据集的策略,包括分区,碎片,索引和查询优化。

哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么?哪些流行的MySQL GUI工具(例如MySQL Workbench,PhpMyAdmin)是什么?Mar 21, 2025 pm 06:28 PM

文章讨论了流行的MySQL GUI工具,例如MySQL Workbench和PhpMyAdmin,比较了它们对初学者和高级用户的功能和适合性。[159个字符]

如何使用Drop Table语句将表放入MySQL中?如何使用Drop Table语句将表放入MySQL中?Mar 19, 2025 pm 03:52 PM

本文讨论了使用Drop Table语句在MySQL中放下表,并强调了预防措施和风险。它强调,没有备份,该动作是不可逆转的,详细介绍了恢复方法和潜在的生产环境危害。

您如何用外国钥匙代表关系?您如何用外国钥匙代表关系?Mar 19, 2025 pm 03:48 PM

文章讨论了使用外国密钥来代表数据库中的关系,重点是最佳实践,数据完整性和避免的常见陷阱。

如何在JSON列上创建索引?如何在JSON列上创建索引?Mar 21, 2025 pm 12:13 PM

本文讨论了在PostgreSQL,MySQL和MongoDB等各个数据库中的JSON列上创建索引,以增强查询性能。它解释了索引特定的JSON路径的语法和好处,并列出了支持的数据库系统。

如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)?如何保护MySQL免受常见漏洞(SQL注入,蛮力攻击)?Mar 18, 2025 pm 12:00 PM

文章讨论了使用准备好的语句,输入验证和强密码策略确保针对SQL注入和蛮力攻击的MySQL。(159个字符)

See all articles

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
3 周前By尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
3 周前By尊渡假赌尊渡假赌尊渡假赌

热工具

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

螳螂BT

螳螂BT

Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

功能强大的PHP集成开发环境

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

DVWA

DVWA

Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中