Frage

Gegeben:

  • 1 Datenbank pro Kunde (Geschäftskunden)
  • 5000 Kunden
  • Die Kunden haben zwischen 2 bis 2000 Benutzer (avg ~ 100 Benutzer / Client)
  • 100k bis 10 Millionen Datensätze pro Datenbank
  • Die Benutzer müssen die Datensätze oft (es ist der beste Weg, um ihre Daten zu navigieren)
  • suchen

Möglicherweise relevante Informationen:

  • Mehrere neue Kunden pro Woche (jederzeit während der Geschäftszeiten)
  • Mehrere Web-Server und Datenbank-Server (Benutzer über einen beliebigen Web-Server anmelden können)
  • Bleiben wir Agnostiker der Sprache oder SQL-Marke, da Lucene (und Solr) eine Breite der Unterstützung

Beispiel:

Joel Spolsky sagte in Podcast # 11 , dass seine gehosteten Web-App-Produkt, FogBugz On-Demand verwendet Lucene. Er hat tausende von On-Demand-Kunden. Und jeder Kunde bekommt ihre eigene Datenbank.

Sie nutzen ein Index pro Client und speichert sie in der Datenbank des Kunden. Ich bin auf die Details nicht sicher. Und ich bin nicht sicher, ob dies ist eine schwere Mod Lucene.

Die Frage:

Wie würden Sie Setup Lucene suchen, so dass jeder Kunde nur innerhalb der Datenbank suchen kann?

Wie würden Sie Setup den Index (es)?
Wo speichern Sie den Index (es)?
Würden Sie benötigen einen Filter auf alle Suchanfragen hinzufügen?
Wenn ein Kunde storniert, wie würden Sie ihre (Teil des) Index löschen? (Dies kann trivial sein - noch nicht sicher)

Mögliche Lösungen:

Erstellen Sie einen Index für jeden Client (Datenbank)

  • Pro: Die Suche ist schneller (als ein Index-für-alle-Methode). Indizes sind auf die Größe des Client-Daten relativ.
  • Con. Ich bin mir nicht sicher, was dies mit sich bringt, und ich weiß nicht, ob dies über Lucene Anwendungsbereich ist

Haben Sie einen einzigen, riesigen Index mit einem Datenbankfeld. Immer auch database_name als Filter.

  • Pro: Nicht sicher. Vielleicht alle Datenbanken für Informationen zu gut für den technischen Support oder Rechnungs dept zu suchen.
  • Con: Die Suche ist langsamer (als Index-pro-Client-Methode). Flawed Sicherheit, wenn Abfragefilter entfernt.

Eine letzte Sache:
Ich würde auch eine Antwort, dass Anwendungen Solr (die Erweiterung von Lucene) akzeptieren. Vielleicht ist es besser für dieses Problem geeignet. Nicht sicher.

War es hilfreich?

Lösung

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.

Andere Tipps

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top