I've just finished watching both Railscasts' episodes on Elasticsearch. I've also went ahead and implemented it into my rails application (3.1) and everything is working great. How I want to deploy my app to Heroku but I'm unsure how to get Elasticsearch working on Heroku (specifically on a cedar stack).

Any help would be greatly appreciated!

link|improve this question

70% accept rate
feedback

4 Answers

up vote 2 down vote accepted

Heroku now supports ElasticSearch with the Bonsai add on. https://devcenter.heroku.com/articles/bonsai

link|improve this answer
Very cool! I was waiting for someone to come out w/ an add-on for this. I'll have to try and implement this – Kyle Decot Mar 19 at 16:52
feedback

You can very easily [and freely ;-)] roll your own ElasticSearch server on Amazon EC2, and just connect to it with your app. This is what we're doing, and it's working nicely...

http://www.elasticsearch.org/tutorials/2011/08/22/elasticsearch-on-ec2.html

link|improve this answer
great source - thx 4 sharing – Luca G. Soave Jan 10 at 11:10
feedback

That was exactly my first thought when I watched the RailsCast but unfortunately it's a java daemon that it runs as which isn't possible on Heroku.

link|improve this answer
Well that's quite depressing. It seems like ElasticSearch would of been a great alternative to what I'm using now (Solr/Sunspot). – Kyle Decot Dec 14 '11 at 16:41
would have probably been worth asking before you implemented. Heroku isn't exactly a traditional environment :) – John Beynon Dec 14 '11 at 19:37
feedback

Anyway you can't run it on a normal Heroku dyno since it would have to save data to disk which is not persisted on Heroku. You need to wait for an Add-on or host it somewhere else.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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