2010-04-09 13:34:11 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Elasticsearch < Formula
|
2011-05-13 08:21:58 +00:00
|
|
|
homepage 'http://www.elasticsearch.org'
|
2012-11-14 22:03:45 +00:00
|
|
|
url 'https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.11.tar.gz'
|
|
|
|
sha1 '0eeaec541c8aff4d65f47eb5b19af48c725d3663'
|
2011-01-13 19:21:49 +00:00
|
|
|
|
2011-10-02 20:45:20 +00:00
|
|
|
def cluster_name
|
|
|
|
"elasticsearch_#{ENV['USER']}"
|
|
|
|
end
|
|
|
|
|
2011-04-25 11:23:26 +00:00
|
|
|
def install
|
|
|
|
# Remove Windows files
|
|
|
|
rm_f Dir["bin/*.bat"]
|
2011-11-17 00:09:36 +00:00
|
|
|
# Move JARs from lib to libexec according to homebrew conventions
|
|
|
|
libexec.install Dir['lib/*.jar']
|
|
|
|
(libexec+'sigar').install Dir['lib/sigar/*.jar']
|
2011-01-13 19:21:49 +00:00
|
|
|
|
2011-04-25 11:23:26 +00:00
|
|
|
# Install everything directly into folder
|
|
|
|
prefix.install Dir['*']
|
|
|
|
|
2011-10-02 20:45:20 +00:00
|
|
|
# Set up ElasticSearch for local development:
|
2011-04-25 11:23:26 +00:00
|
|
|
inreplace "#{prefix}/config/elasticsearch.yml" do |s|
|
2011-10-02 20:45:20 +00:00
|
|
|
|
|
|
|
# 1. Give the cluster a unique name
|
|
|
|
s.gsub! /#\s*cluster\.name\: elasticsearch/, "cluster.name: #{cluster_name}"
|
|
|
|
|
|
|
|
# 2. Configure paths
|
|
|
|
s.gsub! /#\s*path\.data\: [^\n]+/, "path.data: #{var}/elasticsearch/"
|
|
|
|
s.gsub! /#\s*path\.logs\: [^\n]+/, "path.logs: #{var}/log/elasticsearch/"
|
2012-06-23 14:58:10 +00:00
|
|
|
|
|
|
|
# 3. Bind to loopback IP for laptops roaming different networks
|
|
|
|
s.gsub! /#\s*network\.host\: [^\n]+/, "network.host: 127.0.0.1"
|
2011-04-25 11:23:26 +00:00
|
|
|
end
|
|
|
|
|
2011-11-18 21:22:45 +00:00
|
|
|
inreplace "#{bin}/elasticsearch.in.sh" do |s|
|
2011-11-17 00:09:36 +00:00
|
|
|
# Replace CLASSPATH paths to use libexec instead of lib
|
|
|
|
s.gsub! /ES_HOME\/lib\//, "ES_HOME/libexec/"
|
|
|
|
end
|
|
|
|
|
2011-11-18 21:22:45 +00:00
|
|
|
inreplace "#{bin}/elasticsearch" do |s|
|
2011-11-17 00:09:36 +00:00
|
|
|
# Set ES_HOME to prefix value
|
|
|
|
s.gsub! /^ES_HOME=.*$/, "ES_HOME=#{prefix}"
|
|
|
|
end
|
|
|
|
|
2011-11-23 22:40:12 +00:00
|
|
|
inreplace "#{bin}/plugin" do |s|
|
|
|
|
# Set ES_HOME to prefix value
|
|
|
|
s.gsub! /^ES_HOME=.*$/, "ES_HOME=#{prefix}"
|
|
|
|
# Replace CLASSPATH paths to use libexec instead of lib
|
|
|
|
s.gsub! /-cp \".*\"/, '-cp "$ES_HOME/libexec/*"'
|
|
|
|
end
|
2011-01-13 19:21:49 +00:00
|
|
|
end
|
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2012-04-11 21:58:18 +00:00
|
|
|
If upgrading from 0.18 ElasticSearch requires flushing before shutting
|
|
|
|
down the cluster with no indexing operations happening after flush:
|
|
|
|
curl host:9200/_flush
|
|
|
|
|
2011-10-02 20:45:20 +00:00
|
|
|
See the 'elasticsearch.yml' file for configuration options.
|
2011-04-25 11:23:26 +00:00
|
|
|
|
|
|
|
You'll find the ElasticSearch log here:
|
2011-10-02 20:45:20 +00:00
|
|
|
open #{var}/log/elasticsearch/#{cluster_name}.log
|
2011-04-25 11:23:26 +00:00
|
|
|
|
2011-10-02 20:45:20 +00:00
|
|
|
The folder with cluster data is here:
|
|
|
|
open #{var}/elasticsearch/#{cluster_name}/
|
2011-04-25 11:23:26 +00:00
|
|
|
|
|
|
|
You should see ElasticSearch running:
|
|
|
|
open http://localhost:9200/
|
|
|
|
EOS
|
|
|
|
end
|
2011-01-13 19:21:49 +00:00
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
plist_options :manual => "elasticsearch -f -D es.config=#{HOMEBREW_PREFIX}/opt/elasticsearch/config/elasticsearch.yml"
|
|
|
|
|
|
|
|
def plist; <<-EOS.undent
|
2011-04-25 11:23:26 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2011-04-25 11:23:26 +00:00
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/bin/elasticsearch</string>
|
2011-04-25 11:23:26 +00:00
|
|
|
<string>-f</string>
|
|
|
|
<string>-D es.config=#{prefix}/config/elasticsearch.yml</string>
|
|
|
|
</array>
|
2012-03-22 04:02:10 +00:00
|
|
|
<key>EnvironmentVariables</key>
|
|
|
|
<dict>
|
|
|
|
<key>ES_JAVA_OPTS</key>
|
|
|
|
<string>-Xss200000</string>
|
|
|
|
</dict>
|
2011-04-25 11:23:26 +00:00
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>UserName</key>
|
2011-10-02 20:45:20 +00:00
|
|
|
<string>#{ENV['USER']}</string>
|
2011-04-25 11:23:26 +00:00
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}</string>
|
|
|
|
<key>StandardErrorPath</key>
|
2011-10-02 20:45:20 +00:00
|
|
|
<string>/dev/null</string>
|
2011-04-25 11:23:26 +00:00
|
|
|
<key>StandardOutPath</key>
|
2011-10-02 20:45:20 +00:00
|
|
|
<string>/dev/null</string>
|
2011-04-25 11:23:26 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
2012-11-25 15:06:41 +00:00
|
|
|
EOS
|
2010-04-09 13:34:11 +00:00
|
|
|
end
|
|
|
|
end
|