ElasticSearch is an Open Source (Apache 2), Distributed, RESTful, Search Engine built on top of Lucene.
1
vote
0answers
22 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
0answers
5 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
15 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
11 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
17 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
12 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
14 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
14 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
23 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
9 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
21 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
11 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
32 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
20 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
11 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
13 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
36 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
11 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
14 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
15 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
45 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
37 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
27 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
21 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
18 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
21 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
28 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
21 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
...
0
votes
1answer
38 views
Logstash with Elastichsearch
I am trying to connect Logstash and Elasticsearch eachother but I could not make it.
Here is my logstash conf:
input {
stdin {
type => "stdin-type"
}
file {
type => "syslog-ng"
...
0
votes
1answer
26 views
settings the “index” property of an elasticsearch object
say I have a mapping of objects as such the mapping is:
{"my_type":
{"properties":
{"name":{"type":"string","store":"yes","index":"not_analyzed"},
"more":{"type":"object",
...
0
votes
1answer
17 views
Can I change a field from “not indexed” to “indexed” in elasticsearch?
If I have a field that has "index":"no" and i already inserted some documents,
Is there a way to change the index settings (to "analyzed" or "not_analyzed") and let the nodes crunch a little until ...
0
votes
0answers
7 views
Python Pyes library and ElasticSearch, NoServerAvailable exception
I keep getting a NoServeryAvailable exception thrown by Pyes while trying to connect to ES. The problem goes away after an ElasticSearch restart but reappears. Here's a stacktrace:
Traceback (most ...
0
votes
0answers
11 views
ElasticSearch with pyes: bulk index
I have a 200M documents index I would like to reindex.
I wrote the following script that goes over documents in the old index and puts them with balk insert into the new index.
The size of each bulk ...
0
votes
1answer
23 views
Which subquery matched out of my compound query?
I have a nested query like this
{
"fields" : ["title","wordCount"],
"query":{
"bool":{
"should":[
{
"match":{
"title":{
...
0
votes
0answers
13 views
Searching in xls and xlsx file from elasticsearch
I had indexed the xls and xlsx file in elasticsearch. I am able to search word which are present in starting but in the end of excel sheet it is not able to perform search.
thanks in advance.
0
votes
1answer
27 views
How to facet/histogram the following in elasticsearch?
Say I have the following fields:
timestamp: (elasticsearch date field)
ice-cream-flavor: (e.g. Chocolate, Vanilla, Strawberry)
container: (e.g. Cup, Cone)
I want to be able to use some kind of ...
0
votes
1answer
25 views
How to boost results in elasticsearch, so that match in field1 is always higher then match in field2?
There is the mapping, 3 fields and 9 documents:
#! /bin/bash
#DELETE
curl -XDELETE 'http://localhost:9200/test'
echo
# CREATE
curl -XPUT 'http://localhost:9200/test?pretty=1' -d '{
"settings": {
...
1
vote
1answer
21 views
Multiple analyzers on 1 field
Got 2 fields (name & description), using a Danish analyzer.
Now I need to support it with an English analyser too.
What is my solutions?
Add more analysers on the fields?
Set the language when ...
0
votes
1answer
14 views
Haystack __contains not finding substrings passed through GET [ElasticSearch backeng]
I have the following model:
class ProductIndex(CelerySearchIndex, indexes.Indexable):
text = indexes.CharField(document=True, use_template=True)
number = indexes.CharField()
description = ...
1
vote
1answer
25 views
Boosting an elasticsearch result based on a boolean field value
I'm getting a lot of "static" when searching for the correct way to boost a result when a "Boolean" field type is TRUE, most results are talking about boolean searches.
N.B. We're using the php ...
0
votes
0answers
20 views
+50
defining merge policy parameters for elasticsearch
According to http://www.elasticsearch.org/guide/reference/index-modules/merge/
I can control the merge policy and the parameters of the merge policy.
I am unclear on how to do that.
When creating the ...




