I have stumbled upon Elastic search which seems to be a very nice full text search engine. It is schema less, distributed, using JSON and RESTful API just like CouchDB.

You can add records and retrieve them, also do powerful search in the texts.

Here are my questions:

  1. Could Elastic search be used as a database?
  2. Why would I want to put documents in CouchDB then put the same documents in Elastic search then only query from Elastic search?
link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

Could Elastic search be used as a database?

Certainly. Whether this is a good idea or not is another question. ES is primary an index-and-search engine, not a database. It is not designed to be resilient, and it doesn't support transactions. If your ES index gets corrupted, then you rebuild it from the source database. If your ES index is the primary datastore, it's going to be on fragile ground, relatively speaking.

Why would I want to put documents in CouchDB then put the same documents in Elastic search then only query from Elastic search?

Because ES has vastly better search capabilities and performance, especially when it comes to ad-hoc queries and full-text searching. In fact, if you look at the CouchDB wiki page on full-text-search, it recommends using 3rd-party add-ons (one of which is ES).

If CouchDB's built-in search capabilities match your requirements, then you have no need for ES.

link|improve this answer
5  
ES could and should be considered a database, not "almost a database". The feature set is really comparable to CouchDB. You're right about durability: CouchDB is very durable. Its durability and _changes feed is precisely the main reason why CouchDB is a great option for storing your data apart from ES. – karmi Jul 10 '11 at 7:17
What "built-in" CouchDB search capabilities are you referring to? – karmi Jul 10 '11 at 7:17
@karmi: I was referring to the view engine – skaffman Jul 10 '11 at 10:24
yeah, but I wouldn't name it "search capabilities" then, since the mechanics differ so much compared to using a search engine such as ES. You have to write map/reduce code for querying/aggregation yourself, where in ES you just define the mapping and feeding. For ad-hoc and complex queries map/reduce views are severely limited in features and power. – karmi Jul 11 '11 at 7:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.