Question

Given:

  • 1 database per client (business customer)
  • 5000 clients
  • Clients have between 2 to 2000 users (avg is ~100 users/client)
  • 100k to 10 million records per database
  • Users need to search those records often (it's the best way to navigate their data)

Possibly relevant info:

  • Several new clients each week (any time during business hours)
  • Multiple web servers and database servers (users can login via any web server)
  • Let's stay agnostic of language or sql brand, since Lucene (and Solr) have a breadth of support

For Example:

Joel Spolsky said in Podcast #11 that his hosted web app product, FogBugz On-Demand, uses Lucene. He has thousands of on-demand clients. And each client gets their own database.

They use an index per client and store it in the client's database. I'm not sure on the details. And I'm not sure if this is a serious mod to Lucene.

The Question:

How would you setup Lucene search so that each client can only search within its database?

How would you setup the index(es)?
Where do you store the index(es)?
Would you need to add a filter to all search queries?
If a client cancelled, how would you delete their (part of the) index? (this may be trivial--not sure yet)

Possible Solutions:

Make an index for each client (database)

  • Pro: Search is faster (than one-index-for-all method). Indices are relative to the size of the client's data.
  • Con: I'm not sure what this entails, nor do I know if this is beyond Lucene's scope.

Have a single, gigantic index with a database_name field. Always include database_name as a filter.

  • Pro: Not sure. Maybe good for tech support or billing dept to search all databases for info.
  • Con: Search is slower (than index-per-client method). Flawed security if query filter removed.

One last thing:
I would also accept an answer that uses Solr (the extension of Lucene). Perhaps it's better suited for this problem. Not sure.

Was it helpful?

Solution

You summoned me from the FogBugz StackExchange. My name is Jude, I'm the current search architect for FogBugz.

Here's a rough outline of how the FogBugz On Demand search architecture is set up[1]:

  • For reasons related to data portability, security, etc., we keep all of our On Demand databases and indices separate.
  • While we do use Lucene (Lucene.NET, actually), we've modded its backend fairly substantially so that it can store its index entirely in the database. Additionally, a local cache is maintained on each webhost so that unnecessary database hits can be avoided whenever possible.
  • Our filters are almost entirely database-side (since they're used by aspects of FogBugz outside of search), so our search parser separates queries into full-text and non-full-text components, executes the lookups, and combines the results. This is a little unfortunate, as it voids many useful optimizations that Lucene is capable of making.

There are a few benefits to what we've done. Managing the accounts is quite simple, since client data and their index are stored in the same place. There are some negatives too, though, such as a set of really pesky edge case searches which underperform our minimum standards. Retrospectively, our search was cool and well done for its time. If I were to do it again, however, I would discourage this approach.

Simply, unless your search domain is very special or you're willing to dedicate a developer to blazingly fast search, you're probably going to be outperformed by an excellent product like ElasticSearch, Solr, or Xapian.

If I were doing this today, unless my search domain was extremely specific, I would probably use ElasticSearch, Solr, or Xapian for my database-backed full-text search solution. As for which, that depends on your auxiliary needs (platform, type of queries, extensibility, tolerance for one set of quirks over another, etc.)

On the topic of one large index versus many(!) scattered indices: Both can work. I think the decision really lies with what kind of architecture you're looking to build, and what kind of performance you need. You can be pretty flexible if you decide that a 2-second search response is reasonable, but once you start saying that anything over 200ms is unacceptable, your options start disappearing pretty quickly. While maintaining a single large search index for all of your clients can be vastly more efficient than handling lots of small indices, it's not necessarily faster (as you pointed out). I personally feel that, in a secure environment, the benefit of keeping your client data separated is not to be underestimated. When your index gets corrupted, it won't bring all search to a halt; silly little bugs won't expose sensitive data; user accounts stay modular- it's easier to extract a set of accounts and plop them onto a new server; etc.

I'm not sure if that answered your question, but I hope that I at least satisfied your curiosity :-)

[1]: In 2013, FogBugz began powering its search and filtering capabilities with ElasticSearch. We like it.

OTHER TIPS

Shalin Shekhar Mangar answered me on the Solr-user mailing list and by private email. Shalin is a contributor to Solr and an author of the upcoming book Solr in Action.

His reply on the mailing list:

How would you setup the index(es)?

I'd look at setting up multiple cores for each client. You may need to setup slaves as well depending on search traffic.

Where do you store the index(es)?

Setting up 5K cores on one box will not work. So you will need to partition the clients into multiple boxes each having a subset of cores.

Would you need to add a filter to all search queries?

Nope, but you will need to send the query to the correct host (perhaps a mapping DB will help)

If a client cancelled, how would you delete their (part of the) index? (this may be trivial--not sure yet)

With different cores for each client, this'd be pretty easy.

His reply by email:

I've worked on a similar use-case in the past and we used the multi-core approach with some heavy optimizations on the Solr side. See http://wiki.apache.org/solr/LotsOfCores - I haven't been able to push these changes into Solr yet.

I am still unclear on what exactly from the 5K databases users are searching for, why you need Lucene, and the data sizes in each database. But I will take a whack anyway:

  1. You should be looking at Multicore Solr (each core = 1 index) and you have a unique URL to query. Authentication will still be a problem and one (hackish) way to approach it would be to make the URL hard to guess.

  2. Your webservers can query the Solr instance/core depending on what they have access to.

I'd suggest staying away from the filter approach and creating one huge index combining all databases.

HTH

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top