You may have noticed that things have been less responsive than usual on stackoverflow.com. The culprit is SQL Server 2008 full-text search. I’ll let Brent explain:

Before 2008, full text search wasn’t inside the database – it wasn’t subject to things like transactions. Heck, it was more like Lucene where it lived outside on its own. Now, it’s stored inside data files and it’s subject to transactions. From what im hearing, blocking and locking is a completely new issue in 2008 FTS. There’s a big overhead involved with making it subject to transactions.

In most environments, you don’t see full text being used for transactions. At StackOverflow, you’re doing heavy transactional activity on the same fields that you’re doing analytical, many-record selects.

If you do a full text search on Revisions and you include a common keyword like, say, SQL, you’re going to match tens of thousands of records. When I look at the query plans for these, I’m seeing 50-100k reads. Doing that inside a table that’s also getting heavy inserts – boom, transactional disaster.

We rely heavily on full-text search on stackoverflow.com, which worked amazingly well for us under SQL Server 2005. Looks like that’s no longer the case for SQL Server 2008, unfortunately.

Brent is following up with the SQL Server team on this, and they have a copy of our database to test against. (Brent has given so incredibly generously of his time on the database front that I’m adding him to the stackoverflow.com virtual team — he’ll get a place on the About page with the rest of the team.) Based on the stunningly poor SQL Server 2008 full text results so far, and the apparent architecture changes, I’m pessimistic that the SQL team will be able to do anything for us.

We had always planned to move to lucene.net in the future; looks like we’ll need to move that timetable up aggressively. I’ll see what I can do over the weekend to make that happen.

« Podcast #27
Podcast #28 »

