Tire is a Ruby client for the ElasticSearch search engine/database. It provides Ruby-like API for fluent communication with the ElasticSearch server and blends with ActiveModel classes for convenient usage in Rails applications.

learn more… | top users | synonyms

0
votes
1answer
10 views

Elasticsearch documents not showing up or updating without routing set

So I have a couple of documents (5) that I'm creating and trying to update. They are all similar but after I've inserted them into elasticsearch only one of them responds to a simple query of curl ...
0
votes
1answer
24 views

Tire ActiveModel callback slow

I've a table which shows data from elasticsearch via tire. The table retrieves the data async in json format. So if i try to change a entry the table still shows the "old" state of the entry (the ...
0
votes
1answer
16 views

Elasticsearch: How to search with different analyzers?

I'm using my custom analyzer autocomplete_analyzer with filter edgeNGram. So mapping looks like: "acts_as_taggable_on_tags" : { "acts_as_taggable_on/tag" : { "properties" : { ...
0
votes
1answer
19 views

Accessing method in mapping block for tire/elasticsearch

I have a method that returns a hash: def image_hash images = { small: 'http://www.example.com/image1.png', medium: 'http://www.example.com/image2.png' } end I need to index it as part ...
1
vote
1answer
26 views

Stemming using Tire library

I am performing some basic search functions using ElasticSearch and Tire but the basic configuration of the snowball stemming analyzer has me stumped. I'm pretty much following the code example from ...
5
votes
3answers
70 views

How to implement tire map in java?

I want a tire map like blow: Map<String,Object> map = new TireMap(); map.put("com","1"); map.put("com.aa","2"); map.put("com.aa.bb","3"); map.get("com");// return ["1","2","3"] ...
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
50 views

ruby on rails: ElasticSearch / Tire dynamic search on multiple indices

I've done a bunch of searching and I haven't been able to get an answer to this question - hopefully this isn't a repeat (apologies if it is)... Preface: I'm using Rails & Tire to perform ...
0
votes
1answer
19 views

How to retrieve the ratings/number of categories with Tire/ElasticSearch?

I am trying to retrieve the nested data from an ElasticSearch query, basically trying to get from a Movie model: title ratings categories Now, I tried 2 Tire setups, but both only give back movie ...
2
votes
0answers
49 views

How do I limit Tire/ElasticSearch results by association?

I have a collection of posts that are within categories and subcategories using a belongs_to association. Additionally, the posts have a belongs_to relationship with my state and city models. I am ...
0
votes
1answer
15 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 ...
0
votes
2answers
34 views

Expire Document with Tire Gem using ttl

I found the _ttl mapping in Elasticsearch. I wonder how can I use this mapping with tire gem. Code snippets are highly appreciated.
0
votes
1answer
26 views

Filtering Tire results by status

I'm trying to filter my Tire search results by a 'status_id'. I do not want to show results with a 'status_id' of 2. Here is my current search code: query = params[:query] page = params[:page] || 1 ...
1
vote
1answer
95 views

Symbols in query-string for elasticsearch

I have "documents" (activerecords) with an attribute called deviations. The attribute has values like "Bin X" "Bin $" "Bin q" "Bin %" etc. I am trying to use tire/elasticsearch to search the ...
0
votes
2answers
56 views

Ignoring Apostrophes (Possessive) In ElasticSearch

