0
votes
1answer
21 views

Manage Rails model classes across repositories

My project has the following setup. I have two repositories (seprate projects): one that generates my model classes (Ruby) one that works with my model classes (Rails) The first one writes the ...
0
votes
1answer
14 views

How to write Tire query where an association_id is nil or certain value?

I have a Lesson model that belongs_to Account. Public lessons have a nil account_id. Private lessons have a value in account_id. How do I write a search for Lesson for some search term present in ...
1
vote
1answer
29 views

Set an attribute type without setting _type in ElasticSearch with Tire

The document I want to index has a property with name type. When I use tire to store it, for instance: Tire.index 'mydocuments' do delete create store :name => name, :type => 'pdf' ...
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
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
1answer
73 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
2answers
170 views

error tire elastic search if I write “:” colon character

This is my tire setting: def self.search(params) tire.search(load: true, page: params[:page], per_page: 9) do query do boolean do must { string params[:query], ...
1
vote
2answers
130 views

How do I reindex just one element with Tire and elasticsearch?

I can't seem to figure out how to edit indexed element. Google doesn't give me an answer either. So, I'm not sure if it's possible at all? What I have done before is just to reindex the whole thing, ...
1
vote
2answers
90 views

What should I do when the bonsai server is down?

I am using ElasticSearch with Tire and host my app on Heroku. Last night, when the bonsai server was down, my whole app crashed. When I tried to deploy the app to Heroku, Tire tried to connect and ...
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?
0
votes
0answers
154 views

Parent child relationship in Elasticsearch

I have big problems understanding how to map and search for associated objects in Elasticsearch using the Tire gem. For instance I want a parent child relationship, how do I do that? I can't find a ...
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 ...
0
votes
2answers
31 views

Proxies to the real Tire methods?

I am reading the documentation for the Tire gem and I am a confused about what it mean by the following paragraphs. Could someone explain it? In fact, all this time you've been using only proxies ...
0
votes
2answers
66 views

What is returned by a search with Tire gem in Rails

What is returned when I do a search with the Tire gem in Rails (using Active Record integration)? Is the actual models returned or is it some generic object? I don't understand what I get back.
2
votes
2answers
225 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 ...
0
votes
1answer
172 views

How to sort with elasticsearch?

I am trying to make methods for sorting desc and asc. I am using rails, tire gem and elasticsearch. I am trying to figure out what sort params I can send in the URL So I have defined in the ...
1
vote
0answers
117 views

Array field in elasticsearch returning only matching elements

I have an index in elasticsearch (tire) with an array field and custom analyzer for ngram with min_ngram = 1 and max_ngram = 10. Field example field1: [foo, bar, bof] I construct a query with ...
1
vote
1answer
363 views

Can't start elasticsearch server via Homebrew

So I have installed elasticsearch through brew: $ brew install elasticsearch Then when I run the elasticsearch server: elasticsearch -f -D ...
0
votes
1answer
289 views

Why multi-field mapping is not working with tire gem for elasticsearch?

I'm using elastic search to enhance search capabilities in my app. Search is working perfectly, however sorting is not for fields with multiple words. When I try to sort the search by log 'message', ...
0
votes
1answer
214 views

Elasticsearch:Tire - If field is missing, put it last

I am using rails and for search I am using Tire and elasticsearch. I have a string type field which in some records have value and in some records is nil. I'd like to sort and show last, all the ...
3
votes
1answer
167 views

Multiple facet filters with Elasticsearch

How can I apply multiple filters to facet (with tire gem)? I have a code: facet "packages" do terms :package facet_filter :terms, producer: [*params[:producer]] if params[:producer].present? ...
0
votes
0answers
87 views

Having trouble with mixed complex boolean with Tire (and ElasticSearch)

I've been trying to figure out how to do mixed boolean searches that use nested objects using Tire. All the simple examples I've found don't include a more complex query (when searching on other ...
0
votes
2answers
41 views

How to wait for ES indexing to finish in Rspec and Capybara?

How to avoid using sleep 1 in that example for wait until ES indexing will be finished? describe Question do before do create :question, content: "Some test question", ...
0
votes
1answer
75 views

How to exclude some types from tire results?

Tire.search index do query do filtered do query { string term } filter :or, { missing: { field: :group_id } }, { terms: { group_id: group_ids } } filter :not ...
0
votes
2answers
120 views

How to build custom to_indexed_json method for Tire?

I would like to achievie something like that: def to_indexed_json { if source.respond_to?(:app_id) app_id: source.app_id end id: self.id, content: self.content ...
2
votes
2answers
100 views

Integrating Elasticsearch with Activerecord

In Java when using Hibernate Search for instance you bind JPA insertion, removal and update events to the search engine so that it automatically insert, updates and removes elements from the search ...
4
votes
1answer
496 views

Fuzzy String Matching with Rails (Tire) and ElasticSearch

I have a Rails application that is now set up with ElasticSearch and the Tire gem to do searching on a model and I was wondering how I should set up my application to do fuzzy string matching on ...
2
votes
1answer
290 views

How to limit the total returned results when using ElasticSearch with Tire (A Ruby on Rails Gem)?

I tried to use Post.search(keyword, :size => 10) and Post.search(keyword).size(10). but non of these will work.
0
votes
1answer
252 views

Elasticsearch/tire Nested Queries with persistant objects

I'm trying to use Tire to perform a nested query on a persisted model. The model (Thing) has Tags and I'm looking to find all Things tagged with a certain Tag class Thing include ...
2
votes
1answer
86 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 } } ...
1
vote
1answer
39 views

