Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Because it takes forever to make index changes on my 40 million row table, I was hoping to get some feedback to make sure I do it right the first time.

Right now my "favorites" table has 3 indexes:

  • Primary auto-increment index on (id)
  • item_idx (item_id) - the id of the item that was favorited
  • faver_id_idx (faver_profile_id, id) - for displaying favorites from a particular user starting with the most recent.

To check to see if the user has "faved" a particular item I use this query:

SELECT id FROM favorites 
WHERE item_id = '.mysql_real_escape_string($item_id).' 
AND faver_profile_id = '.mysql_real_escape_string($user['id']).' 
AND removed = 0

Which is doing an interect:

Using intersect(item_idx,faver_id_idx)

This seems pretty inefficient to me, so I'm considering the following index setup:

  • Primary auto-increment index on (id)
  • item_faver_idx (item_id, removed, faver_profile_id)
  • faver_id_idx (faver_profile_id, removed, id)

The benefits I see are:

  • I can check if a user has faved an item without doing an intersect or table sort.
  • The "removed" (tinyint) column is now part of the index.

Questions I have:

  • In the (item_id, removed, faver_profile_id) index is there any reason to have faver_profile_id come first instead? For instance, if I'm doing the following query..

    SELECT items.*, users.*, favorites.item_id 
    FROM items
    LEFT JOIN users ON (items.submitter_id = users.id) 
    LEFT JOIN favorites ON (items.id = favorites.item_id AND favorites.faver_profile_id = 56 AND favorites.removed = 0) 
    ORDER BY items.id desc LIMIT 26
    

    Would it be better to have faver_profile_id come first in the index so that it can just jump to the right faver_profile_id section of the index instead of having to check multiple item_id sections, and then scanning for the faver_profile_id within each of those sections?

  • Does it make sense to have "removed" in the index if only 1-3% of rows have a removed value of 1? Basically, is a slightly more efficient table scan worth the extra index size?

Anything I'm overlooking?

share|improve this question
Is this a MyISAM or an InnoDB table? – ypercube Jan 29 '12 at 23:54
WHat other queries and statements do you run often against this table? – ypercube Jan 29 '12 at 23:54
@ypercube: InnoDB and the only queries I run on the favorites table is one that grabs favorites from a particular faver_profile_id and orders by id desc, and the query I posted above that does the intersect. – makeee Jan 30 '12 at 0:04
So an index that has first part the faver_profile_id is needed. If you want to only serach for the removed=0 items for a particular user, an index that starts with (faver_profile_id, removed, ...) would be good. – ypercube Jan 30 '12 at 0:12
So, you might just need a (faver_profile_id, removed, item_id) index and these queries would be ok (no reading at all from the table, just the index). – ypercube Jan 30 '12 at 0:13
show 7 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.