Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Ruby on rails 3.2 application where I'm trying to use Tire and Elastic Search.

I have a User model that has the following declarations:

include Tire::Model::Search
include Tire::Model::Callbacks

I then carried out an initial import of records into Elastic Search by calling:

rake environment tire:import CLASS=User FORCE=true

Is it possible to customise the import task, such that it skips one user? I have a system user that I would prefer not to be indexed?

share|improve this question

2 Answers

up vote 3 down vote accepted

First, the Rake task is only a convenience method for the most usual cases, when trying elasticsearch/Tire out, etc. For more complex situations, you should write your own indexing code -- it should be very easy.

Second, if you have certain conditions whether the record is indexed or not, you should do what the README instructs you: don't include Tire::Model::Callbacks and manage the indexing lifecycle yourself, eg with:

after_save do
  update_index if state == 'published'
end
share|improve this answer
Aren't they two separate steps? The rake task is for the initial load, when you're importing existing data into Elasticsearch and then the callbacks are for when those records are updated or deleted. It would seem a combination of my answer and your answer would correctly exclude an item from the index. – Planty Nov 14 '12 at 10:47
Yes, correct -- but in special cases like this one, it's always better to invest time into fine-tuning your custom indexing mechanism, see eg. github.com/karmi/tire/issues/509 – karmi Nov 14 '12 at 21:26
Thanks, I'm glad I understand that better now. I'll put in both parts to solve my initial load issue and prevent any ongoing updates or new system users causing an issue. – Planty Nov 15 '12 at 1:15

I've found a rough solution to my problem and wanted to post something back, just in case someone else comes across this. If anyone has any better suggestions, please let me know.

In the end I wrote a tire task that calls the regular import all and then subsequently deletes the system account from the index.

namespace :tire do
  desc 'Create search index on User'
  task :index_users => :environment do
    ENV['CLASS'] = 'User'
    ENV['FORCE'] = 'TRUE'
    Rake::Task['tire:import'].invoke
    @user = User.find_by_type('System')
    User.tire.index.remove @user
  end
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.