I tried to find a cookbook for Solr, but the one at opscode's cookbook base sets up only group and user for solr, not the solr engine itself. My question is a bit twofold. Do you know a working maintained solr cookbook? If such one does not exist (or even if it exist), what would it need to create one? I am quite new to Chef so far, but like the philosophy of Chef. By knowing how to create a cookbook for a thing like Solr, would probably move me out towards a Chef doer.
|
|
As for getting started with chef recipies, I'd recommend my blog post/slides on the topic: http://till.klampaeckel.de/blog/archives/130-Automating-with-Chef-Solo.html As for a solr cookbook - we use solr as well, but due to some customization of our solr itself, the deployment is a little overcomplicated in our case. So basics are as follows:
For the first item, I suggest one of my recipies: https://github.com/till/easybib-cookbooks/blob/master/java/recipes/default.rb This recipies expects Ubuntu (tested with Karmic Koala (9.10)). As for the download and so on, this is not as hard as it sounds!
In
When this recipe ran (e.g. using chef-solo), an example application should be located in Of course this recipe doesn't do much yet, but it should give you an idea of what is required. IMHO, not too much. And this is as simple as it gets. You can do a lot more with a recipe, e.g. distribute configuration files or a start script - maybe make version a parameter so you can install different ones, etc.. In this case the remaining steps for me would be:
That's a solr recipe in a nutshell. |
||||
|
|
|
If there's a specific use case or feature you would like to see in the Opscode solr cookbook, open a ticket at tickets.opscode.com in the COOK project. I'm not aware of any other solr cookbooks in particular. If you write one you are encouraged to post it on the community site (cookbooks.opscode.com). |
|||
|
|