Tagged Questions

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

learn more… | top users | synonyms

8
votes
2answers
1k views

Elastic search as a database?

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 ...
6
votes
1answer
635 views

Elastic Search - Assigning Shards

I have recently discovered Elastic Search 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 is run everytime I try ...
6
votes
3answers
983 views

How to secure an Internet-facing Elastic Search implementation in a shared hosting environment?

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
1answer
322 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 ?
5
votes
2answers
960 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 ...
5
votes
1answer
986 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 ...
5
votes
1answer
448 views

CouchDB, Elastic Search, and River Plugin not operating correctly

I'm trying to get ElasticSearch to work, specifically with the River Plugin. For some reason I just can't get it to work. I've included the procedure I'm using to try and do it, found here: ...
5
votes
2answers
296 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 ...
4
votes
1answer
342 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 ...
4
votes
1answer
840 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 ...
4
votes
1answer
909 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) ...
4
votes
2answers
739 views

What are the pros and cons of Solr & ElasticSearch?

Both Solr and ElasticSearch are built upon Lucene. How do they compare to each other in terms of: Features (facet & multi-language support in particular) Performance Scalability Stability ...
4
votes
1answer
801 views

Playframework + Morphia + MongoDb + ElasticSearch = Disater?

Guys I have a couple of questions: Q1. I am using Play 1.1.1 with the Morphia-MongoDB module and ElasticSearch for Indexing. Has any one tried this? Q2. For some reason the morphia plugin (versions ...
4
votes
2answers
630 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?
3
votes
1answer
225 views

Elastic Search limit results

In MySQL I can do something like: SELECT id FROM table WHERE field = 'foo' LIMIT 5 If the table has 10,000 rows, then this query is way way faster than if I left out the LIMIT part. In ...
3
votes
1answer
204 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 ...
3
votes
1answer
206 views

how should I think about search engine indices?

I am using elastic search and do not understand exactly what an index is. For example, if I have 3 models (a backpack, a shoe and a glove), do I put each model in its own index or do I index ...
3
votes
3answers
368 views

Have you indexed nutch crawl results using elasticsearch before?

Has anyone had any luck writing custom indexers for nutch to index the crawl results with elasticsearch? Or do you know of any that already exist?
3
votes
1answer
132 views

Query Builders - Must Not / Should Not

I am new to the search-engine scene and I was wondering if anyone might be able to help me clarify the Must/MustNot and Should/ShouldNot search queries. My understanding is as follows: The ...
2
votes
1answer
47 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 ...
2
votes
1answer
43 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 ...
2
votes
1answer
59 views

What's the smartest way of making my couchapp searchable?

I know, there's couchdb-lucene, but I'm hosted on the amazing IrisCouch and I can't really install plugins. Any other options left? What sort of setup would be the simplest and most transparent and ...
2
votes
1answer
95 views

ElasticSearch: Index only the fields specified in the mapping

I have an ElasticSearch setup, receiving data to index via a CouchDB river. I have the problem that most of the fields in the CouchDB documents are actually not relevant for search: they are fields ...
2
votes
2answers
32 views

How to decouple a module which listens on a hibernate event from the entities themselves?

I have a layered web-application driven by spring-jpa-hibernate and I'm now trying to integrate elasticsearch (search engine). What I Want to do is to capture all postInsert/postUpdate events and ...
2
votes
1answer
73 views

Elastic Search and “sub queries”

Can you perform a subquery in Elastic Search? I am finding a list of documents (usually about 5-20 documents). For each of the documents I'd like to perform a search to come up with some custom ...
2
votes
1answer
196 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 ...
2
votes
2answers
161 views

Simulating field collapsing/grouping by field in Elastic Search

Elastic Search does not currently (as of 0.18.4) support field collapsing. Is there a good way to simulate this, as to avoid N search queries?
2
votes
1answer
98 views

ElasticSearch Script Field Returns Incorrect Longitude Value

When I add: fields: [ "doc['Location'].lon" ] to my query, the longitude value is different that what is shown in the document source. Here you can see the results of a query where I fetched the ...
2
votes
1answer
111 views

ElasticSearch Designing for extensibility Java WebService

I am currently designing a small project and wanted some advice on how best to make it more future proof. I have a basic object Activity and extenstions for it. In a straight database world I might ...
2
votes
1answer
249 views

elasticsearch insert objects into index

I am new to elasticsearch and looking for a bit of help using the Java API. I have some domain objects E.g. @XmlRootElement public class BasicActivity { private String activityName; private ...
2
votes
1answer
54 views

How best to verify a client connection to elasticsearch using Java?

I'd like a simple way of verifying that ES is available to a Java client. I have a factory that looks something like this to get a client instance: https://gist.github.com/1364734 What's the ...
2
votes
1answer
79 views

Elasticsearch + Couch = still need to use a separate ruby client?

For some reason I'm having trouble finding an answer to this, but it's a really simple question. Do I still need to use Tire or some other ruby elastic search client if I am using couch db with ...
2
votes
1answer
170 views

How can I retrieve matching children only?

Consider a very simple model where we have locations and each location can have zero or more events. A location would have properties such as name, description and geo point data (lon/lat). An event ...
2
votes
2answers
267 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 ...
2
votes
1answer
459 views

elasticsearch c#/.net client recommondation [closed]

Which elasticsearch c#/.net client do you recommend ? 1 - Nest : https://github.com/Mpdreamz/NEST/commits/master 2 - elasticsearch.net : https://github.com/medcl/ElasticSearch.Net/commits/master ...
2
votes
1answer
326 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 ...
2
votes
2answers
205 views

Filtering search results by operating hour with elasticsearch

I'm using elasticsearch to index and search locations, and I'm running into 1 particular issue with filtering by operating hour which I don't know how to work out Basically, each location will have ...
2
votes
1answer
404 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 ...
2
votes
1answer
273 views

Does minimizing json document size increase performance on elastic search?

I am seriously considering using elastic search as my primary database. The only thing holding me back is understanding whether or not json document size slows down elastic search. For example, if I ...
2
votes
1answer
184 views

.NET version of elasticsearch?

Is anyone aware of a .NET port of elasticsearch that has been implemented? We have found a .NET client (easy enough to create on our own), but not the server.
2
votes
1answer
163 views

Full Text Search and Role permissions

I am building a system where users have specific dynamic roles which give them access to some resources (i.e meta documents). Those documents META are indexed with Elastic Search. I can do my queries ...
2
votes
1answer
1k 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
3answers
2k 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" : ...
1
vote
0answers
9 views

Duplicates when using nutch -> elasticsearch solution

I have crawled some data using nutch and managed to inject it into elasticsearch. But I have one problem: If I inject the crawled data again it will create duplicates. Is there any way of disallowing ...
1
vote
0answers
6 views

What is the key word “Snowball” mean in Elastic search?

When i'm using elastic search , i've to indecies it first. In this process i blindly using "SNOWBALL" , "KEYWORD" n analyzer coloumn. What is the main use of Analyzer (I know it is a booster) but it ...
1
vote
1answer
20 views

Query any field in Lucene?

I tend to query for a specific field, eg. title:*The Right Way* AND text:*The Right Way* Is there a way to query The Right Way in any field I cannot no in advance?
1
vote
1answer
47 views

Data security in result sets from Elastic Search, Solr or

I need to add full-text search capabilities to my existing database. Of course first turn is to something like Solr or Elastic Search. And the blocking point I’ve got to is – how to securely display ...
1
vote
2answers
129 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 ...
1
vote
2answers
58 views

Is it bad to “monitor” a database table by constantly querying for PRIMARY_ID > lastProcessedId

I'm indexing a MySQL table in ElasticSearch (full-text search). Instead of sending each new row at the time of its creation, we do a SQL query each N seconds (~30 seconds) for new records in that ...
1
vote
1answer
48 views

ElasticSearch, how to search for a document containing a specific array element

I am having a little problem with elasticsearch and wonder if someone can help me solve it. I have a document containing an array of tuples (publications). Something like : { .... ...

1 2 3 4