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

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.

share|improve this question
Yes, the first part of the question is the same. The howto part, related to chef cookbook creation is only here. I tried to find the answer on the solr-user list as well. It seems the cookbook should be updated in the next weeks. – fifigyuri Dec 10 '10 at 13:18

2 Answers

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:

  1. install java
  2. download solr
  3. extract
  4. done

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!

  1. create my_cookbooks
  2. in my_cookbooks create solr
  3. in solr create recipes

In my_cookbooks/solr/recipes, create a server.rb and add the following:

# download a binary release
remote_file "/tmp/apache-solr-3.1.0.tgz" do
  source "http://apache.openmirror.de//lucene/solr/3.1.0/apache-solr-3.1.0.tgz"
end

execute "extract" do
  command "tar zxf apache-solr-3.1.0.tgz"
  cwd "/tmp"
end

When this recipe ran (e.g. using chef-solo), an example application should be located in /tmp/apache-solr-3.1.0/example, to start it, go into the directory and do java -jar start.jar.

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:

  1. put solr into a nice path (e.g. /opt)
  2. create an init.d script to stop/start solr

That's a solr recipe in a nutshell.

share|improve this answer

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).

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.