mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Merge Facebook commit 154c579b828a60722a7d9477fc61868c07453d08 and e8f0052f9b112dc786bf9b957ed5b16a5749f7fd authored by Steaphan Greene from https://github.com/facebook/mysql-5.6 Optimize prefix index queries to skip cluster index lookup when possible. Currently InnoDB will always fetch the clustered index (primary key index) for all prefix columns in an index, even when the value of a particular record is smaller than the prefix length. This change optimizes that case to use the record from the secondary index and avoid the extra lookup. Also adds two status vars that track how effective this is: innodb_secondary_index_triggered_cluster_reads: Times secondary index lookup triggered cluster lookup. innodb_secondary_index_triggered_cluster_reads_avoided: Times prefix optimization avoided triggering cluster lookup.
		
			
				
	
	
		
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| drop table if exists prefixinno;
 | |
| set global innodb_prefix_index_cluster_optimization = ON;
 | |
| show variables like 'innodb_prefix_index_cluster_optimization';
 | |
| Variable_name	Value
 | |
| innodb_prefix_index_cluster_optimization	ON
 | |
| # Create a table with a large varchar field that we index the prefix
 | |
| # of and ensure we only trigger cluster lookups when we expect it.
 | |
| create table prefixinno (
 | |
| id int not null,
 | |
| fake_id int not null,
 | |
| bigfield varchar(4096),
 | |
| primary key(id),
 | |
| index bigfield_idx (bigfield(32)),
 | |
| index fake_id_bigfield_prefix (fake_id, bigfield(32))
 | |
| ) engine=innodb;
 | |
| insert into prefixinno values (1, 1001, repeat('a', 1)),
 | |
| (8, 1008, repeat('b', 8)),
 | |
| (24, 1024, repeat('c', 24)),
 | |
| (31, 1031, repeat('d', 31)),
 | |
| (32, 1032, repeat('x', 32)),
 | |
| (33, 1033, repeat('y', 33)),
 | |
| (128, 1128, repeat('z', 128));
 | |
| select * from prefixinno;
 | |
| id	fake_id	bigfield
 | |
| 1	1001	a
 | |
| 8	1008	bbbbbbbb
 | |
| 24	1024	cccccccccccccccccccccccc
 | |
| 31	1031	ddddddddddddddddddddddddddddddd
 | |
| 32	1032	xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
 | |
| 33	1033	yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
 | |
| 128	1128	zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
 | |
| # Baseline sanity check: 0, 0.
 | |
| no-op query
 | |
| no-op query
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Eligible for optimization.
 | |
| id	bigfield
 | |
| 31	ddddddddddddddddddddddddddddddd
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Eligible for optimization, access via fake_id only.
 | |
| id	bigfield
 | |
| 31	ddddddddddddddddddddddddddddddd
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Not eligible for optimization, access via fake_id of big row.
 | |
| id	bigfield
 | |
| 33	yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Not eligible for optimization.
 | |
| id	bigfield
 | |
| 32	xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Not eligible for optimization.
 | |
| id	bigfield
 | |
| 33	yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Eligible, should not increment lookup counter.
 | |
| id	bigfield
 | |
| 8	bbbbbbbb
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Eligible, should not increment lookup counter.
 | |
| id	bigfield
 | |
| 24	cccccccccccccccccccccccc
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Should increment lookup counter.
 | |
| id	bigfield
 | |
| 128	zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # Disable optimization, confirm we still increment counter.
 | |
| id	bigfield
 | |
| 33	yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
 | |
| cluster_lookups_matched
 | |
| 1
 | |
| cluster_lookups_avoided_matched
 | |
| 1
 | |
| # make test suite happy by cleaning up our mess
 |