ElasticSearch vs Solr

Hi,

I've been using Solr [1] as an index engine for my web apps for some
time now, and the ElasticSearch focus on JSON is very exciting for me.

What are the advantages of ElasticSearch over Solr?
Is ElasticSearch deployed in production anywhere?

Thanks for your thoughts

Neville

[1] http://lucene.apache.org/solr/

I guess there is no way to hide from the comparison, though what I hope is
that people who are more familiar with Solr than myself will play around
with Elasticsearch and an unbiased review on it.

What I can tell though is that the main different is the distributed model.
Elasticsearch is built from the ground up to be distributed, which Solr
solution is lacking somewhat :). Also, there is multi tenancy (multi
indices, multi types), (near) real time search, atomic operations (no need
to commit), write behind (so indices can be stored in memory and still be
stored in a long term persistence, very cloud friendly, think storing the
index in Amazon S3).

Of course, another feature is the comprehensive support Elasticsearch has
for JSON based domain driven date which is schemaless at its nature. I
think Solr does not really have what Elasticsearch has.

Regarding actual search features, Solr is probably ahead in the game since I
focused mainly on getting the core features into Elasticsearch. In any case,
the search features that I will add will be driven from what I have been
doing for some time in Compass, not sure how exactly they relate to Solr.

I will probably have to write something about it somewhere (blog or
something). But for now, I hope it covers it.

-shay.banon

On Wed, Feb 10, 2010 at 11:11 PM, NevB neville.burnell@gmail.com wrote:

Hi,

I've been using Solr [1] as an index engine for my web apps for some
time now, and the Elasticsearch focus on JSON is very exciting for me.

What are the advantages of Elasticsearch over Solr?
Is Elasticsearch deployed in production anywhere?

Thanks for your thoughts

Neville

[1] Welcome to Apache Solr - Apache Solr