I'm looking ahead to the October StackOverflow public data export, which will hopefully be available before the end of the week. If so, I want to update StackQL to use that data over the weekend. With this release I want to add some additional indexes. I was thinking a full-text on Posts.Body and Comments.Text, but I'm wondering what else people think would be a good idea?

If I don't get any good suggestions I'll just go through the actual queries that were run so far and use those, but I'd like some feed back.

As a side note, if you've had any queries timeout you might go back and try them again.

link|improve this question

22% accept rate
Is there a list of the existing indexes? – Rich Seller Oct 2 '09 at 11:33
Currently it's just the default schema used by Brent Ozar, and that means the only indexes are on the primary keys. Ugh. This month (when it's ready) will be better. – Joel Coehoorn Oct 2 '09 at 12:02
feedback

3 Answers

As a general rule, I would recommend adding an index on any column that is the ID in another table. So, in your comments table, you want to make sure there is an index on PostID. Also ensure that all your ID fields themselves have indexes on them. Depending on how you are loading the data dumps, you may or may not have these indexes already. Also, you want to make sure the tag names themselves are indexed, so we can query by tag name.

link|improve this answer
feedback

Do you have the queries done in the past stored, and isn't there an option for suggested indexes based on queries done on data?

link|improve this answer
Yes, to both. I'm asking for additional suggestions. Because every query is ad hoc, old queries are only a mediocre predictor for what we'll need in the future in this case. Better than nothing, but less than ideal. – Joel Coehoorn Sep 29 '09 at 14:26
Ok cool :) I don't have any suggestions though :P – Ólafur Waage Sep 29 '09 at 14:41
feedback

Since the index building is a one-time operation (once a month, that is), and after that the DB is read-only: Why not just index everything? Assuming you have the storage space, obviously.

link|improve this answer
What does index everything even mean? All combinations of all fields? You would be building indexes all month, plus, there's a good chance that the query optimizer would pick the wrong index if you indexed stuff that didn't actually make sense to have an index on. A seperate index on every field? You would still miss out on some important stuff that requires 2 fields indexed together. Basically you'd end up using a lot of resources and a lot of space for absolutely no benefit. – Kibbee Sep 29 '09 at 20:58
Yes, all fields, not all combinations. If there's a combination that is interesting to have an index on OK, but not all. If storage space is not a problem, I can't think of a reason not to create indexes on all fields; especially since people can make arbitrary queries. – balpha Sep 30 '09 at 17:28
It definitely makes sense to have a lot of indexes, but Kibbee is right: that doesn't mean you just throw them out there willy nilly. – Joel Coehoorn Oct 2 '09 at 12:01
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged