0
votes
1answer
56 views

Elastic search - integrate with java web application

I am developing a java web application (ERP system). I have completed basic flows. Now as per my client requirement, we need to implement few search options. (i.e. Employees, Users, Invoices, ...
0
votes
1answer
68 views

elastic search index transactions

I am exploring elastic search and comparing it with our current search solution. The use case I have is, , everytime I build index, I have to drop the current index and create the new one with the ...
0
votes
1answer
84 views

How to store objects which have relations in ElasticSearch (Search engine)

I am going to use ElasticSearch for as the search repository in my application. I have a few questions regarding what is best practice when it comes to organizing objects in the search index when the ...
0
votes
1answer
347 views

Partial Update of documents

We have a requirement that documents that we currently index in SOLR may periodically need to be PARTIALLY UPDATED. The updates can either be a. add new fields b. update the content of existing ...
1
vote
1answer
246 views

elasticsearch highlight property missing in results

I have trouble getting elasticsearch results highlighting to work. I have found many examples and tried different versions but I fail applying it to my own index. What am I doing wrong? Here is my ...
1
vote
0answers
209 views

How can I handle duplicate data in Elasticsearch?

I have used parent & child mapping to normalize data but as far as I understand there is no way to get any fields from _parent document. Here is the mapping of my index: { "mappings": { ...
3
votes
2answers
205 views

Search Engine Stopwords - Best Practices [closed]

It is common practice to not index so called stop words when analyzing documents for a search engine. Stop words are common words, such as a, the, and this, that appear frequently in language. The ...
0
votes
1answer
73 views

RoutingMissingException while indexing with NEST library

I have specified document mapping in my code using TypeMapping, while indexing I started seeing the following exception {"error":"RoutingMissingException[routing is required for ...
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 ...
5
votes
1answer
446 views

How to index and store multiple languages in ElasticSearch

I am trying to figure out gow to index the following in ES. I have a lot of documents which are crawler from website with various language. Each document has a category such as Airport, restaurant, ...
0
votes
1answer
66 views

How to geo_distance filter against multiple location fields in Elasticearch

I have an arbitrary # of location data points per document (anywhere up to 80). I want to perform a geo_distance filter against these locations. The elasticsearch docs claim that: The ...
0
votes
0answers
225 views

elasticsearch geo_distance query give me error how to write geo_distance query?

I have a table, schools with the fields: id, name, address, city, state, zip, latitude and longitude. I want to search for schools within 12km by giving latitude and longitude; I am using this query ...
0
votes
0answers
47 views

how to use analyzer “ik" in haystack

As we know, ik analyzer is a plugin of elasticserach. When I use haystack to create indexes, I just need type python manage.py rebuild_index. I dont know if it create indexes through analyzer. If not, ...
-4
votes
2answers
259 views

I want create search engine like Google, which search engine should I use? [closed]

I want create a search engine like google. Which search engine should I use? Does solr or elasticsearch suitable for that?
1
vote
1answer
76 views

what is model based search?

When I reading haystack document, I got Haystack is very Model-based and doesn’t work well outside of that use case.. What is model based search and model based data. Does google or bing search engine ...
0
votes
1answer
147 views

local variable 'results' referenced before assignment

I want to retrieve all indexes under elasticsearch index folder. I got this error. UnboundLocalError at /tjobfucksearch/ local variable 'results' referenced before assignment my views.py from ...
0
votes
0answers
31 views

Does haystack only make model search?

does haystack only works for model search? I am using elasticsearch. I have indexes in elasticsearch's data folder. Why haystack can not found indexes which are not created from haystack model? Any ...
1
vote
0answers
90 views

how haystack retrieve all indexes with elasticsearch

Edition:[django-haystack v2.0.0-beta pyelasticsearch(toastdriven) 0.0.5 elasticsearch0.18.5] I am trying use haystack with elasticsearch. I have finished steps in Getting Started with Haystack,and ...
1
vote
1answer
164 views

AttributeError: 'ElasticSearch' object has no attribute 'bulk_index'"

When I try python manage.py rebuild_index, error occur: self.conn.bulk_index(self.index_name, 'modelresult', prepped_docs, id_field=ID) AttributeError: 'ElasticSearch' object has no attribute ...
1
vote
1answer
477 views

using elasticsearch to filter through tags with whitespace

I am using tire (https://github.com/karmi/tire) with mongoid. Here is my model definition: class SomethingWithTag include Mongoid::Document include Mongoid::Timestamps field :tags_array, type: ...
1
vote
2answers
311 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 ...
1
vote
0answers
51 views

Fast “local” search from a center point or bounding box

Building a local business directory. Using elastic search as our search provider and have a bit of dilemma: What we really want to do is a "center point" search. But as I understand it, a true ...
1
vote
1answer
1k views

Deployng ElasticSearch on Heroku with Tire & Bonsai.io

I'm trying to setup the new Bonsai ElasticSearch heroku add-on, but until now I can just run the search on my local developement machine, as soon as deployed on Heroku the same search fails silently, ...
0
votes
1answer
154 views

Search Engine indexes and types

Being somewhat new to search engines, the notions of indexes and types are not very clear to me. Elastic search has the notion of indexes and types where you can store a document. Does the notion ...
1
vote
1answer
960 views

ElasticSearch search on many types

I'm using Rails with the Tire gem (for ElasticSearch) and I need to search across multiple models. Something like: # title is a field in all models Tire.search :tasks, :projects, :posts, { :title ...
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 ...
3
votes
1answer
243 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 ...