I'm trying to get user submitted queries for "Joe Frankles", "Joe Frankle", "Joe Frankle's" to match the original text "Joe Frankle's". Right now we're indexing the field this text is in with (Tire / ...
0
votes
2answers
104 views

Elastic Search Multiple Fields

I'm using Tire to index and search a database of cars: create :mappings => { :cars => { :properties => { :id => {:type => 'string', :index => 'not_analyzed', ...
0
votes
1answer
39 views

Add after_save callback for tag gem model to update tire index

I have a posting model that has tags using the rocket_tag gem class Posting < ActiveRecord::Base attr_taggable :tags def tag_list self.tags.join(",") end def tag_list=(new_tags) ...
1
vote
1answer
85 views

How to filter by external data not indexed in ElasticSearch

I can't find a way to do the following with ElasticSearch: I have 2,000,000 items indexed in ElasticSearch I have 30,000 players saved in MySQL Every item has the name of a player as an attribute. ...
1
vote
1answer
30 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' ...
0
votes
3answers
75 views

Update Tire index without using Tire::Model::Callbacks

I've gone over the Tire documentation and I understand that it's possible to create indexes and import objects into Elasticsearch using Tire without using the ActiveModel includes. I would like to ...
0
votes
1answer
79 views

How to define a Tire property of type nested in a ActiveRecord mapping block?

I have a Rails application where a topic can be followed by various users. I want to be able to find a topic matching a name and followed by a specific user. Only using a Tire query statement, without ...
0
votes
1answer
78 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
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
43 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 ...
0
votes
1answer
33 views

Tire Elastic search: Deleting a record from model and redirecting immediately throws error

I am having a model named User. When I destroy a user and redirect to the User's index page, it throws an exception ActiveRecord::RecordNotFound: Couldn't find all Users with IDs (1, 200) (found 1 ...
0
votes
1answer
102 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 ...
2
votes
2answers
73 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
0answers
77 views

Elasticsearch term AND range filter using tire

I am trying build a search function in rails based on elasticsearch+tire enabling search for Persons with filtering for associated Objects and their Values. A Person has_many Objects, and an Object ...
0
votes
2answers
240 views

connection error with tire/elasticsearch remote server

I have installed a ubuntu 12.04 remote server with elasticsearch. I have installed elasticsearch with: sudo apt-get update sudo apt-get install openjdk-7-jre-headless -y wget ...
0
votes
1answer
26 views

tire working with several elastic instances.. how?

I'm digging into Tire gem documentation. I need some way to search against another elastic instance or create index on another elastic instance. Don't ask me why - it's architecture problem. We can ...
0
votes
1answer
69 views

elasticsearch highlighting error, failed to highlight … String index out of range

I cannot make head or tail of this error, and its happening pretty randomly to where I don't even know where to start looking. This is what the full error looks like ...
0
votes
1answer
38 views

query by date vs query by time

I assume that application code should store time in database always as UTC ( punch me if I am wrong) Now lets say I want to query everything between 23-mar-2013 to 24-mar-2013 . Should I create a ...
1
vote
0answers
130 views

How should I index my data in ElasticSearch to solve this situation?

I'm building a search engine for a game (path of exile). In this game, items have sockets. items can have from 0 to 6 sockets some sockets can be linked there are 3 types of sockets (Red, Green, ...
0
votes
0answers
85 views

ElasticSearch matching nested document with boost

I have a User model, and user can have multiple interests with a numeric degree of how interested this person is in the subject matter. A sample user.to_indexed_json is: { // user attributes ...
0
votes
0answers
31 views

Losing analyzer when delete and import index

I'm currently using tire inside a rails application so this is my model : class Content < ActiveRecord::Base include Tire::Model::Search include Tire::Model::Callbacks validates :title, ...
0
votes
2answers
106 views

Filter result based on a count of inner data

I am building my search query for some listing data. As part of the search people can ask for multiple rooms which sleeps a min amount of people, ie two rooms which sleep 2 and 3 people. Im not sure ...
0
votes
1answer
39 views

Elasticsearch char_filter replace any character with whitespace?

I'm using elasticsearch for my Ruby on Rails application. I want to use char_filter to replace some characters with whitepace. In tutorial of elasticsearch it says something like: "mappings" : ...
0
votes
0answers
128 views

ElasticSearch with Tire doesn't include custom analyzer with STI model

I have an STI model which I want to be searchable with ElasticSearch and Tire. The issue I am having is when Tire creates the mappings it seems to ignore my custom analyzers for the second model. ...
1
vote
2answers
195 views

Multi-field, multi-word, match without query_string

I would like to be able to match a multi word search against multiple fields where every word searched is contained in any of the fields, any combination. The catch is I would like to avoid using ...
0
votes
1answer
101 views

Alternative syntax for ElasticSearch vs ThinkingSphinx

Please have a look on below code, Its the normal indexing statement for thinking sphinx indexes owned_tags.name, :as => :owned_tag_names has owned_tags.id, :as => :owned_tag_ids, :facet => ...
1
vote
1answer
74 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
1answer
162 views

Update ElasticSearch mapping in production (Tire)

I would like to have a clear understanding on how to deal with the following scenario: I'm adding or removing an attribute from an activerecord model, so I want to update its mapping in ...
0
votes
1answer
117 views

elasticsearch stops indexing new documents after a while, using Tire

I have my website running, with ElasticSearch, using Tire. In the background, I have a rake task that is looping over thousands of objects and creating one record for each of them. At first, the ...
1
vote
1answer
306 views

Pagination with Elasticsearch, Tire, and Kaminari

I'm having issues getting pagination of search results to work with Elasticsearch, Tire, and Kaminari. I am searching on all models in my application (news, paintings, books) as a general site search ...
0
votes
0answers
79 views

Elasticsearch selecting records with max field value and grouping by another field

i'm a bit new using elasticsearch, actually i have an objects structure where i have a resource table where each of the resources belongs to an assignment and have a version_number value, what i want ...
0
votes
1answer
331 views

ElasticSearch/Tire: How to properly set partial word searches up

Even though I've seen many accounts of it mentioning this as relatively straightforward, I haven't managed to see it working properly. Let's say I have this: class Car < ActiveRecord::Base ...
0
votes
2answers
173 views

Elasticsearch sort based on the number of occurrences a string appears in an array

I have an array field containig a list of strings: ie.: ["NY", "CA"] At search time I have a filter which matches any of the strings in the array. I would like to sort the results based on ...
0
votes
2answers
175 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
131 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, ...
0
votes
1answer
79 views

How to query a blank date in elasticsearch

Is there a way in elasticsearch to query for a date type with a blank/empty value? What value gets assigned in the index to blank date fields? Must I use the missing filter, or is there a way to use ...

1 2 3 4 5 6