0
votes
0answers
28 views

How to change default operator for search index in ElasticSearch?

By default ElasticSearch (and Lucene) implies "OR" if there is no AND/OR operator between two keywords. I can change it in search query by using default_operator: { "query" : { "filtered" ...
0
votes
2answers
179 views

Best Lucene search platform in 2013: Solr or ElasticSearch? [closed]

I run a job board (PostJobFree.com) with about 1M resumes in it. Average resume size is about 4000 bytes. PostJobFree uses ASP.NET/C#/SQL Server 2008 R2 and MS SQL Full Text search. From reading ...
0
votes
1answer
103 views

Group by entire field value in Tire/ElasticSearch

I'm using the Tire rubygem to connect to ElasticSearch. How can you return facets based on a particular field's value? For example, I have a field areas, and I'd like to show the top 10 areas as ...
0
votes
1answer
238 views

Updating indexed document in Elasticsearch

I am trying to understand how you update an indexed document in Elasticsearch. I don't understand how it works? What is the ctx that the API is referring to doing? Let say you have a document with ...
0
votes
1answer
176 views

Querying nested document Elasticsearch

I am learning Elasticsearch so I am not sure if this query is correct. I have checked that the data is indexed, but I don't get any hits. What am I doing wrong? Shouldn't this get a hit on a car where ...
1
vote
0answers
126 views

How should I index my data in ElasticSearch to solve this situation?

I'm building a search engine for a game (path of exile). In this game, items have sockets. items can have from 0 to 6 sockets some sockets can be linked there are 3 types of sockets (Red, Green, ...
1
vote
2answers
739 views

Shards and replicas in Elasticsearch

I am trying to understand what shard and replica is in Elasticsearch, but I don't manage to understand it. If I download Elasticsearch and run the script, then from what I know I have started a ...
0
votes
1answer
110 views

Trying to create a mapping for Elasticsearch

I am trying to create a mapping for elasticsearch but I don't understand how to do it. I am just trying to create this json with the XContentBuilder. I am using the Java API. I don't manage to create ...
2
votes
1answer
123 views

How do I make Elasticsearch fuzzy_like_this treat the like_text tokens as ANDs rather than ORs?

Unlike the "query_string" operator, the "fuzzy_like_this" doesn't have a "default_operator" I can set to "AND", which results in a much larger result set than desired for a multi-term search like ...
1
vote
1answer
72 views

How do I ask Tire to return only if score more than 1 for elasticsearch

I'm trying to return only documents that have _score more than 1. I'm not sure how to do that. I could get all the returned documents and check again individually in ruby code, but I guess it could be ...
0
votes
1answer
109 views

what is the best approach to query custom customer data. MongoDB / ElasticSearch

I'm doing a application that customers could sent custom data and this custom data should be "queryable", I mean the customer could search for these fields. Data sent for the user below: data = { ...
0
votes
1answer
67 views

How to perform full text search with modifiers in Elasticsearch

I am building a web application using Elasticsearch with Playframework[Java] with full text search option. I want to process something like "Sony Ericsson phones under 300 dollars" or "Samsung phones ...
0
votes
0answers
34 views

Deleting parent in parent/child relationship Elasticsearch and Tire

How does deleting a parent document in Elasticsearch works when using the Tire gem in Rails? How do you also delete the children?
1
vote
1answer
107 views

How to work with elasticsearch and associations between index objects?

I am using the Tire gem for Rails and a couple of questions have been raised about model associations. How do you work with them? Let say you have a relation between a Person and a car. Each Person ...
2
votes
2answers
217 views

What is an index in Elasticsearch

What is an index in Elasticsearch? Does one application have multiple indexes or just one? Let say you built a system for some car manufacturer. It deals with people, cars, spare parts etc. Do you ...
2
votes
1answer
123 views

What is the typical usage of ElasticSearch in conjuncion with other storage?

It is not recommended to use ElasticSearch as the only storage from some obvious reasons like security, transactions etc. So how it is usually used together with other database? Say, I want to store ...
1
vote
3answers
147 views

full text search engine in hebrew

I want to try and use Elasticsearch as a full text search engine for a website in Hebrew. I wanted to know if this Elasticsearch can produce good results for Hebrew and if there are any big websites ...
2
votes
1answer
82 views

How to filter search by attribute only if it exists using ElasticSearch and Tire?

Right now I wrote Tire.search INDEX_NAME do query do filtered do query { string term } filter :or, { missing: { field: :app_id } }, { terms: { app_id: app_ids } } ...
0
votes
1answer
58 views

Confused about the affect of mergefactor on searching and indexing

Solr/Lucene documentation says the following: 1) High mergefactor leads to better indexing performance as writing the index to disk is minimized and the merging of segments too happens less ...
0
votes
1answer
116 views

ElasticSearch mapping for nested enumerable objects (i18n)

I'm at a loss as to how to map a document for search with the following structure: { "_id": "007ff234cb2248", "ids": { "source1": "123", "source2": "456", "source3": "789" } ...
0
votes
1answer
91 views

ElasticSearch — is there any way to retrieve multiple result sets, or top results for fascets?

I'm curious if there's a way to query ElasticSearch so that it will return the top results for various fascets. For example, let's pretend we have some users writing tweets, user: kimchy ...
0
votes
1answer
114 views

Relevant sorting in elasticsearch

Consider following schema for document { user_name : string, tweet : string }. Now when search query is fired result should be sorted in such a way that tweets of certain user_name should appear on ...
0
votes
0answers
41 views

Quick searching/lookup in dynamic data

I want to achieve some fast lookup with relational information, which is able to scale up. I have all the capabilities in the world to form my layout. My quest: I want to be able to search for ...
1
vote
1answer
244 views

Tire and Elastic Search - Object Associations

I'm having a little difficulty with the Tire and Elastic Search functionality. I have a Listing that has a Property. I'm trying to get a basic search form working so that I can create a query from ...
0
votes
0answers
134 views

index.cache.field.max_size unable to limit field data cache in elasticsearch

I am trying to limit the field caching(resident) by setting index.cache.field.max_size: NUMBER in config/elasticsearch.yml file. I have around 1 million records, and a faceting operation is performed ...
0
votes
1answer
477 views

elasticsearch phrase searching

I have a document in elastic search that looks like... { "items": [ "ONE BLAH BLAH BLAH TWO BLAH BLAH BLAH THREE", "FOUR BLAH BLAH BLAH FIVE BLAH BLAH BLAH SIX" ] } I ...
2
votes
1answer
394 views

ElasticSearch Scoring (Tire gem)

I want ElasticSearch (Tire gem to be specific) to return the result based on the number of times a keyword appears in the fields. For example, I index the field title in a model called Article. I have ...
1
vote
1answer
381 views

Elastic Search: pyes.exceptions.IndexMissingException exception from search result

This is a question about Elastic-Search python API (pyes). I run a very simple testcase through curl, and everything seems to work as expected. Here is the description of the curl test-case: The ...
0
votes
2answers
172 views

Facets tokenize tags with spaces. Is there a solution?

I have some problem with facets tokenize tags with spaces. I have the following mappings: curl -XPOST "http://localhost:9200/pictures" -d ' { "mappings" : { "pictures" : { ...
1
vote
2answers
316 views

Trigger river update elasticsearch

I have an elastic search river setup using the jdbc river plugin, that just does a simple select * from and indexes that table. But I would like to be able to trigger the river on demand via the API ...
0
votes
1answer
141 views

ElasticSearch search query delimiters

I have a simple record in the index CharacterId=847 query CharacterId=8 returns the result (it looks like it searches for CharacterId and 8 separately query CharacterId= returns the result query ...
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 ...
3
votes
1answer
971 views

Range versus term boosting in Elastic Search

I am struggling to make boosting work the way I want it to in Elastic Search. Let's say I have some profiles indexed containing gender, interests and age, and let's say that I find it most relevant ...
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, ...
0
votes
0answers
131 views

Better search rails 3 search results with gmaps4rails gem

This question has two parts. I have a app that uses gmaps4rails gem (which works great). I now have about 20k records that it plots when the page loads. This is starting to make my app hang and ...
8
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 ...
3
votes
1answer
196 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 ...
3
votes
2answers
2k 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?
3
votes
1answer
404 views

How to index source code with ElasticSearch

I need to provide full text search on javascript source files and highlighting of results. My question is what combination of existing ElasticSearch tokenizers and analyzers would be best for this?
1
vote
1answer
1k views

Multilingual queries in ElasticSearch

Let's say we have the following mapping in ElasticSearch. { "content": { "properties": { "id": { "type": "string", "index": "not_analyzed", "store": "yes" }, ...
1
vote
1answer
922 views

Solandra / Elastic Search - full text searching (using Cassandra)

I'm using Cassandra for an app I am developing. I plan to use Solandra to query for documents. I am wondering if anyone has run into any way to use full text search in Solandra? Is there a way to get ...
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 ...
5
votes
2answers
2k 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 ...
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 ...
4
votes
3answers
1k 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?
2
votes
1answer
280 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 ...