SQL query : inner joins optimization between big tables - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T10:49:21Zhttp://stackoverflow.com/feeds/question/511452http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables2SQL query : inner joins optimization between big tablesNicolas2009-02-04T13:54:09Z2009-02-06T07:00:11Z
<p>Hello,</p>
<p>I have the 3 following tables in a MySQL 4.x DB :</p>
<ul>
<li>hosts: <em>(300.000 records)</em>
<ul>
<li>id (UNSIGNED INT) PRIMARY KEY</li>
<li>name (VARCHAR 100)</li>
</ul></li>
<li>paths: <em>(6.000.000 records)</em>
<ul>
<li>id (UNSIGNED INT) PRIMARY KEY</li>
<li>name (VARCHAR 100)</li>
</ul></li>
<li>urls: <em>(7.000.000 records)</em>
<ul>
<li>host (UNSIGNED INT) PRIMARY KEY <--- links to hosts.id</li>
<li>path (UNSIGNED INT) PRIMARY KEY <--- links to paths.id</li>
</ul></li>
</ul>
<p>As you can see, the schema is really simple but the problem is the amount of data in these tables.</p>
<p>Here is the query I'm running :</p>
<pre><code>SELECT CONCAT(H.name, P.name)
FROM hosts AS H
INNER JOIN urls as U ON H.id = U.host
INNER JOIN paths AS P ON U.path = P.id;
</code></pre>
<p>This query works perfectly fine, but takes 50 minutes to run. Does anyone have any idea about how I could speed up that query?</p>
<p>Thanks in advance.
Nicolas</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511461#5114613Answer by Mitch Wheat for SQL query : inner joins optimization between big tablesMitch Wheat2009-02-04T13:56:48Z2009-02-04T13:56:48Z<p>Perhaps you should include a WHERE clause? Or do you really need ALL the data?</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511462#5114621Answer by Leonidas for SQL query : inner joins optimization between big tablesLeonidas2009-02-04T13:57:50Z2009-02-04T13:57:50Z<p>Have you already declared some indexes on the join-attributes?</p>
<p>PS: See <a href="http://dev.mysql.com/doc/refman/4.1/en/mysql-indexes.html" rel="nofollow">here</a> for indexes on MySQL 4.x</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511466#5114661Answer by cletus for SQL query : inner joins optimization between big tablescletus2009-02-04T13:58:36Z2009-02-04T13:58:36Z<p>For one thing I wouldn't do the CONCAT in the query. Do it outside.</p>
<p>But really you're query runs slowly because you're retrieving millions of rows.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511475#5114751Answer by tehvan for SQL query : inner joins optimization between big tablestehvan2009-02-04T14:02:02Z2009-02-04T14:02:02Z<p>Try optimizing your tables before you run the query:</p>
<pre><code>optimize table hosts, paths, urls;
</code></pre>
<p>It might save you some time, especially if rows have been deleted from the tables.
(see <a href="http://dev.mysql.com/doc/refman/4.1/en/optimize-table.html" rel="nofollow">http://dev.mysql.com/doc/refman/4.1/en/optimize-table.html</a> for more information on OPTIMIZE)</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511480#5114800Answer by Ryan Guill for SQL query : inner joins optimization between big tablesRyan Guill2009-02-04T14:02:40Z2009-02-04T14:02:40Z<p>The concat is definitely slowing you down. Can we see the results of a mysql explain on this? <a href="http://dev.mysql.com/doc/refman/4.1/en/explain.html" rel="nofollow">Documentation Link</a> </p>
<p>The biggest thing to do is to try and pull only the data you need though. If you can pull fewer records that will speed you up as much as anything. But a mysql explain should help us see if any indexes would help.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511482#5114821Answer by jaloplo for SQL query : inner joins optimization between big tablesjaloplo2009-02-04T14:04:15Z2009-02-04T14:04:15Z<p>I'd try to create a new table with the data you wanna get. Doing this means that you lose some real data but you win in quickness. Could this idea be similar to OLAP or something like that?</p>
<p>Of course, you have to do an update (daily or whatever) of this table.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511504#5115044Answer by Tony Andrews for SQL query : inner joins optimization between big tablesTony Andrews2009-02-04T14:09:41Z2009-02-04T15:38:55Z<p>This looks to me like a case where over-zealous use of surrogate keys is slowing you down. If the tables were:</p>
<ul>
<li><p>hosts :</p>
<ul>
<li>name (VARCHAR 100) PRIMARY KEY</li>
</ul></li>
<li><p>paths :</p>
<ul>
<li>name (VARCHAR 100) PRIMARY KEY</li>
</ul></li>
<li><p>urls :</p>
<ul>
<li>host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name</li>
<li>path (VARCHAR 100) PRIMARY KEY <--- links to paths.name</li>
</ul></li>
</ul>
<p>Then your query would require no joins at all:</p>
<pre><code>SELECT CONCAT(U.host, U.path) FROM urls U;
</code></pre>
<p>True, table URLS would occupy more disk space - but does that matter?</p>
<p><strong>EDIT:</strong> On second thoughts, what is the point of that PATHS table anyway? How often do different hosts share the same paths?</p>
<p>Why not:</p>
<ul>
<li><p>hosts :</p>
<ul>
<li>name (VARCHAR 100) PRIMARY KEY</li>
</ul></li>
<li><p>urls :</p>
<ul>
<li>host (VARCHAR 100) PRIMARY KEY <--- links to hosts.name</li>
<li>path (VARCHAR 100) PRIMARY KEY <--- no link to anywhere</li>
</ul></li>
</ul>
<p><strong>EDIT2:</strong> Or if you really <strong>need</strong> the surrogate key for hosts:</p>
<ul>
<li><p>hosts :</p>
<ul>
<li>id integer PRIMARY KEY</li>
<li>name (VARCHAR 100)</li>
</ul></li>
<li><p>urls :</p>
<ul>
<li>host integer PRIMARY KEY <--- links to hosts.name</li>
<li>path (VARCHAR 100) PRIMARY KEY <--- no link to anywhere</li>
</ul>
<p><p>SELECT CONCAT(H.name, U.path) FROM urls U
JOIN hosts H ON H.id = U.host;</p></li>
</ul></p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511573#5115730Answer by kristof for SQL query : inner joins optimization between big tableskristof2009-02-04T14:26:55Z2009-02-04T14:26:55Z<p>I understand that you want a complete list of urls - which is 7 million records.
Perhaps <a href="http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511461#511461">as sugested by Mitch</a> you should consider using the WHERE clause to filter your results.
Perhaps the timing is mainly related to the delay in displaying records</p>
<p>check time for this query </p>
<pre><code>select count(*)
FROM hosts AS H
INNER JOIN urls as U ON H.id = U.host
INNER JOIN paths AS P ON U.path = P.id
</code></pre>
<p>If this is still slow I would go and check timing for
select count(*) from urls </p>
<p>then</p>
<pre><code>select count(*)
from urls u
inner join hosts h on u.host = h.id
</code></pre>
<p>then</p>
<pre><code>select count(*)
from urls u
inner join hosts h on u.host = h.id
inner join paths p on u.path = p.id
</code></pre>
<p>just to locate the source of the slow down</p>
<p>Also sometimes reordering your query can help</p>
<pre><code>SELECT CONCAT(u.host, u.path)
from urls u
inner join hosts h on u.host = h.id
inner join paths p on u.path = p.id
</code></pre>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511581#5115810Answer by HLGEM for SQL query : inner joins optimization between big tablesHLGEM2009-02-04T14:28:20Z2009-02-04T14:28:20Z<p>I can't say for sure about mySQL but I know in SQL Server that primary keys create an index automatically but foreign keys do not. Make sure to check that there is an index on your foreign key fields.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511598#5115981Answer by Christian Nunciato for SQL query : inner joins optimization between big tablesChristian Nunciato2009-02-04T14:33:21Z2009-02-04T14:51:51Z<p>I'm no MySQL expert, but it looks like MySQL primary keys are clustered -- you'll want to make sure that's the case with your primary keys; clustered indexes will definitely help speed things up.</p>
<p>One thing, though -- I don't believe you can have two "primary" keys on any table; your urls table looks rather suspect to me for that reason. Above all, you should make absolutely sure those two columns in the urls table are indexed to the hilt -- a single numeric index on each one should be fine -- because you're joining on them, so the DBMS needs to know how to find them quickly; that could be what's going on in your case. If you're full-table-scanning that many rows, then yes, you could be sitting there for quite some time while the server tries to find everything you asked for.</p>
<p>I'd also suggest removing that CONCAT function from the select statement, and seeing how that affects your results. I'd be amazed if that weren't a contributing factor somehow. Just retrieve both columns and handle the concatenation afterward, and see how that goes.</p>
<p>Lastly, have you figured out where the bottleneck is? Just joining on three several-million-row tables shouldn't take much time at all (I'd expect maybe a second or so, just eyeballing your tables and query), provided the tables are properly indexed. But if you're pushing those rows over a slow or already-pegged NIC, to a memory-starved app server, etc., the slowness could have nothing to do with your query at all, but instead with what happens after the query. Seven million rows is quite a bit of data to be assembling and moving around, regardless of how long the finding of those rows happens to take. Try selecting just one row instead, rather than all seven million, and see how that looks by contrast. If that's fast, then the problem isn't the query, it's the result set.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511638#5116381Answer by Dave Costa for SQL query : inner joins optimization between big tablesDave Costa2009-02-04T14:41:57Z2009-02-04T14:41:57Z<p>Overall, the best advice is to trace and profile to see what is really taking up time. But here are my thoughts about specific things to look at.</p>
<p>(1) I would say that you want to ensure that indexes are NOT used in the execution of this query. Since you have no filtering conditions, it should be more efficient to full-scan all the tables and then join them together with a sort-merge or hash operation.</p>
<p>(2) The string concatenation is surely taking some time, but I don't understand why people are recommending to remove it. You would presumably then need to do the concatenation in another piece of code, where it would still take about the same amount of time (unless MySQL's string concatenation is particularly slow for some reason).</p>
<p>(3) The data transferral from the server to the client is probably taking significant time, quite possibly more than the time the server needs to fetch the data. If you have tools to trace this sort of thing, use them. If you can increase the fetch array size in your client, experiment with different sizes (e.g. in JDBC use Statement.setFetchSize() ). This can be significant even if the client and server are on the same host.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/511776#5117761Answer by Dems for SQL query : inner joins optimization between big tablesDems2009-02-04T15:15:55Z2009-02-04T15:15:55Z<p>As your result set returns all data, there is very little optimisation that can be done at all. You're scanning the whole table, then joining on other tables that have indexes. </p>
<p>Are the PrimaryKeys Clustered? This ensures that the data is stored on the disk in the index order, so avoiding bouncing around different parts of the disk.</p>
<p>Also, you can have the data spread over multiple disks. If you have URLs on PRIMARY and PATHS/HOSTS on SECONDARY then you'll get better throughput from the drives.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/519308#5193081Answer by staticsan for SQL query : inner joins optimization between big tablesstaticsan2009-02-06T06:28:02Z2009-02-06T06:28:02Z<p>You need to look at your server configuration. The default memory parameters for MySQL will cripple performance on a table that size. If you are using the defaults, you need to raise at least <code>key_buffer_size</code> and <code>join_buffer_size</code> by at least a factor of 4, perhaps much more. Look in the documentation; there are other memory parameters you can tweak.</p>
<p>MySQL has a funny performance quirk where if your tables go over a certain size with queries that will return most of the data, performance goes into the toilet. Unfortunately, it has no way of telling you when that threshold is reached. It looks to me like you have, though.</p>
http://stackoverflow.com/questions/511452/sql-query-inner-joins-optimization-between-big-tables/519376#5193760Answer by Zan Lynx for SQL query : inner joins optimization between big tablesZan Lynx2009-02-06T07:00:11Z2009-02-06T07:00:11Z<p>Since I am not a big MySQL fan, I would ask if you have tried PostgreSQL. In that DB, you would want to make sure that your work_mem setting was quite high, but you can set it per DB connection with SET work_mem = 64MB, for example.</p>
<p>Another suggestion is to look into using duplicate path entries. There <strong>are</strong> many URLs that share paths.</p>
<p>Another thing that might or might not help is using fixed-length text fields instead of varchars. It used to make a speed difference but I'm not sure about current DB engines.</p>
<p>If you do use PostgreSQL it will let you use JOIN USING but even on MySQL I like it more: name your id field the same in every table. Instead of id in hosts and host in urls, name it host_id both places.</p>
<p>Now some more commentary. :)
This data layout you have here is very useful when you are selecting a small set of rows, perhaps every URL from the same domain. It can also help a <strong>lot</strong> if your queries often need to do sequential scans of the urls table for other data stored there, because the scan can skip over the large text fields (Unless it doesn't matter because your DB stores text via pointers to a linked table anyway). </p>
<p>However, if you almost always select all the domain and path data, then it makes more sense to store it in one table.</p>