ElasticSearch is an Open Source (Apache 2), Distributed, RESTful, Search Engine built on top of Lucene.

learn more… | top users | synonyms (1)

118
votes
2answers
39k views

Solr vs. ElasticSearch [closed]

What are the core architectural differences between these technologies? Also, what use cases are generally more appropriate for each?
13
votes
2answers
3k 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 ...
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 ...
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" ...
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 ...
3
votes
3answers
2k views

How to store tree data in a Lucene/Solr/Elasticsearch index or a NoSQL db?

Say instead of documents I have small trees that I need to store in a Lucene index. How do I go about doing that? An example node in the tree: class Node { String data; String type; ...
8
votes
2answers
5k 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 ...
5
votes
3answers
2k views

Filename search with ElasticSearch

I want to use ElasticSearch to search filenames (not the file's content). Therefore I need to find a part of the filename (exact match, no fuzzy search). Example: I have files with the following ...
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, ...
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
526 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. ...
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. ...
1
vote
1answer
961 views

How do I set the default analyzer for elastic search with tire?

I have been experimenting with elasticsearch lately with ruby on rails. I am having trouble getting my data indexed so I can search for items with both plural, and non-plural keywords. Tire will ...
2
votes
1answer
244 views

ElasticSearch — use distance from point to affect query relevance

Trying to use ElasticSearch to create a search that uses distance from a centerpoint to influence relevance. I don't want to simply sort on distance from a point, which I know is possible, because I ...
1
vote
1answer
170 views

Elastic search - tagging strength (nested/child document boosting)

Given the popular example of a post that has a collection of tags, let's say that we would want each tag to be more than a string but a tuple of a string and a double which signifies the strength of ...
1
vote
1answer
165 views

AttributeError: 'ElasticSearch' object has no attribute 'bulk_index'"

When I try python manage.py rebuild_index, error occur: self.conn.bulk_index(self.index_name, 'modelresult', prepped_docs, id_field=ID) AttributeError: 'ElasticSearch' object has no attribute ...
0
votes
0answers
78 views

DateHistogram Facet Query with mpdreamz Nest [closed]

I am using query var queryResult= client.Search(s=>s .From(0) .Size(10) .MatchAll() .FacetDateHistogram(h => h ...
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 ...
5
votes
3answers
4k views

Why ElasticSearch is not finding my term

I just installed and testing elastic search it looks great and i need to know some thing i have an configuration file elasticsearch.json in config directory { "network" : { "host" : ...
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... ...
2
votes
1answer
1k views

Analyzers in elasticsearch

I'm having trouble understanding the concept of analyzers in elasticsearch with tire gem. I'm actually a newbie to these search concepts. Can someone here help me with some reference article or ...
2
votes
3answers
905 views

Elasticsearch not returning singular/plural matches

I am using a php library of elasticsearch to index and find documents in my website. This is the code for creating the index: curl -XPUT 'http://localhost:9200/test/' -d ' { "index" : ...
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.
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 ...
4
votes
1answer
571 views

Index the results of a method in ElasticSearch (Tire + ActiveRecord)

I'm indexing a data set for elasticsearch using Tire and ActiveRecord. I have an Artist model, which has_many :images. How can I index a method of the Artist model which returns a specific image? Or ...
3
votes
1answer
335 views

Modeling parent/child relationships (product/productvariant) in Elasticsearch

Breaking my head on modeling productvariants using ES (or Solr for that matter) Consider (contrived example): different products (say T-shirts) each product has a set of properties (productid, ...
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: ...
4
votes
1answer
993 views

Return distance in elasticsearch results?

My question is similar to this one. Simply, is there a way to return the geo distance when NOT sorting with _geo_distance? Update: To clarify, I want the results in random order AND include ...
3
votes
1answer
1k views

Is it possible to sort nested documents in ElasticSearch?

Lets say I have the following mapping: "site": { "properties": { "title": { "type": "string" }, "description": { "type": "string" }, "category": { "type": "string" }, ...
3
votes
2answers
673 views

Sorting by multiple params in pyes and elasticsearch

I can pass a single sort parameter to the search query in pyes like this: s = MatchAllQuery() conn.search(query=Search(s), indexes=["test"], sort='_score') But I need to pass an extra parameter to ...
2
votes
1answer
60 views

Elasticsearch get a selection of predefined types as result in one query

I've got an ElasticSearch index with a large set of product properties. They are all looking like that: {'_id':1,'type':'manufacturer','name':'Toyota'}, {'_id':2,'type':'color','name':'Green'}, ...
2
votes
2answers
422 views

How to prevent attachments from being stored in _source with Elasticsearch and Tire?

I've got some PDF attachments being indexed in Elasticsearch, using the Tire gem. It's all working great, but I'm going to have many GB of PDFs, and we will likely store the PDFs in S3 for access. ...
2
votes
1answer
1k views

I can't seem to get faceted search working in elastic search

I can't seem to understand the QueryDSL for facets in elastic search. Below are my query object, and the mapping for my tags array. I'm trying to get these to put in a faceted navigation based on ...
5
votes
1answer
476 views

How to index and store multiple languages in ElasticSearch

I am trying to figure out gow to index the following in ES. I have a lot of documents which are crawler from website with various language. Each document has a category such as Airport, restaurant, ...
5
votes
1answer
983 views

compute geo distance in elasticsearch

i am using a geo_distance filter with tire in my query and it works fine: search.filter :geo_distance, :distance => "#{request.distance}km", :location => "#{request.lat},#{request.lng}" i ...
4
votes
2answers
318 views

Elasticsearch - EdgeNgram + highlight + term_vector = bad highlights

When i use an analyzer with edgengram (min=3, max=7, front) + term_vector=with_positions_offsets With document having text = "CouchDB" When i search for "couc" My highlight is on "cou" and not ...
4
votes
2answers
1k views

Change dynamically elasticsearch synonyms

Is it possible to store the synonyms for elasticsearch in the index? Or is it possible to get the synonym list from a database like couchdb? I'd like to add synonyms dynamically to elasticsearch via ...
3
votes
1answer
1k views

Treat child as field of parent in elastic search query

I am reading the docs for elasticsearch and this [page][1] talks about mapping a child to a parent type using _parent. If I have childs called email attached to parents called account: Fields in ...
3
votes
1answer
1k views

How is ElasticSearch queried using the Java client?

The site only has documentation for JSON, but not the Java client. Is there some sort of mapping I should be performing? For example geo location queries: ...
3
votes
2answers
3k views

ElasticSearch n-gram tokenfilter not finding partial words

I have been playing around with ElasticSearch for a new project of mine. I have set the default analyzers to use the ngram tokenfilter. This is my elasticsearch.yml file: index: analysis: ...
2
votes
1answer
87 views

How do I sort the search results according to the number of items in ElasticSearch?

Let's say that I store documents like this in ElasticSearch: { 'name':'user name', 'age':43, 'location':'CA, USA', 'bio':'into java, scala, python ..etc.', ...
2
votes
2answers
1k views

Elastic Search/Tire: How to map to association attribute?

I'm using Tire for Elastic Search. In my application I have 2 models; Price and Product. I'm trying to search my Price class and use the Product it belongs to's :name attribute for the search field. ...
2
votes
3answers
2k views

Facet Troubles with Elasticsearch on Query

When adding a term to my query instead of a filter I am getting 0 facets. FYI I am using the tire gem with Ruby. Here is my model code with its mapping: class Property < ActiveRecord::Base ...
1
vote
1answer
315 views

elasticsearch: how to index terms which are stopwords only?

I had much success building my own little search with elasticsearch in the background. But there is one thing I couldn't find in the documentation. I'm indexing the names of musicians and bands. ...
1
vote
2answers
1k views

Multiple nodes in ElasticSearch

How can I have multiple nodes in my ElasticSearch? I'm using the following in elasticsearch.yml but only the last node starts, and the browser complains: The page at file://localhost/ says: undefined. ...
1
vote
1answer
493 views

Faceted search: ElasticSearch/Solr or a simple database query?

Forgive this super basic question, from a search newbie. I want to implement a site that makes use of faceted search. For example, it's a site with a database of hotels, and I want to allow users to ...
1
vote
0answers
567 views

Complex querying on Parent/Child documents with ElasticSearch

Considering this record structure "place": { "id": "4f58e38866eaa71e74000027", "name": "Some name", "point" [14.53535, 56.32535], "hostname": "Something", "locality": "something", "type": ...
1
vote
1answer
2k views

debugging elasticsearch

I'm using tire and elasticsearch. The service has started using port 9200. However, it was returning 2 errors: "org.elasticsearch.search.SearchParseException: [countries][0]: from[-1],size[-1]: Parse ...
0
votes
1answer
76 views

tire terms filter not working

I'm trying to achieve a "scope-like" function with tire/elasticsearch. Why is this not working, even when i have entries with status "Test1" or "Test2"? The results are always empty. collection = ...

1 2