How to get list of classes that declare an index with Tire?

I wrote following helper for spec_helper. module TireHelper def clear_tire_index_for(*resources) resources.each do |res| res.index.delete res.tire.create_elasticsearch_index ...
1
vote
1answer
80 views

ElasticSearch Tire - How to configure to use a value field with date histogram facets?

I'm using the wonderful Tire gem. But, I can't find in the documentation how to to this. Basically, I"d like to add a value field to a date_histogram in Tire. But, I can't seem to make it happy with ...
0
votes
1answer
346 views

ElasticSearch / Tire - Facets are not filtered by the query?

I have an ElasticSearch / Tire query that has facets attached. It seems the facets a using the global scope, instead of the query scope and filters. Here is my definition. I'm not sure how to scope ...
2
votes
1answer
197 views

ElasticSearch / Ruby - Date Histogram Format Returned?

I've got an ElasticSearch model (persisted by Tire, no ActiveRecord). If I query it, i get some results with some facets (as expected). The format is: class Mention include ...
1
vote
2answers
258 views

Elasticsearch Term Filter Slow

We're running a 2 node elasticsearch cluster with 2 indexes currently and it's performing beautifully (750k docs and 11.1 million docs). We're now trying to add a new index with 35.4 million docs and ...
0
votes
1answer
51 views

How to test tire indexed_json results?

I would like to test my search method but how to test to_indexed_json results. Here is my test: describe Search do before do Question.index.delete Question.tire.create_elasticsearch_index ...
0
votes
2answers
601 views

Searching Multiple Terms with ElasticSearch + Tire

Using Tire with Mongoid, I'm having trouble figuring out how to structure a query for finding events with ElasticSearch. In particular, I'm trying to find events that users are watching in addition to ...
0
votes
1answer
96 views

How to filter search collection only if resource has specific attribute?

I am using Elastic Search and Tire in searching. I created Search class for searching across all my models. class Link < ActiveRecord::Base ... tire.mapping do indexes :id, :type => ...
0
votes
1answer
217 views

ElasticSearch / Tire with rails: no parser for element

I'm using elasticsearch with tire gem for Ruby on Rails. so far so good, I have a successfull range facet on dates, but now i'm trying to do the same for a float field and it is giving me 'no parser ...
2
votes
1answer
55 views

Allowing non-existence on a filtered term in ElasticSearch with tire

I have a boolean field that I'm trying to filter by, but I want to fetch documents that either have a specific value for this field, or doesn't have this field populated at all. How can I accomplish ...
2
votes
1answer
84 views

Get all properties that lies within user defined polygon in Tire/Elastic search using geo_polygon filter

I'm working on a project that uses ElasticSearch and tire.I have a google map on my web page.i want to get all properties when user draw apolygon on the map that must be fetched by Elastic search with ...
0
votes
3answers
539 views

Rails Elastic Search Error “The stack size specified is too small, Specify at least 160k Error: Could not create the Java Virtual Machine. ”

I'm working on a Rails3 Project using Elasticsearch and Tire. After installing Elastic-search when I try to run it, it gives me the following error: The stack size specified is too small, Specify at ...
0
votes
1answer
151 views

Boosting results of a query in Tire, if match particular ID?

I have an ElasticSearch database that has "pages" in it. class Page field :domain_id field :page_id field :title field :description field :filetype field :content end Each page ...
0
votes
2answers
34 views

Elasticsearch : How to match non existant tags

Lets say I have a set of document which have a-z as keys. And I am firing this term query: curl -X GET localhost:9200/memphis/pincode/_search?pretty=json -d '{"query":{"term":{"a":"abcd", ...
2
votes
1answer
440 views

passing json data in elasticsearch get request using rest-client ruby gem

How do I execute the below query(given in doc) using rest client. curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '{ "query" : { "term" : { "user" : "kimchy" } } } ' I ...
0
votes
0answers
122 views

What does tire mapping with store and index as no signify?

What I actually need: I want to specify a field in index but it should not be searchable. Whenever we search the articles, articles of a particular user alone should occur. Will the below code serve ...
2
votes
2answers
650 views

Tire Gem Returns 'Can't sort on string types with more than one value per doc, or more than one token per field'

I have mapped an associated field as a multi-field. I have set the 'name' property to be analyzed using a snow ball analyzer and 'exact' as not analyzed. I am able to search on this field and filter ...
1
vote
1answer
208 views

Tire :include_in_all => false but fields are still included in _all

I'm using tire for implementing search for a rails app. The app is backed by CouchDB & couchrest_model gem, which implements ActiveModel. From the readme it would seen that there's an option ...
1
vote
1answer
91 views

Getting elasticsearch connect error on continuous uploads

I have a script that reads lines one by one from a csv file and index the same to elasticsearch in the same order. My elasticsearch host is the same machine on which the script is running. Everything ...
0
votes
1answer
111 views

Tire index per language?

I have the following Tire mappings on a Rails model: mapping do indexes :name, analyzer: 'arabic', boost: 10 indexes :city_name, analyzer: 'arabic', boost: 5 indexes ...

1 2