views:

3294

answers:

3

I'm developing a high-volume web application, where part of it is a MySQL database of discussion posts that will need to grow to 20M+ rows, smoothly.

I was originally planning on using MyISAM for the tables (for the built-in fulltext search capabilities), but the thought of the entire table being locked due to a single write operation makes me shutter. Row-level locks make so much more sense (not to mention InnoDB's other speed advantages when dealing with huge tables). So, for this reason, I'm pretty determined to use InnoDB.

The problem is... InnoDB doesn't have built-in fulltext search capabilities.

Should I go with a third-party search system? Like Lucene(c++) / Sphinx? Do any of you database ninjas have any suggestions/guidance? LinkedIn's zoie (based off Lucene) looks like the best option at the moment... having been built around realtime capabilities (which is pretty critical for my application.) I'm a little hesitant to commit yet without some insight...

(FYI: going to be on EC2 with high-memory rigs, using PHP to serve the frontend)

A: 

Sphinx, as you point out, is quite nice for this stuff. All the work is in the configuration file. Make sure whatever your table is with the strings has some unique integer id key, and you should be fine.

Gregg Lind
+4  A: 

I can vouch for MyISAM fulltext being a bad option - even leaving aside the various problems with MyISAM tables in general, I've seen the fulltext stuff go off the rails and start corrupting itself and crashing MySQL regularly.

A dedicated search engine is definitely going to be the most flexible option here - store the post data in MySQL/innodb, and then export the text to your search engine. You can set up a periodic full index build/publish pretty easily, and add real-time index updates if you feel the need and want to spend the time.

Lucene and Sphinx are good options, as is Xapian, which is nice and lightweight. If you go the Lucene route don't assume that Clucene will better, even if you'd prefer not to wrestle with Java, although I'm not really qualified to discuss the pros and cons of either.

Ian Wilkes
Solr (based on Lucene) can scale hugely and its very powerful and flexible. We have employed Solr (specifically the LucidWorks for Solr edition) and I can say its been a huge win. Sphinx has some serious promise as well but ultimately its lack of datatypes can be troubling, for our application at least. Sphinx is very fast and if it fits your needs is a solid choice as well.
Cody Caughlan
Thanks a bunch you two; great responses. I've been thumbing through Solr's docs, and, that seems like a great solution to go with. It powers quite a few huge websites too, I see. I think Solr's the ticket. Thanks guys.Also, it's good to learn of your MyISAM headaches, Ian... those will be good to have in mind in the future. On other projects, I'll stray away from ever trying to use the fulltext feature.
brianreavis
Was wondering what made Ian say "don't assume that Clucene will better"? as one of the clucene core team I might not be so objective, but to me it seems optimized C++ port of any Java library will boost it's performance up through the roof. I'd recommend anyone not to post such comments without having at least a glance at the product they are dishonoring.
synhershko
+1  A: 

You should spend an hour and go through installation and test-drive of Sphinx and Lucene. See if either meets your needs, with respect to data updates.

One of the things that disappointed me about Sphinx is that it doesn't support incremental inserts very well. That is, it's very expensive to reindex after an insert, so expensive that their recommended solution is to split your data into older, unchanging rows and newer, volatile rows. So every search your app does would have to search twice: once on the larger index for old rows and also on the smaller index for recent rows. If that doesn't integrate with your usage patterns, this Sphinx is not a good solution (at least not in its current implementation).

I'd like to point out another possible solution you could consider: Google Custom Search. If you can apply some SEO to your web application, then outsource the indexing and search function to Google, and embed a Google search textfield into your site. It could be the most economical and scalable way to make your site searchable.

Bill Karwin
Thanks, Bill. Yeah, the Sphinx documentation had me wavering a bit about how it handles the index updates. Good to get it confirmed. That sort of system would probably turn into a nightmare for me, I imagine. As for Google Custom Search, that's an option. However, my main problem with that is just the non-realtime index and lack of customization. Styling the results and pulling additional data will be fairly crucial to me. Thanks for chiming in though---the Sphinx info is certainly good to know!
brianreavis