43 Responses

  1. Haacked says:

    We used Lucene.NET at Koders to power our search engine. It’s definitely ready for prime time.

  2. Jim says:

    Take a look at DBSight. It works great on Windows too.
    http://www.dbsight.net/

  3. Ant says:

    Knowing this, would you have moved to 2008?

  4. Esteban says:

    Know your dependencies, right?

  5. tamberg says:

    “The culprit is SQL Server 2008 full-text search” sounds like “SELECT is broken”.

    Regards,
    tamberg

  6. Jason says:

    You should try Sphinx – http://www.sphinxsearch.com

  7. Brent Ozar says:

    @tamberg – heh, nice reference, but we’ve been able to reproduce it inside SQL Server Management Studio with a one-line select query. I’ve got a pair of identical VMs set up in my lab, one with 2005 and one with 2008, that appear to exhibit the same behavior. If you search the web for trace flag 7646, we’re not the first ones to run into this challenge.

  8. kip says:

    Maybe I’m missing something, but why not go back to SQL Server 2005 until you have your Lucene solution ready? If it was working fine a month ago why is it necessary to use 2008 right now?

  9. Pure Krome says:

    @Brent: please please please please please keep us posted to any info / solutions, etc. Can u bribe the SO team to do a blog post when you guys get some definitive answers on this?

    /me hands u over a bag ‘o gold as bribery.

  10. faulty says:

    Was the down time on stackoverflow.com few hours ago caused by this?

  11. Pat says:

    Dated info here. But when I worked at LinkedIn, I did performance work comparing the java version of lucene to mysql full text, and oracle’s full text capabilities. I found out that lucene was significantly faster. Don’t remember the exact numbers (several years ago so they will not be meaningful anyhow) but I would make the move to lucene… and never look back. LinkedIn uses lucene to this day to support searches.

  12. Joe W. says:

    Sphinx is definitely worth a look. In our tests, Sphinx was faster and less memory-intensive than Lucene.

  13. KG2V says:

    Ugh – NOT good, we have a rather large database that lives on FTS. Back during the SQL7 beta, we were looking at all sorts of products, and Msft had us send them a copy of our database because perforance was so bad. The made changes to the design at that time. I wonder….

  14. tonetheman says:

    I am sure access would have better performance or maybe foxpro! :)

  15. Jonathan Holland says:

    What exactly are you using FTS for? If your using it for anything besides the SO search engine, your DB schema is horribly broken.

    And, from what I gather nobody uses the SO search engine anyways because its horribly broken. I just use google to search SO.

  16. cad says:

    Is it becaue the service is named differently? there is a similar problem in ms dynamics 4.0, where it cant find the service, so it wont install.

    I fixed this by exporting the reg entry for the service, renaming it in the .reg file, and re-importing it.

    give it a go, it might work properly for you, otherwise, just delete it afterwards.

  17. Brent Ozar says:

    @Jonathan Holland – if anybody could tell them their DB schema is broken, it’d be me coming in as an outsider when they’re having performance issues. I think the schema’s rather elegant in the way that it uses full text search, actually. I can’t speak for the actual search results, but going by what I’ve seen behind the scenes, I’d bet you’d get better results out of SO’s search than Google’s.

    @Pure Krome – if we find a workaround, of course we would post it. I wouldn’t want other folks to run into the same issues that we’ve had. Look at Jeff’s blog, look at my blog, and does it sound like we’re the types to keep stuff under the rug? Heh.

    @cad – thanks for the suggestion, but it’s got nothing to do with that.

    @KG2V – SQL 2008’s FTS is faster unless you’re doing it on a heavily transactional database. Think OLTP 24/7 web access with a constant stream of CRUD operations, plus full text scans across the same pages that you’re inserting/updating/deleting on. I don’t know that it’s not faster in that scenario, too – it just hasn’t been for us yet.

  18. Jesus DeLaTorre says:

    Hey Jeff. I’m actually an SDET for SQL Server Engine. The guys that work on fulltext are literally a couple of doors down from my office. Let me know if you are not getting any traction or need help resolving this issue.

  19. Brent Ozar says:

    Jesus – can you email me at brento@brentozar.com? I’ve been emailing with Denis Churin, but the more the merrier. I can forward you more info on the specifics that we’re seeing.

  20. Kevin says:

    Brent,

    Have you tried turning on READ_COMMITTED_SNAPSHOT, I wonder if having multi-version concurrency would help prevent MS SQL Server 2008 Full Text Search from locking the tables during search. In general it sounds like snapshot isolation would help the performance of stackoverflow.com, since it optimizes the read mostly write sometimes cases. I’d be curious, cause if snap shot isolation doesn’t help search I don’t see upgrading to 2008 as an option if it is going to be locking tables for searching.

  21. Scott says:

    Why not switch it back to 2005 for the time being, plus you can see if there are any perf problems from the switch to the new server… I think it was a mistake changing those 2 major things at once– (sql and the server)

  22. Brent Ozar says:

    @Kevin – That’s a really interesting idea! I’m going to give that a shot in my lab environment and see if that helps. Even if it doesn’t, I like your thinking!

  23. Kevin says:

    @Brent – Glad I could help. If you have the time, let us know how it turns out. Good luck.

  24. Andrew says:

    The real question, of course, is why did you move to SQL Server 2008 without doing performance testing? Did you even need to move to forward to 2008?

  25. Robert C. Barth says:

    Setting the isolation level to READ UNCOMMITTED for the read queries (the one’s using the full text index search) doesn’t completely fix this problem?

    Oops, I guess I should read all of the responses. Um, the snapshot isolation level is not required in the full-text index case, in my opinion, as I /seriously/ doubt there’s data in the text of a title or post that matters if the data is old, and the overhead of the snapshot is not warranted in that case.

  26. mycall says:

    While Lucene.net is WAY faster than SQL 2005/2008 FT, it is more of a pain to manage. I suggest using a Command design pattern when querying Lucene.net.

  27. edolnx says:

    Have you tried using a WITH (NOLOCK) hint on your SELECT queries? We have to do that here to prevent locking madness. Yes, it sucks to do SQL Server’s job for it, but it may help.

  28. Iain says:

    You should take a look at Solr
    It sits on top of lucene you could create a faceted navigation with your tags.
    http://lucene.apache.org/solr/
    Its used at Allrecipes.co.uk

  29. Ahm B says:

    I am trying to go to Stackoverflow.com, but all I get is a blank HTML page !!
    Are you doing maintenance ?

  30. Eric Caron says:

    For everyone suggesting SphinxSearch, do you have any documented cases of being able to use it against a Microsoft SQL backend?

  31. David says:

    This is what happens when you depend on Microsoft products.

  32. Spinlock says:

    We use FTS at work on SQL 2005. For a 1/2 million rows. Against a view of those rows. It sucks. We have to rebuild the full text index every day or two, otherwise we get time out errors.

    I’m sure glad I saw your write-up on SQL 2008 – we’ll be looking for external FTS rather than upgrading and praying!

  33. Jerry Hung says:

    SQLCAT team just posted

    Best Practices for Integrated Full Text Search (iFTS) in SQL 2008

    http://sqlcat.com/msdnmirror/archive/2008/11/05/best-practices-for-integrated-full-text-search-ifts-in-sql-2008.aspx

  34. Nick L says:

    Another vote for Solr instead of plain Lucene. The performance and features are pretty amazing, and it’s a lot easier to integrate.

  35. Glen S says:

    Eric Caron -

    Sphinx can actually use XML as its input, so you could pull the data out of MSSQL as XML, feed it in to sphinx, and go from there.

    We’re using Sphinx internally. Not a lot of queries, but it is extremely fast.

  36. Ezequiel says:

    I second edolnx, woudln’t using WITH (NOLOCK) solve the problem?

  37. viralpatel.net says:

    Is the problem solved?
    Full-text search in MySQL?
    http://viralpatel.net/blogs/2009/04/full-text-search-using-mysql-full-text-search-capabilities.html

  38. Alan Jobs says:

    Wow, I am working on this these days. Thanks!

  39. Alex42 says:

    Any progress about this issue? http://stackoverflow.com/questions/1063498/sql-server-2008-full-text-search-fts-extremely-slow-when-more-than-one-contains

  40. Fernando Azpeitia Lopez says:

    Hello All,

    After seeing the logical concern expressed in this blog in relation with this issue, it is important that my team (SQL Server Full-Text Search) shares with you the causes and resolution of this problem from SQL Server’s side.
    Thanks again for your feedback and interest in this area.

    High level description of the problem:

    There are mainly two processes involved here: Queries and Background merges. Background merges reduce the number of fragments composing the Full-text Index and improve query performance. They are kicked off automatically when certain heuristics are met. When a background merge starts it locks some pieces of metadata that queries might require to lock as well. This transaction typically very short, but needed.

    When a query is heavy and takes longer to execute than some milliseconds, we have observed that background merges gets convoyed behind these long running queries and queries issued after the merge transaction starts, have to wait the duration of the long running query before they start running degrading performance severely.

    Resolution

    There was a QFE request tacking this specific issue: 50003651 – SQL 2008 Performance is poor when concurrent queries are executed. The fixes made it into cumulative update (CU) #4 going to be available in upcoming public cumulative updates (PCUs).

    Again, sorry for the problems this issue might have brought to you and we hope our completed fixes satisfy your current and future requirements.

    Best Regards,

  41. srv says:

    Brent,

    Issue solved with the cumulative update? Or moved over to Lucene.net. I found the .net version of Lucene lacks many features. So its better to use the Java version.

    Regards,
    SRV

  42. Ryan says:

    Any new information with this issue, has it been resolved?

  43. srv says:

    It got solved!

    http://www.brentozar.com/archive/2008/11/stackoverflows-sql-2008-fts-issue-solved/

Leave a Reply