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

learn more… | top users | synonyms (1)

0
votes
1answer
73 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 = ...
0
votes
1answer
52 views

ElasticSearch Mapping Charfilter

My objective is to be able to search for words with parenthesis around them, for example: (Andy) From what I can tell if I do a Mapping Charfilter and change the parenthesis to underscores this will ...
0
votes
1answer
29 views

ElasticSearch Query search message and restrict to node id

I have the following mapping in ElasticSearch: { "xenforo" : { "post" : { "_source" : { "enabled" : false }, "properties" : { "date" : { "type" : ...
0
votes
1answer
36 views

How to get a detailed results output from ElasticSearch

When I do a query like this: curl 'http://localhost:9200/xenforo/_search?q=message:test' I get the following result: { "took": 3, "timed_out": false, "_shards": { "total": 5, ...
1
vote
1answer
94 views

AttributeError: 'module' object has no attribute 'ElasticSearchError' : Using Haystack Elasticsearch

Using Django & Haystack with ElasticSearch. After installing haystack and ES, and Rebuilding Index ./manage.py rebuild_index WARNING: This will irreparably remove EVERYTHING from your search ...
1
vote
0answers
240 views

Elasticsearch autocomplete and searching against multiple term fields

I'm integrating elasticsearch into an asset tracking application. When I setup the mapping initially, I envisioned the 'brand' field being a single-term field like 'Hitachi', or 'Ford'. Instead, I'm ...
0
votes
0answers
72 views

ElasticSearch Indexing, Merge Size too large

I posted about ES Data auto-deleting but didn't find a proper solution but now what concerns me is Merge Size. I am running ElasticSearch on a production website has around 100,000 docs and not many ...
0
votes
0answers
42 views

Elasticsearch results not relevant

I'm new to elasticsearch and I have a problem using it... Here is my configuration: $nameQuery = new \Elastica_Query_Text(); $nameQuery->setFieldQuery('name', $term.'-blabla'); ...
0
votes
1answer
49 views

Creating a no-database rails model that would serve as a view to index data in elasticsearch

I'm facing a complex problem which i haven't been able to resolve yet. I'm using Rails 4(edge) with postgresql 9, ElasticSearch 0.20.6 and the gem Tire (0.5.7). I have multiple table that are linked ...
0
votes
0answers
51 views

Filter children based on search term

I've been trying to figure out how to model my data in ElasticSearch to accomplish filtering nested objects based on a search. Here is my existing data mode: [ { "job":{ ...
0
votes
1answer
19 views

Where Do I find a Changelog for NEST?

We use (and like) NEST to access elasticsearch from C#. As noted on the nuget oage for NEST (http://nuget.org/packages/NEST), there are frequent releases. I tried to find some form of Changelog but ...
0
votes
1answer
83 views

Elasticsearch Update API if a field does not exist

The example for upsert is: curl -XPOST 'localhost:9200/test/type1/1/_update' -d '{ "script" : "ctx._source.counter += count", "params" : { "count" : 4 }, "upsert" : { ...
0
votes
1answer
31 views

Elasticsearch faceting query

I was wondering if I can write a faceting query for something like this My document structure UserID, AnswerID[] (int array) 1 , [9,10,11,56,78,99] 2 , [10,11,56,78,99] 3 , [8,10,12,56, 79,99] 4 , ...
0
votes
1answer
43 views

elasticsearch equivalent of EmbeddedSolrServer for Solr

Is it possible to update index built using elastic search without the overheads of http and serialization? I am searching for an elasticsearch equivalent of EmbeddedSolrServer available with solrj.
0
votes
1answer
19 views

What is the behaviour of arcDistance script field filter with a multi valued field geo_point?

What is the behaviour of the script filter: doc['distance'] >= doc['locations'].arcDistance(lat, lon) If locations is a multi valued field of type geo_point? I would like for it to match if any ...
0
votes
0answers
39 views

Elasticsearch, Tire and Filtering on Associations

Working with Rails 3.2.0 and Ruby 1.9.3. Using Elasticsearch and Tire, I need to return locations based on a query and further filtered by neighborhood. I've tried to do this in several ways based ...
1
vote
2answers
55 views

Add multiple (not hardcoded) facets in my querybuiler

I'm pretty new to Elastic Search and the Elastic Search API I'm using in C#: PlainElastic.Net. I have a simple request, but I'm stuck with it: how can I add multiple (not hardcoded) facets in my ...
0
votes
1answer
26 views

using missing and exists fliter together in single query

I am trying to get a query which can return a json which satisfies both conditions of a filtering. I am trying to get a response which has feed containing one field named "test1" and it should also be ...
0
votes
1answer
52 views

Updating a field in all records in elasticsearch

I'm new to ElasticSearch, so this is probably something quite trivial, but I haven't figured out anything better that fetching everything, processing with a script and updating the registers one by ...
0
votes
1answer
161 views

Import/Index a JSON file into Elasticsearch

I am new to Elasticsearch and have been entering data manually up until this point. For example I've done something like this: $ curl -XPUT 'http://localhost:9200/twitter/tweet/1' -d '{ "user" : ...
0
votes
0answers
52 views

Python log analysis tool/library

I'm looking for a tool/library written in python similar with logstash (ruby + java). My goals are: parse all system logs from syslog parse application specific logs (apache, django, mysql etc.) ...
0
votes
1answer
51 views

Querying ElasticSearch with Python Requests not working fine

I'm trying to do full-text search on a mongodb db with the Elastic Search engine but I ran into a problem: no matters what search term I provide(or if I use query1 or query2), the engine always ...
0
votes
1answer
26 views

How to stop a ongoing import in elasticsearch

I have setup a jdbc river wiht oneshot strategy and successfuly imported my DB data. But when I restart the server it's begin to reindex all data again. How can I stop this process ?
0
votes
0answers
38 views

Getting pyes.exceptions.ElasticSearchException: from python code

I'm following this tutorial for using elastic search with python pyes.Here is my python code from pyes import * from pyes.mappings import * conn = ES('http://search.twitter.com/search.json?q=poplio') ...
0
votes
1answer
41 views

Unable to redirect python script result to a text file in windows

Here is my python code.I'm trying to do elastic search in python. from pyes import * from pyes.mappings import * conn = ES('http://search.twitter.com/search.json?q=poplio') ...
0
votes
1answer
54 views

Grep like nearby lines from ElasticSearch

The application I'm debugging creates log files with many API calls logged as two events: timestamp1 request_ip-->{$URL} timestamp2 response_ip<--{$DATA} I've recently started pouring the ...
0
votes
1answer
85 views

Empty string in Elasticsearch date field?

I have a date field setup in my mapping like this: "groupsAssignedDate" : { "type" : "date", "format" : "MM-dd-YYYY" } In my app, the field groupsAssignedDate is set to the empty string ...
1
vote
1answer
198 views

Elastic search- search_analyzer vs index_analyzer

I was looking at http://euphonious-intuition.com/2012/08/more-complicated-mapping-in-elasticsearch/ which explains ElasticSearch analyzers. I did not understand the part about having different search ...
0
votes
0answers
23 views

elasticsearch prevent user manipulation of score

I'm using ElasticSearch for a search application I am building. The data that is being searched is listings that are provided by users. The current way I am searching is by using the match query ...
0
votes
1answer
51 views

Elasticsearch - Get the top 10 with the number of occurences

I'm trying to have the top 10 of my logs(req_url) with the "status_code" 404 between two timestamp and I would have the number of occurences of each of them. My mapping is: { "logstash-2013.04.09" : ...
0
votes
1answer
98 views

Elasticsearch reindexing: How do you direct updates to the new index while it is being built?

I understand reindexing using an alias to avoid downtime, as described here: Is there a smarter way to reindex elasticsearch? But one problem remains: Say the reindexing takes an hour, while the ...
0
votes
1answer
35 views

Implement favorites documents in elasticsearch

My data model contains two objects - User and Product (stored in mongodb). I have already built a faceted product search using elasticsearch. Now I'm struggling with implementation of "favorite ...
1
vote
0answers
72 views

Geospatial marker clustering with elasticsearch

I have several hundred thousand documents in an elasticsearch index with associated latitudes and longitudes (stored as geo_point types). I would like to be able to create a map visualization that ...
0
votes
1answer
150 views

Getting Logstash web to work in unicast environment: ClusterBlockException

I'm trying to run Logstash and Elasticsearch on a Windows machine. The ElasticSearch server is set to use unicast (couldn't get multicast working). The Logstash agent uses the "elasticsearch_http" ...
0
votes
1answer
495 views

Too many open files warning from elasticsearch

Getting the below warning messages continuously. Not sure what should be done. Saw some of the relevant posts asking to increase the number of file descriptors. How to do the same? Even if I ...
0
votes
1answer
54 views

Elastic query to match any of provided conditions in BoolQuery

I made elastic.js build dynamic query like this: { "size": 15, "query": { "bool": { "must": [ { "term": { "tag": { "term": "rocket" } } }, ...
0
votes
1answer
89 views

problematic results after Elastic Search upgrade

I've updated my Elastic Search from 0.19.4 to 0.20.6 and I'm not getting the desired results.. I'm doing a dynamic search after key presses and the code that was working fine before acts different ...
-1
votes
2answers
59 views

A simple app using elastic search and python [closed]

OK, i was looking for playing with elastic search and i went through their site, but couldn't find any basic or simple app which make use of elastic search or show how to use elastic search.can Any ...
0
votes
1answer
48 views

ElasticSearch NEST client not returning results

I am running a simple query through the ElasticSearch NEST C# client. I receive results when I run the same query through http, but I get zero documents returned from the client. This is how I ...
0
votes
2answers
80 views

How to run Javascript files independent of HTML

I'm a super newb with Javascript... How can I run a .js file without using code in HTML? I also needs the ability to run JQuery (ajax command) which is in the .js file. I'm trying to test to find ...
1
vote
3answers
103 views

Proximity searching phrases with root expanders in Solr or ElasticSearch (especially websolr or bonsai.io)?

I'm trying to select a search tool for a large project, and I'd be interested to know if this use case was supported by Solr or ElasticSearch. My customers are interested in conducting relatively ...
2
votes
2answers
72 views

checking environment tire.rb file

This is my config/initializers/tire.rb file: if Rails.env.production? Tire.configure do url "http://remoteserver.com:9200" end end If I try on my production server: bundle exec rake ...
0
votes
1answer
38 views

Elasticsearch scoring based on how close a number is to a query

I want to score my documents based on on how close a number is to a query. Given I have two documents document1.field = 1 and document2.field = 10, a query field = 3 then I want document1._score > ...
0
votes
1answer
60 views

Function to escape quotes in JavaScript

to start off, I don't do much JavaScript and am a complete newbie at it, now that's out of the way.. I've got a slight problem I'm trying to escape quotes from users inputs in my search app: function ...
0
votes
0answers
43 views

attachment and highlight result with FOQElasticaBundle symfony2

In my project I have a Worker entity that have many Document entity. they are stored in separated table. In worker entity I have the following fields: name_in_kh(string) name_in_en(string) documents ...
0
votes
2answers
45 views

Is it possible to stream documents from elastic search?

Is it possible to have a persistant HTTP connection to an elasticsearch where it simply outputs new documents when they are indexed? For example, I'm adding a theoretical argument called stream: ...
0
votes
1answer
49 views

How to get image.url from ElasticSearch model indexed

Does anybody know how can i get a image.url from a image indexed in elasticsearcg (using tire) ? class Photo < ActiveRecord::Base include Tire::Model::Search include Tire::Model::Callbacks ...
1
vote
2answers
105 views

Converting JSON document to Google Chart format

I'm fairly new to Javascript and my situation is this: I'm using Google Charts to visualize some data and the data is contained in Elasticsearch. I'm querying the data with an Ajax command however ...
0
votes
1answer
63 views

Create elastic.js query

Long story short. I need to create an analogue with elasticjs for query: http://example.com/one/two/_search?q=tags:three* I'm confused with options listed on the docs page. Already tried to create ...
0
votes
0answers
23 views

When should you do an elasticsearch flush?

I've seen it recommended when you're doing an upgrade of elasticsearch, and my understanding is that it removes what ever part of your index that may be in memory. Is this correct? When else would ...

1 3 4 5 6 7 31