Multi Range Read optimization

You are viewing an old version of this article. View the current version here.

Multi Range Read optimization provides speedup for range, ref, or eq_ref access when

  • each query enumerates lots of records (the range/ref access in question should read about 100K records or more)
  • the load is mostly IO-bound. In other words, there is a high chance that the query will hit the data that's not in disk cache or buffer pool.

Batched Key Access optimization uses MultiRangeRead functionality, so Multi Range Read must be enabled for Batched Key Access to work.

Because Multi Range Read can cause slowdowns when ran for small ranges over small tables, it is disabled by default. To enable it, use the following settings:

SET optimizer_switch='mrr=on,mrr_sort_keys=on,mrr_cost_based=off'

Switching on mrr_cost_based is currently not recommended because cost model is not sufficiently well-tuned to be practically useful.

How Multi Range Read works

The idea of Multi Range Read optimization is that index-based data access can be faster when done in big batches. Normally, SQL engine would

((TODO: pic with regular execution vs MRR execution ))

Differences from MySQL

  • Key-ordered scan is a MariaDB-only development
  • EXPLAIN in MySQL shows "Using MRR", while in MariaDB it is either "Rowid-ordered scan", "Key-ordered scan", or Key-ordered Rowid-ordered scan".
  • for range access, the size of the buffer is controlled by @mrr_buffer_size variable (Original MySQL 6.0 and current MySQL 5.6 use @@read_rnd_buffer_size, which is also used to control buffer size for other algorithms)

See also

Comments

Comments loading...
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.