Buildout recipe that installs and configures Apache Solr. The default setup works with haystack 1.2.3.
Project description
Buildout recipe that installs and configures Apache Solr. The recipe was made to make it easy to setup Solr for Haystack. It has only been tested with Haystack 1.2.3 and Solr 3.6.2.
Requirements
Java 1.5 or greater from Oracle, OpenJDK or IMB. Gnu GCJ does not work. Run java -version to see what version you have installed if any.
Usage
Add something like this to your buildout.cfg:
[buildout] ... parts = ... solr ... [solr] recipe = solr_recipe solr_version = 3.6.2 loglevel = INFO
The configuration above will work with Haystack. It installs a run_solr.sh script in bin/, and stores data in var/solr/data/.
Run bin/buildout.
Add schema.xml to var/solr/home/. See solr_classpath for information about how this works.
Run bin/run_solr.sh
Haystack?
If you use Haystack, you should use:
$ python manage.py build_solr_schema -f var/solr/home/conf/schema.xml
in step 3. See the run_solr_extra_startup_commands option below for how to automate this.
Options
- solr_version (required)
The solr version to download from the mirror.
- mirror
The Apache mirror to download from. Defaults to http://archive.apache.org/dist/lucene/solr/.
- java_executable
The Java executable to use in run_solr.sh. Defaults to java.
- solr_logconfig_tplfile
A Jinja2 template used to generate the solr logging.properties file. It gets all options added to the section as template variables, so loglevel and any other options you add will be available in the template. If no template file is specified, we use this template:
.level = {{ loglevel }} # Write to the console: handlers = java.util.logging.ConsoleHandler
- loglevel
Specifies the loglevel for the solr_logconfig_tplfile. Defaults to INFO.
- solr_datadir
The directory where solr should store data. This is forwarded to solr via -Dsolr.data.dir in run_solr.sh. Defaults to var/<sectionname>/data/, where <sectionname> is the name of the buildout config section (solr in the example above). The directory is created (recursively) if it does not exist.
- solr_home
Instead of using our example config-directory, you can configure your own using this option. Defaults to var/<sectionname>/home/, which is copied from the solr_recipe/files/example-solr3.6-config/-directory in the python package if it does not exists (links to the latest version - select the tag matching your version to view the actual files). The default directory does not include a schema.xml.
- solr_classpath
Add extra directories to the Java classpath. Added to run_solr.sh with the -classpath option. Refer to java -help for more info about the format. You can use this to provide a directory where you override any config files in solr_home. Defaults to var/<sectionname>/config_overrides.
- run_solr_extra_startup_commands
Extra shell commands to run before starting solr in run_solr.sh. Typically used to generate the Haystack schema automatically before starting solr. Example:
[solr] recipe = solr_recipe ... run_solr_extra_startup_commands = echo "Starting Apache Solr" python ${buildout:directory}/manage.py build_solr_schema -f ${buildout:directory}/var/solr/home/conf/schema.xml
- run_solr_extra_shutdown_commands
Just like run_solr_extra_startup_commands, but these are added to run_solr.sh after the command to start/run Solr. Example:
[solr] recipe = solr_recipe ... run_solr_extra_shutdown_commands = echo "Solr was stopped. Exited with exit code $?"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file solr_recipe-1.0.tar.gz
.
File metadata
- Download URL: solr_recipe-1.0.tar.gz
- Upload date:
- Size: 39.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9391dde099ec84c908cde0682affabbea5ad9faf9d66da568a129ef4c9d466f3 |
|
MD5 | b06c84fdfb663bdd6fdffe160a5aff42 |
|
BLAKE2b-256 | faec6b70b3833b0d63addebf09e4b83ddcb44517749fd21c49983f3b7f737d19 |