Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Heroku for our app and I've started using Solr and the WebSolr add-on for full text search (with the Sunspot gem). I have Solr up and running on my development machine, but I want to simulate the production environment in order to debug some issues I'm seeing. Theoretically, I should be able to point to websolr in my config/sunspot.yml file and I should be able to search, correct? However, when I try to search, the request keeps timing out. I've verified that sunspot.yml is pointing to the right location:

development:
    solr:
        hostname: XXX.websolr.com
        port: 8983
        path: /solr/YYY
        log_level: INFO

I've also tried running the app with the environment set to production, still no luck.

Any ideas?

share|improve this question

1 Answer

up vote 3 down vote accepted

Because Solr is open source software, you can run your own local instance of it, just like MySQL, PostgesQL, Redis, and so on.

Since you're using Sunspot, it already provides a handy Rake task to start a local instance of Solr. You can run the following from within your Rails application:

rake sunspot:solr:start

That way, you don't need to mess with your configs at all.

That said, if you specifically do want to interact with your index on Websolr from your development environment (which can be handy in some situations), then you'll need to correct one tiny error in your sunspot.yml:

development:
  solr:
    ...
    port: 80

Namely, we're using port 80.

share|improve this answer
Thanks again, Nick. Yes, I think the port was the issue. Alternately, I noticed just setting the WEBSOLR_URL environment variable also did it. – Anand Iyer Jun 9 '11 at 4:28
Yes, good point, Sunspot does respect the WEBSOLR_URL environment variable for the Heroku addon. – Nick Zadrozny Jun 11 '11 at 0:15

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.