Details
-
Bug
-
Status: Closed (View Workflow)
-
Critical
-
Resolution: Fixed
-
10.4.18, 10.5.9
Description
When using set optimizer_use_condition_selectivity=1 we get a better query plan than for set optimizer_use_condition_selectivity=[2|3|4|5]
set optimizer_use_condition_selectivity=1;
|
analyze SELECT sysapproval_approver0.`sys_id`
|
FROM ((sysapproval_approver sysapproval_approver0
|
INNER JOIN task task1
|
ON sysapproval_approver0.`sysapproval` = task1.`sys_id`
|
AND (( task1.`sys_domain_path` = '/'
|
OR task1.`sys_domain_path` LIKE '!!!/!!#/!!$/%'
|
OR task1.`sys_domain_path` LIKE '!!!/!!!/%' )))
|
INNER JOIN task task2
|
ON task1.`parent` = task2.`sys_id`
|
AND (( task2.`sys_domain_path` = '/'
|
OR task2.`sys_domain_path` LIKE '!!!/!!#/!!$/%'
|
OR task2.`sys_domain_path` LIKE '!!!/!!!/%' )))
|
WHERE task2.`sys_id` LIKE '8e7792a7dbfffb00fff8a345ca961934%'
|
AND ( sysapproval_approver0.`sys_domain_path` = '/'
|
OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!#/!!$/%'
|
OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!!/%' )
|
ORDER BY sysapproval_approver0.`order`
|
LIMIT 0, 50 ;
|
+------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
|
+------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+
|
| 1 | SIMPLE | task2 | range | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | NULL | 1 | 0.00 | 100.00 | 100.00 | Using where; Using temporary; Using filesort |
|
| 1 | SIMPLE | task1 | ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | task_parent | 99 | tt.task2.sys_id | 255 | NULL | 100.00 | NULL | Using index condition; Using where |
|
| 1 | SIMPLE | sysapproval_approver0 | ref | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | tt.task1.sys_id | 176 | NULL | 100.00 | NULL | Using index condition; Using where |
|
+------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+
|
3 rows in set (0.001 sec)
|
|
set optimizer_use_condition_selectivity=[2|3|4|5]; -- use 2 or 3 or 4 or 5
|
|
+------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+
|
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra |
|
+------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+
|
| 1 | SIMPLE | sysapproval_approver0 | range | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | NULL | 1856810 | 1195428.00 | 100.00 | 100.00 | Using index condition; Using where; Using filesort |
|
| 1 | SIMPLE | task1 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | PRIMARY | 96 | tt.sysapproval_approver0.sysapproval | 1 | 0.00 | 100.00 | 100.00 | Using where |
|
| 1 | SIMPLE | task2 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | tt.task1.parent | 1 | NULL | 100.00 | NULL | Using where |
|
+------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+
|
3 rows in set (15.906 sec)
|
|
A workaround has been discovered:
set optimizer_switch="extended_keys=off";
|
extended_keys=off produces a much better query plan, returning results in 0.001 seconds even when set optimizer_use_condition_selectivity=4.
Attachments
Issue Links
- is blocked by
-
MDEV-26974 Improve selectivity and related costs in optimizer
-
- Closed
-
- relates to
-
MDEV-22537 optimizer_use_cond_selectivity > 1 can cause slow plans
-
- Closed
-
-
MDEV-23707 Fix condition selectivity computation for join prefixes
-
- Stalled
-
- mentioned in
-
Page Failed to load
-
Page Failed to load
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
-
Page Loading...
Activity
Field | Original Value | New Value |
---|---|---|
Description |
When using set optimizer_use_condition_selectivity=1 we get a better query plan than for set optimizer_use_condition_selectivity=[2|3|4|5]
{noformat} set optimizer_use_condition_selectivity=1; analyze SELECT sysapproval_approver0.`sys_id` FROM ((sysapproval_approver sysapproval_approver0 INNER JOIN task task1 ON sysapproval_approver0.`sysapproval` = task1.`sys_id` AND (( task1.`sys_domain_path` = '/' OR task1.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR task1.`sys_domain_path` LIKE '!!!/!!!/%' ))) INNER JOIN task task2 ON task1.`parent` = task2.`sys_id` AND (( task2.`sys_domain_path` = '/' OR task2.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR task2.`sys_domain_path` LIKE '!!!/!!!/%' ))) WHERE task2.`sys_id` LIKE '8e7792a7dbfffb00fff8a345ca961934%' AND ( sysapproval_approver0.`sys_domain_path` = '/' OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!!/%' ) ORDER BY sysapproval_approver0.`order` LIMIT 0, 50 ; +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra | +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ | 1 | SIMPLE | task2 | range | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | NULL | 1 | 0.00 | 100.00 | 100.00 | Using where; Using temporary; Using filesort | | 1 | SIMPLE | task1 | ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | task_parent | 99 | tt.task2.sys_id | 255 | NULL | 100.00 | NULL | Using index condition; Using where | | 1 | SIMPLE | sysapproval_approver0 | ref | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | tt.task1.sys_id | 176 | NULL | 100.00 | NULL | Using index condition; Using where | +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ 3 rows in set (0.001 sec) set optimizer_use_condition_selectivity=[2|3|4|5]; -- use 2 or 3 or 4 or 5 +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra | +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ | 1 | SIMPLE | sysapproval_approver0 | range | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | NULL | 1856810 | 1195428.00 | 100.00 | 100.00 | Using index condition; Using where; Using filesort | | 1 | SIMPLE | task1 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | PRIMARY | 96 | tt.sysapproval_approver0.sysapproval | 1 | 0.00 | 100.00 | 100.00 | Using where | | 1 | SIMPLE | task2 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | tt.task1.parent | 1 | NULL | 100.00 | NULL | Using where | +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ 3 rows in set (15.906 sec) {noformat} A workaround has been discovered: {noformat} set optimizer_switch="extended_keys=off"; {noformat} extended_keys=off produces a much better query plan, returning results in 0.001 sec |
When using set optimizer_use_condition_selectivity=1 we get a better query plan than for set optimizer_use_condition_selectivity=[2|3|4|5]
{noformat} set optimizer_use_condition_selectivity=1; analyze SELECT sysapproval_approver0.`sys_id` FROM ((sysapproval_approver sysapproval_approver0 INNER JOIN task task1 ON sysapproval_approver0.`sysapproval` = task1.`sys_id` AND (( task1.`sys_domain_path` = '/' OR task1.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR task1.`sys_domain_path` LIKE '!!!/!!!/%' ))) INNER JOIN task task2 ON task1.`parent` = task2.`sys_id` AND (( task2.`sys_domain_path` = '/' OR task2.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR task2.`sys_domain_path` LIKE '!!!/!!!/%' ))) WHERE task2.`sys_id` LIKE '8e7792a7dbfffb00fff8a345ca961934%' AND ( sysapproval_approver0.`sys_domain_path` = '/' OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!#/!!$/%' OR sysapproval_approver0.`sys_domain_path` LIKE '!!!/!!!/%' ) ORDER BY sysapproval_approver0.`order` LIMIT 0, 50 ; +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra | +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ | 1 | SIMPLE | task2 | range | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | NULL | 1 | 0.00 | 100.00 | 100.00 | Using where; Using temporary; Using filesort | | 1 | SIMPLE | task1 | ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | task_parent | 99 | tt.task2.sys_id | 255 | NULL | 100.00 | NULL | Using index condition; Using where | | 1 | SIMPLE | sysapproval_approver0 | ref | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | tt.task1.sys_id | 176 | NULL | 100.00 | NULL | Using index condition; Using where | +------+-------------+-----------------------+-------+------------------------------------------------------+---------------------------+---------+-----------------+------+--------+----------+------------+----------------------------------------------+ 3 rows in set (0.001 sec) set optimizer_use_condition_selectivity=[2|3|4|5]; -- use 2 or 3 or 4 or 5 +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | r_rows | filtered | r_filtered | Extra | +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ | 1 | SIMPLE | sysapproval_approver0 | range | sysapproval_approver_ref5,sys_domain_path | sysapproval_approver_ref5 | 99 | NULL | 1856810 | 1195428.00 | 100.00 | 100.00 | Using index condition; Using where; Using filesort | | 1 | SIMPLE | task1 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path,task_parent | PRIMARY | 96 | tt.sysapproval_approver0.sysapproval | 1 | 0.00 | 100.00 | 100.00 | Using where | | 1 | SIMPLE | task2 | eq_ref | PRIMARY,sys_class_name_2,sys_domain_path | PRIMARY | 96 | tt.task1.parent | 1 | NULL | 100.00 | NULL | Using where | +------+-------------+-----------------------+--------+------------------------------------------------------+---------------------------+---------+--------------------------------------+---------+------------+----------+------------+----------------------------------------------------+ 3 rows in set (15.906 sec) {noformat} A workaround has been discovered: {noformat} set optimizer_switch="extended_keys=off"; {noformat} extended_keys=off produces a much better query plan, returning results in 0.001 seconds even when set optimizer_use_condition_selectivity=4. |
Component/s | Optimizer [ 10200 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Assignee | Sergei Petrunia [ psergey ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31308 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31319 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31337 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31349 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31356 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31368 ] |
Priority | Major [ 3 ] | Critical [ 2 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31379 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31386 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31393 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31397 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31401 ] |
Labels | ServiceNow |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31415 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31423 ] |
Labels | ServiceNow | 76qDvLB8Gju6Hs7nk3VY3EX42G795W5z |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31429 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31441 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31445 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31451 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31456 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31461 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31470 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31479 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31484 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31490 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31490 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31496 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31506 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31517 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31530 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31539 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31545 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31559 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31575 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31581 ] |
Labels | 76qDvLB8Gju6Hs7nk3VY3EX42G795W5z |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31595 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31602 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31614 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31629 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31641 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31653 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31707 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31718 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31727 ] |
Remote Link | This issue links to "Page (Confluence)" [ 31734 ] |
Remote Link | This issue links to "Page (Confluence)" [ 31743 ] |
Link | This issue relates to MDEV-23707 [ MDEV-23707 ] |
Remote Link | This issue links to "Page (Confluence)" [ 31756 ] |
Remote Link | This issue links to "Page (Confluence)" [ 31805 ] |
Link |
This issue relates to |
Remote Link | This issue links to "Page (Confluence)" [ 31904 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32013 ] |
Assignee | Sergei Petrunia [ psergey ] | Michael Widenius [ monty ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32106 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32209 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32219 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32230 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32232 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32241 ] |
Assignee | Michael Widenius [ monty ] | Sergei Golubchik [ serg ] |
Remote Link | This issue links to "Page (Confluence)" [ 32252 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32263 ] |
Remote Link | This issue links to "Page (Confluence)" [ 32310 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32315 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32328 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32417 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32423 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32510 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Assignee | Sergei Golubchik [ serg ] | Michael Widenius [ monty ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32609 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32629 ] |
Workflow | MariaDB v3 [ 122358 ] | MariaDB v4 [ 143692 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32638 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32643 ] |
Link |
This issue is blocked by |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32663 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32677 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32691 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32701 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32724 ] |
Assignee | Michael Widenius [ monty ] | Sergei Petrunia [ psergey ] |
Status | Stalled [ 10000 ] | In Review [ 10002 ] |
Status | In Review [ 10002 ] | In Testing [ 10301 ] |
Fix Version/s | 10.4.23 [ 26807 ] | |
Fix Version/s | 10.4 [ 22408 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Testing [ 10301 ] | Closed [ 6 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 32746 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31429 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 31602 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 33287 ] |
Remote Link | This issue links to "Page (MariaDB Confluence)" [ 33287 ] |
Labels | optimizer-use-condition-selectivity-slowdown |
Zendesk Related Tickets | 201658 175359 192062 | |
Zendesk active tickets | 201658 |