Optmizing MySQL GROUP BY or DISTINCT on large views - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T00:27:36Zhttp://stackoverflow.com/feeds/question/533219http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/533219/optmizing-mysql-group-by-or-distinct-on-large-views1Optmizing MySQL GROUP BY or DISTINCT on large viewsGreg2009-02-10T17:00:33Z2009-02-10T17:23:17Z
<p>Consider a view consisting of several tables... for example a <code>v_active_car</code>, which is made up of the tables <code>car</code> joined on to <code>body</code>, <code>engine</code>, <code>wheels</code> and <code>stereo</code>. It might look something like this:</p>
<p><strong><code>v_active_cars</code> view</strong></p>
<pre><code>SELECT * FROM car
INNER JOIN body ON car.body = body.body_id
INNER JOIN engine ON car.engine = engine.engine_id
INNER JOIN wheels ON car.wheels = wheels.wheels_id
INNER JOIN stereo ON car.stereo = stereo.stereo_id
WHERE car.active = 1
AND engine.active = 1
AND wheels.active = 1
AND stereo.active = 1
</code></pre>
<p>Each component of the car has an "active" flag.
Now, I need to find all the stereos that are available in active cars.
To do this in need to use the whole view, not just the <code>stereo</code> table - just because a stereo is active doesn't mean it's available in a car.</p>
<p>So I can do</p>
<pre><code>SELECT DISTINCT stereo_id FROM v_active_cars
</code></pre>
<p>Even though this may return a very small number of rows, it's stil a very slow query.</p>
<p>I've tried this, but it's even slower:</p>
<pre><code>SELECT stereo_id FROM stereo WHERE EXISTS
(SELECT 1 FROM v_active_cars WHERE stereo_id = stereo.stereo_id)
</code></pre>
<p>Is there anything else I could do to make this faster?</p>
http://stackoverflow.com/questions/533219/optmizing-mysql-group-by-or-distinct-on-large-views/533228#5332281Answer by Learning for Optmizing MySQL GROUP BY or DISTINCT on large viewsLearning2009-02-10T17:04:08Z2009-02-10T17:04:08Z<p>You seem to be doing everything right. The next step would be checking index coverage. </p>
http://stackoverflow.com/questions/533219/optmizing-mysql-group-by-or-distinct-on-large-views/533274#5332740Answer by Quassnoi for Optmizing MySQL GROUP BY or DISTINCT on large viewsQuassnoi2009-02-10T17:12:45Z2009-02-10T17:12:45Z<p>Try this:</p>
<pre><code>SELECT stereo_id
FROM stereo s, (
SELECT *
FROM v_active_cars
ORDER BY stereo_id
) v
WHERE s.active = 1
AND v.stereo = s.stereo_id
</code></pre>
<p><code>ORDER BY</code> here should prevent pushing predicate into the view, and the optimizer should select a hash join.</p>
http://stackoverflow.com/questions/533219/optmizing-mysql-group-by-or-distinct-on-large-views/533283#5332830Answer by Robin Day for Optmizing MySQL GROUP BY or DISTINCT on large viewsRobin Day2009-02-10T17:14:18Z2009-02-10T17:14:18Z<p>You can try creating a view for each part showing only the active ones and then join to those. eg. </p>
<pre><code>VIEW activeCar
SELECT * FROM car WHERE car.active = 1
VIEW activeEngine
SELECT * FROM engine WHERE engine.active = 1
</code></pre>
<p>Then your final view can be</p>
<pre><code>SELECT * FROM activeCar
INNER JOIN activeEngine ON activeCar.engine = activeEngine.engine_id
</code></pre>
<p>Obviously make sure you have an index on the active column.</p>
<p>Another alternative is to have an index on both the id and the active flag. You can then perform the active=1 when joining. This way only one index is used to join rather than one for the id and one for active.</p>
<pre><code>SELECT * FROM car
INNER JOIN body ON car.body = body.body_id AND body.active = 1
INNER JOIN engine ON car.engine = engine.engine_id AND engine.active = 1
INNER JOIN wheels ON car.wheels = wheels.wheels_id AND wheels.active = 1
INNER JOIN stereo ON car.stereo = stereo.stereo_id AND stereo.active = 1
</code></pre>
http://stackoverflow.com/questions/533219/optmizing-mysql-group-by-or-distinct-on-large-views/533317#5333171Answer by Javier for Optmizing MySQL GROUP BY or DISTINCT on large viewsJavier2009-02-10T17:23:17Z2009-02-10T17:23:17Z<ol>
<li>make sure that there are indexes for all the JOINs</li>
<li>in your case, each level is selected both by a key, and a flag. adding the flag as part of the index might allow the DB to use only the index, instead of reading the whole record</li>
<li>make sure you have enough RAM to hold the resultset. InnoDB tables in particular have lots of knobs that you have to tune. most of the defaults assume <em>very</em> old hardware and too little RAM.</li>
</ol>