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

learn more… | top users | synonyms (1)

0
votes
0answers
4 views

Plugin to index JSON web services into elasticsearch?

Just started looking at elasticsearch, I understand the curl business to manually index JSON documents.... curl -XPUT 'http://myes:9200/users' -d '{ "name" : "foo" }' ..but I've got existing web ...
0
votes
0answers
2 views

Elastic Search Statistical Facets - Aggregation

So I have an index containing a 82 documents like the following (sample data to familiarise me with the api). {"_index":"foo","_type":"bar","_id":"3675293","_score":1.0, "_source" : { "companyId": ...
0
votes
1answer
11 views

AFNetworking equivalent of curl statement

I attempting to query a hosted instance of elasticsearch (Searchbox.io) using AFNetworking. Unfortunately I can't seem to get the syntax working properly. For example, the following statement using ...
0
votes
1answer
6 views

Elasticsearch: Facet script and facet_filter

Is it possible to use facet script and facet filter in elasticsearch like this? { "facets": { "judges": { "terms": { "field": "judges.untouched", "size": 10, ...
0
votes
0answers
8 views

Discrepancies in ElasticSearch Results

I have a relatively simple search index built up for simple, plain text queries. No routing, custom analyzers or anything like that. One search instance/node, one index. There are docs within the ...
0
votes
1answer
12 views

How to stop/shut down an elasticsearch node?

I want to restart an elasticsearch node with a new configuration. What is the best way to gracefully shut down an node? Is killing the process the best way of shutting the server down, or is there ...
5
votes
0answers
9 views

How to update multiple fields using java api elastic search script

I am trying to update multiple value in index using Java Api through Elastic Search Script. But not able to update fields. Sample code :- 1: UpdateResponse response = ...
1
vote
0answers
12 views

How to get distinct results by field for a given query in elasticsearch?

I have the following problem, I have a document that has a field 'xxx' which may have duplicate values across the entire index, I want to do a very simple thing, I want to be able to query the index ...
0
votes
0answers
12 views

Multiple field constraints in Elasticsearch fields constraint

If I have multiple field constraints inside a terms query, will it simply require that there be (at least) one value in common across all of those fields between the query doc and the results? For ...
0
votes
1answer
10 views

Highlighting inconsistency (Tire / ElasticSearch)

I am trying to use Tire (ElasticSearch) with highlighting, but I am experiencing some inconsistencies and I am probably doing something wrong. The problem I got into is that it does not always ...
0
votes
1answer
20 views

ElasticSearch: Secondary indecies on field values using Java-API

I'm considering to use ElasticSearch as a search engine for large objects. There are about 500 millions objects on a single machine. For far is Elasticsearch a good solution for executing advanced ...
0
votes
2answers
39 views

Value undefined inside Callback function

I'm using Elastic.js to access ElasticSearch and run query.... I need to run a facet and get the result and use this result for another query... I'm able to get the result of first one and run query ...
-1
votes
2answers
107 views

Solr or Elastic Search, which one we have to choose if we need customizablity along with scalability

I am in a great confusion that which search engine I have to use for our site, azzist.com. It is a job site. We have around 30,000 professionals and 3000 employers. So not only customization of ...
1
vote
0answers
27 views

How to search for “OR” word inside a Field on ElasticSearch?

I´m having a problem when I try to search into a field that stores the states acronyms. I have the next query: { "query": { "query_string": { "query": "field_state:'OR' ...
0
votes
1answer
12 views

using NEST with Elastic Search for collections

I'm trying to get my hands dirty with Elastic Search via the NEST .Net api and running into a couple of problems. I suspect I've misunderstood something, or am modelling my docs incorrectly but would ...
0
votes
0answers
23 views

How to use Elasticsearch using tire gem?

I am implementing Elastic search for searching users and their friends in my project. I am able to successfully search users but not the friends. Below I am pasting relevant portion of my User model, ...
0
votes
1answer
12 views

how to search and retrieve data based on of indexed data in elasticsearch

i had indexed the data and elasticsearch allocate it a version. Now I had updated the indexes by update API a new version will be allocate to it. Now I want to search data based on version. For eg: ...
0
votes
1answer
26 views

How to make elasticsearch add the timestamp field to every document in all indices?

Elasticsearch experts, I have been unable to find a simple way to just tell ElasticSearch to insert the _timestamp field for all the documents that are added in all the indices (and all document ...
1
vote
0answers
20 views

ElasticSearch - how to return a single value from a list if there is a match

I'm trying to return a single value if I search on a field that contains a list. tags is my list and I have three values in it one, two and three. tags : ["one", "two", "three"] If I do a search ...
0
votes
1answer
14 views

filtering out docs that have a word from a stop list

I have a search query for some such as "match":{"product name":"glasses car"} so that I am looking for glasses or cars (or both). But I want to exclude the docs that have google glass or google car ...
0
votes
0answers
15 views

How haystack + elastic search work?

I have added taggit application to add tags to some user message. tags = TaggableManager() When i index the message and tags in searchindex.py text = indexes.EdgeNgramField(document=True, ...
0
votes
1answer
18 views

SearchPhaseExecutionException with Basic Embedded Elasticsearch

I am trying out Elasticsearch with a basic Scala program, using the Java API: object TestES { var node:Node = NodeBuilder.nodeBuilder.node var client:Client = node.client def ...
0
votes
0answers
27 views

How to multithreading/batching when Indexing with elasticsearch

I am nearly new to use elasticsearch, and I need to index aprox 80M documents using the IndexManyAsync method, I am toward to batching documents, each will have 10000 docs and then add them to the ...
0
votes
0answers
14 views

I am using ElasticSearch. When i search for documents on specific index types fields returns are empty in SearchHit

I am unable to get fields using Elastic Search. I have following query for searching and needs all documents along with all fields but my Search Hits is returning empty fields in each Search Hits. Can ...
0
votes
1answer
28 views

Custom Analyzer in Tire (ElasticSearch)

I am trying to create this custom analyzer and for some reason I am getting the Analyzer [] not found for field [] error... I looked around a lot and tried different implementations and I think I have ...
0
votes
0answers
12 views

Elasticsearch sorting fails after update / insert

I'm inserting documents into elasticsearch and trying to sort on a given field that's present in all documents. However, whenever I update a document, indexing seems to break and I do not get a sorted ...
0
votes
0answers
7 views

Unable to get the min_score search criteria working in ElasticSearch 0.90.0

We've been having some trouble getting min_score to work. We have two types. There is user_meta, the parent index type. There is also the child index, user_perk (specified below.) The query returns ...
0
votes
2answers
34 views

Getting undefined method `each' for nil:NilClass in my index.html.erb

I am getting undefined method `each' for nil:NilClass in my index.html.erb, when I am implementing the elastic search functionality using tire in my model. What can be the possible reasons and ...
0
votes
0answers
13 views

Elastic Search Querying Ids

Here's my setup: I have an elastic search instance running. I have several mobile devices that send data to elastic search to be stored later for querying. Every time the device sends data, it ...
0
votes
0answers
23 views

How to get the best children for each parent document in Elasticsearch?

I use a parent/child relationship to store some documents: { "A" : { "properties" : { } } } { "B" : { "_parent" : { "type" : "A" }, ...
0
votes
1answer
29 views

Why do I need “store”:“yes” in elasticsearch?

I really don't understand why in core types link it says in the attributes descriptions (for a number, for example): store - Set to yes to store actual field in the index, no to not store it. ...
0
votes
0answers
14 views

How to perform bucket filtering with ElasticSearch date histogram value_field

Trying to construct a date histogram with ElasticSearch logs of the following type: { "_index": "foo" "_source": { […] "time": "2013-06-12T14:43:13.238-07:00", "userName": "bar" ...
0
votes
0answers
14 views

ElasticSearch : applying an AND filter to an ORfilter and a string using Java API

I'm new to ES. I need to do the following and would highly appreciate if I get help about this : I have a list of objects of type 1 and a String str, and the filtering should filter using this ...
0
votes
1answer
18 views

How to update an existing document in elasticsearch with pyes?

Assuming I have a document with an id of 49385 and I wanted to update it to have an addition field of "newfield" with value "newvalue". How do I do this in pyes if possible? There appears to be no ...
0
votes
0answers
13 views

UniqueIdentifier format when indexing with mongorive in ElasticSearch

I am a .Net developer using elasticsearch with mongo river. I am able to index mongodb collection successfully. But the issue I am facing is that all the UniqueIdentifiers in my mongodb are .Net ...
0
votes
0answers
42 views

Moving from MySQL SUM() and GROUP BY to Elasticsearch's facets

I am getting started with ES and have a hard time understanding how to query the index in order to get a result set that is similar to an SQL result set, i.e. containing columns I specify together ...
0
votes
0answers
12 views

Using _create in bulk operation

I know I can use the optype to only index a document if it does not exists. for example: curl -XPUT 'http://localhost/my_index/my_doc/some_id/_create' -d '{"hello":"world"}' but what if I want to ...
0
votes
1answer
31 views

Updating existing documents in elasticsearch

Is it possible add more fields to existing documents in elasticsearch? I indexed for instance the following document: { "user":"xyz", "message":"for increase in fields" } Now I want to add ...
0
votes
1answer
15 views

Is there a need for a boolean field index in elasticsearch

I am trying to optimize my elasticsearch. I have several boolean fields, which I use queries with. I could dispense with them, but that would give my client side a hard time. My question is whether ...
0
votes
0answers
17 views

How to add a new field to all documents in index in elasticsearch with pyes?

Assuming I have documents already index "myindex" in elastic search and wanted to add a new string field "mynewfield" based on "fieldA", a string field that is already indexed with the document. How ...
1
vote
1answer
49 views

Elasticsearch / Rails Tire autocomplete with multiple fields

I have the following index in Elasticsearch within a Rails model: mapping do indexes :id, type: "integer", index: :not_analyzed, include_in_all: false ...
0
votes
1answer
43 views

Filter with boolean block (Tire / ElasticSearch)

I have this search feature that has a text/keyword box and a bunch of filters; I have it implemented right now with the following structure: query do boolean do must { string params[:text], ...
0
votes
1answer
30 views

Can elasticsearch return all facets if no facets are returned with a facet filter?

I am currently using elasticsearch in combination with the rubberband gem to index items from a online catalogue. My use case is as follows: An item can have multiple subitems, e.g. a comic book with ...
0
votes
2answers
23 views

fancy/efficient way of checking if a document exists at elasticsearch

What is the most efficient way oof testing if a document with an _id exists? I could obviously do: curl -XGET localhost:9200/my_index/my_doctype/<_id>?fields=_id'. Or I could go with: How do ...
0
votes
1answer
21 views

Creating an Elastic Search AND OR Query

I am trying to write a query that requires "area" to be 530 and "starts" to be 06192013 OR "area" to be "530" and "starts" to be "blank". Additionally, in both of those scenarios "space" to be "top" ...
0
votes
1answer
19 views

Elastic Search: No query registered for [or]

Can anyone help me with this query? I am getting an error returned: "No query registered for [or]" Did I structure this wrong? It's supposed to filter all results where area is 530 and start is blank ...
0
votes
0answers
22 views

Elasticsearch performance with a great number of indices

I am using Elasticsearch for gathering logs from different devices. Due to the fact that searches will focus in a per device pattern and the need of gathering device's logs size on disk (index stats), ...
1
vote
1answer
33 views

No mapping found for field in order to sort on in ElasticSearch

Elastic Search throws SearchParseException while parsing query if there are no documents found for given search criteria. SearchParseException: Parse Failure [No mapping found for [price] in order to ...
1
vote
1answer
26 views

Accessing document string values in an ElasticSearch native script

I'm creating an ElasticSearch native script, and I'm struggling to get a List<String> value of some field in my doc. Here is what I tried: List<String> tmp = ((ScriptDocValues.Strings) ...
3
votes
0answers
18 views

defining the a path for the _parent field

Can I use a "path" for the _parent field? It is mentioned that the _routing field can do that at: http://www.elasticsearch.org/guide/reference/mapping/routing-field/ But at ...

1 2 3 4 5 34