ElasticSearch is an Open Source (Apache 2), Distributed, RESTful, Search Engine built on top of Lucene.
117
votes
2answers
38k views
Solr vs. ElasticSearch [closed]
What are the core architectural differences between these technologies?
Also, what use cases are generally more appropriate for each?
40
votes
4answers
9k views
Beginner's guide to ElasticSearch [closed]
There hasn't been any books about ElasticSearch (that I know of), and http://www.elasticsearch.org/guide/ seems to contain only references.
Any good beginner's guide or tutorials, perhaps by ...
27
votes
4answers
7k views
Elasticsearch as a database? [closed]
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 ...
15
votes
1answer
2k views
ElasticSearch — boosting relevance based on field value
Need to find a way in ElasticSearch to boost the relevance of a document based on a particular value of a field. Specifically, there is a special field in all my documents where the higher the field ...
14
votes
3answers
3k views
How to test ElasticSearch in a Rails application (Rspec)
I was wondering how you were testing the search in your application when using ElasticSearch and Tire.
How do you setup a new ElasticSearch test instance? Is there a way to mock it?
Any gems you ...
13
votes
2answers
2k views
Elasticsearch, Tire, and Nested queries/associations with ActiveRecord
I'm using ElasticSearch with Tire to index and search some ActiveRecord models, and I've been searching for the "right" way to index and search associations. I haven't found what seems like a best ...
13
votes
2answers
3k views
Define custom ElasticSearch Analyzer using Java API
Is there a way to create an index and specify a custom analyzer using the Java API? It supports adding mappings at index creation, but I can't find a way to do something like this without sending the ...
12
votes
2answers
3k views
Practical Limits of ElasticSearch + Cassandra
I am planing on using ElasticSearch to index my Cassandra database. I am wondering if anyone has seen the practical limits of ElasticSearch. Do things get slow in the petabyte range? Also, has anyone ...
12
votes
1answer
5k views
elastic search query to return all records
I have a small database in elastic search and for testing purposes would like to pull all records back. I am attempting to use a URL of the form...
...
10
votes
3answers
5k views
How to search for a part of a word with ElasticSearch
I've recently started using ElasticSearch and I can't seem to make it search for a part of a word.
Example: I have three documents from my couchdb indexed in ElasticSearch:
{
"_id" : "1",
"name" ...
10
votes
4answers
3k views
running Elastic Search as a Windows service
Is there a way to run Elastic Search as a Windows service? It may not be possible, but I thought I would see.
10
votes
2answers
486 views
Restart elasticsearch node
What is the proper way to restart node in elasticsearch? (preferably via the REST API, java API might be ok too)
9
votes
1answer
2k views
Authentication in Elasticsearch
How to define security access in Elasticsearch? I have the elasticsearch-head plugin but your access don't require any security.
9
votes
2answers
2k views
Solandra vs. ElasticSearch
We are working with a Cassandra database that will store data in the petabyte range. We are thinking of using either ElasticSearch or Solandra, but we are having a fun time deciding between which to ...
8
votes
1answer
3k views
Unable to run ElasticSearch as a service on Ubuntu [closed]
I'm trying to get ElasticSearch up and running following the normal setup guide.
Everything is running fine on my Macbook but I'm trying to do the same on an Ubuntu 11.04 server.
Running ...
8
votes
3answers
1k views
Best practices for searchable archive of thousands of documents (pdf and/or xml)
Revisiting a stalled project and looking for advice in modernizing thousands of "old" documents and making them available via web.
Documents exist in various formats, some obsolete: (.doc, PageMaker, ...
8
votes
5answers
6k views
Mongodb : Full text search options
We are planning to store millions of documents in Mongodb and full text search is very much required. I read ElasticSearch or Solr are the best available solution for full text search.
-- Is Elastic ...
8
votes
1answer
2k views
When do you start additional Elasticsearch nodes?
I'm in the middle of attempting to replace a Solr setup with Elasticsearch. This is a new setup, which has not yet seen production, so I have lots of room to fiddle with things and get them working ...
8
votes
3answers
2k views
Can I customize Elastic Search to use my own Stop Word list?
specifically, I want to index everything (e.g. the who) with no stop word list. Is elastic search flexible enough and easy enough to change?
8
votes
1answer
2k views
elasticsearch fuzzy matching max_expansions & min_similarity
I'm using fuzzy matching in my project mainly to find misspellings and different spellings of the same names. I need to exactly understand how the fuzzy matching of elastic search works and how it ...
8
votes
1answer
1k views
Elasticsearch and NoSql database
What is the use to use both ElasticSearch and a separated Nosql database ?
Can't Elasticsearch be used both as a database and for search indexing ?
8
votes
2answers
8k views
Any good tutorial for ElasticSearch Query params (DSL query)
I have been working with the ElasticSearch from last few months, but still find it complicated when I have to pass an complicated query.
I want to run the query which will have to search the multiple ...
8
votes
1answer
2k views
Elastic Search - implement “Did you Mean”
We are trying to use Elastic Search in a Rails app and would like any input/code example on the implementation of "did you mean" feature. Essentially, we want to provide the end user an option to ...
8
votes
2answers
542 views
How can ElasticSearch be used to implement social search?
I’m trying to create a business search with social features using ElasticSearch. I have a business directory, and users can interact with those businesses in different ways: by reviewing them, ...
7
votes
2answers
5k views
Elastic Search: how to see the indexed data
I had a problem with ElasticSearch and Rails, where some data was not indexed properly because of attr_protected. Where does Elastic Search store the indexed data? It would be useful to check if the ...
7
votes
2answers
4k views
How to secure an Internet-facing Elastic Search implementation in a shared hosting environment? [closed]
I've been going over the documentation for Elastic Search and I'm a big fan and I'd like to use it to handle the search for my ASP.NET MVC app.
That introduces a few interesting twists, however. If ...
7
votes
2answers
2k views
Multi-index Searching in ElasticSearch (Tire)
Large web applications offer a "global" search which combines data from various fulltext indices (this would be a table in SQL) to provide a combined search result ordered by its score. So lets say ...
7
votes
1answer
4k views
ElasticSearch mapping doesn't work
I'm trying to set up an ElasticSearch index with different analyzers for the individual fields. However, I can't seem to find a way to set field-specific analyzers; here's how I create my (test) ...
7
votes
1answer
513 views
Can We Retrieve Previous _source Docs with Elastic Search Versions
I've read the blog post on ES regarding versioning: http://www.elasticsearch.org/blog/2011/02/08/versioning.html
However, I'd like to be able to get the previous "_souce" documents from an update.
...
7
votes
1answer
2k views
Search ElasticSearch via GET using JSON
Anyone know of a way to send a JSON query to an ElasticSearch server via HTTP GET? I know you can POST the JSON content to _search, but POST is not available because this is cross-domain. For ...
7
votes
1answer
1k views
Elasticsearch - Assigning Shards
I have recently discovered Elasticsearch and I decided to have a play. Unfortunately I am having trouble with adding indexes.
The code used to add an index is as follows and runs every time a new ...
7
votes
1answer
1k views
What advantages does MongoDB offer over ElasticSearch as a NoSQL database only
I'm quite new to NoSql databases, but I'm really lovin' MongoDB with the official c# driver. It's currently the backend to an MVC application I'm writing, and the simplicity AND speed make my life way ...
7
votes
0answers
430 views
How can i organize my ElasticSearch indexes? [closed]
I'm new to ElasticSearch which i try to use to help a cool startup that needs a search engine.
My usecase is:
Each user of the website has its personal space where he can create text documents
Each ...
6
votes
2answers
5k views
mongodb fulltext searching strategy
We are trying to develop a strategy for using elasticsearch for full-text searching on our mongodb instance. It would appear that every key that we want to use as a filter must be included in elastics ...
6
votes
1answer
1k views
ElasticSearch & Tire: Using Mapping and to_indexed_json
While reading the Tire doc, I was under the impression that you should use either mapping or to_indexed_json methods, since (my understanding was..) the mapping is used to feed the to_indexed_json.
...
6
votes
2answers
3k views
How to search nested objects with elastic-search
OK, I've not been able to figure this out thus far. Hoping someone can offer some insight.
Given the documents below, how would I search for all documents with a video that has "test" in the video ...
6
votes
5answers
2k views
Elasticsearch clients for python, no solution
I am having a very bad week having chosen elasticsearch with graylog2. I am trying to run queries against the data in ES using Python.
I have tried following clients.
ESClient - Very weird results, ...
6
votes
1answer
2k views
ElasticSearch's Fuzzy Query
I am brand new to ElasticSearch, and am currently exploring its features. One of them I am interested in is the Fuzzy Query, which I am testing and having troubles to use. It is probably a dummy ...
6
votes
1answer
1k views
Elasticsearch: excluding filters while faceting possible? (like in Solr)
I'm looking into changing from Solr to ES.
One of the things I can't find info about is whether ES lets me define exclusion filters when faceting.
For example consider producttype with values: ...
6
votes
2answers
1k views
Java HTTP Client for ElasticSearch
I'm trying to connect from Java to ElasticSearch but I can only connect over HTTP. I can't use the TransportClient. Is there a Java client wrapper around the ElasticSearch REST APIs? If so, how do ...
6
votes
1answer
1k views
Make elasticsearch only return certain fields?
I'm using elasticsearch to index my documents.
Is it possible to instruct it to only return particular fields instead of the entire json document it has stored?
6
votes
1answer
793 views
elasticsearch vs solr regarding data structure/query features
I've seen many questions (and good answers) comparing the scalability, speed, and deployment scenarios for elasticsearch and Solr, but I can't seem to find good information regarding any differences ...
6
votes
1answer
223 views
Does elasticsearch have the equivalent of 'cores' like in solr?
I'm eyeballing the use of ElasticSearch or solr for 'jailed' search results. By jailed I want to keep sets of data apart for security purposes, etc.
As far as I can tell, this is possible by use of ...
6
votes
1answer
2k views
How to upgrade a running Elasticsearch older instance to a newer version?
Essentially I cannot find documents or resources that explains the procedure of upgrading a running Elasticsearch instance into the current version.
Please help me out in a few scenarios:
If I am ...
6
votes
4answers
3k views
Elasticsearch UI
I'm migrating from Solr to Elasticsearch and was wondering if there was a UI available that is similar to Solritas. There is a great tool here:
http://mobz.github.com/elasticsearch-head/
Which ...
6
votes
1answer
301 views
Fuzziness settings in ElasticSearch
Need a way for my search engine to handle small typos in search strings and still return the right results.
According to the ElasticSearch docs, there are three values that are relevant to fuzzy ...
6
votes
2answers
1k views
NHibernate-based Full-Text Search
I want to integrate full-text search into a .NET application with [Fluent] NHibernate-based data access. So far Lucene.NET and NHibernate Search combination appears to be the most reasonable option ...
6
votes
1answer
219 views
My elasticsearch instance is up and running, let's move it into production.
I have built a small app in play2 and elasticsearch that will provide my other applications with an autocomplete feature.
It is time to move my elasticsearch instance into production.
mapping:
curl ...
6
votes
1answer
2k views
Elasticsearch, Tire & Associations
Running: Ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin11.2.0], Rails 3.2.0
I'm trying to get elastic search working through the TIRE gem across associations. For some reason I keep getting ...
6
votes
1answer
468 views
Tire - Elasticsearch - how to skip indexing on create?
I' m working on a rails app. using gem tire as a bond for elasticsearch.
in a multistep form I would like to index at the end of the procedure.
is there a way of skipping indexing on create.
guess: ...



