Tagged Questions
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
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 ...
0
votes
1answer
32 views
Faceting with Rubberband
I am implementing ElasticSearch in a Ruby-on-Rails 2.3 application with the RubberBand gem. I am trying to return facets but I can't seem to find methods that I can use for this purpose. I've looked ...
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 ...
2
votes
0answers
48 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
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
...
0
votes
1answer
113 views
Group by entire field value in Tire/ElasticSearch
I'm using the Tire rubygem to connect to ElasticSearch. How can you return facets based on a particular field's value?
For example, I have a field areas, and I'd like to show the top 10 areas as ...
0
votes
2answers
44 views
Search polygons within polygon with elasticsearch
Is there a way to search polygons which are inside another polygon with elasticsearch?
If not, is it possible with Solr or another system?
0
votes
3answers
72 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
75 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
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 ...
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
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
...
0
votes
0answers
74 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
236 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
0answers
83 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
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
0answers
126 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. ...
0
votes
1answer
161 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
115 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
305 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
1answer
318 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
171 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], ...
0
votes
1answer
45 views
get random result of Tire::Results::Collection
I have inside this variable @results a Tire::Results::Collection with many results.
How can I get 1 random result of this Tire::Results::Collection
Thanks!
0
votes
1answer
112 views
Config Tire to work with Bonsai ElasticSearch Heroku add-on
So I have a rails 3.2 app. I created an index.
I followed this guide: https://gist.github.com/nz/2041121 to create an bonsai.rb file in config/initializers/bonsai.rb
It looks like this:
...
0
votes
1answer
166 views
EdgeNGram with Tire and ElasticSearch
If I have two strings:
Doe, Joe
Doe, Jonathan
I want to implement a search such that:
"Doe" > "Doe, Joe", "Doe, Jonathan"
"Doe J" > "Doe, Joe", "Doe, Jonathan"
"Jon Doe" > "Doe, Jonathan"
"Jona ...
0
votes
0answers
29 views
Rails ElasticSearch (Tire) relational search
I'm looking to extend an existing search query with ElasticSearch if possible.
Currently I have a query like though (scoped in the model, but written out here for ease of reading):
User.where("name ...
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
1answer
82 views
Elasticsearch mapping does not include attributes from Rails key-value store
Model:
class Item
store :socket_store, accessors: [:sockets, :socket_count, :socket_link_count]
end
Mapping:
mapping do
indexes :id, key: "value", index: :not_analyzed
...
0
votes
1answer
69 views
Tire + Elastic Search - Forcing Import
In the tire gem's README, I see they propose two ways to import a model:
rake environment tire:import CLASS='Article'
rake environment tire:import CLASS='Article' FORCE=true
I can appreciate that ...
0
votes
1answer
49 views
ElasticSearch: How to map associations properly so that they are also searchable?
I've stumbled into an issue concerning the index mapping of models (ActiveRecord) using ElasticSearch and Tire. I'm using the same system they talk about in the documentation to map association ...
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
108 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
1answer
35 views
Why is the highlighted result wrapped in an array?
When adding the highlight option to the query, why is the highlighted text wrapped in an array? I need to do this in the view:
<%= link_to question.highlight.description[0].html_safe, ...
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.
0
votes
0answers
209 views
Elasticsearch / Tire - Flattening Nested Objects
In reference to the Query DSL Explained Tutorial Slides 14-15
How do I flatten Nested Objects?
I have a Model named Entry and another named Category and they share a HABTM association.
Everything is ...
0
votes
0answers
85 views
How to handle a nested_set association in ElasticSearch / Tire?
We're working on integrating ElasticSearch into our RoR3 application and have decided to use the Tire gem.
We're still learning how to use this amazing gem but couldn't find a tutorial on how to do ...
0
votes
0answers
123 views
Error loading custom synonym file in Elasticsearch
I am using Rails, Tire and Elasticsearch on EC2 single server setup, no sharding or replication (this is the Jenkins CI Server). With a custom initializer as such:
analysis:
filter:
...
0
votes
2answers
129 views
Tire + Will_Paginate not taking Tire.options
I'm trying to integrate Tire into my site and I'm having difficulty with pagination. I've tried paginating the results outside of the context of Tire and will_paginate is working on that Array. ...
0
votes
1answer
173 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
1answer
364 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
291 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
215 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
57 views
Can not get type => 'geo_point' and 'geo_polygon' to work
I am using karmi / tire gem of rails to use elastic-search in ROR
I am trying to set up my settings and mappings block to be able to create a geo_point.
I have the following set up in my model:
...
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
0answers
100 views
Struggling with boolean search Ruby on Rails and Elasticsearch (Tire gem)
Using Ruby on Rails with ElasticSearch and Tire gem.
I have some complex logic and my boolean search seems to malfunction:
on the model I have this:
tire.search(load: true, page: params[:page], ...
