require 'formula' class Elasticsearch < Formula homepage 'http://www.elasticsearch.org' url 'https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.19.11.tar.gz' sha1 '0eeaec541c8aff4d65f47eb5b19af48c725d3663' def cluster_name "elasticsearch_#{ENV['USER']}" end def install # Remove Windows files rm_f Dir["bin/*.bat"] # Move JARs from lib to libexec according to homebrew conventions libexec.install Dir['lib/*.jar'] (libexec+'sigar').install Dir['lib/sigar/*.jar'] # Install everything directly into folder prefix.install Dir['*'] # Set up ElasticSearch for local development: inreplace "#{prefix}/config/elasticsearch.yml" do |s| # 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/" # 3. Bind to loopback IP for laptops roaming different networks s.gsub! /#\s*network\.host\: [^\n]+/, "network.host: 127.0.0.1" end inreplace "#{bin}/elasticsearch.in.sh" do |s| # Replace CLASSPATH paths to use libexec instead of lib s.gsub! /ES_HOME\/lib\//, "ES_HOME/libexec/" end inreplace "#{bin}/elasticsearch" do |s| # Set ES_HOME to prefix value s.gsub! /^ES_HOME=.*$/, "ES_HOME=#{prefix}" end 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 end def caveats; <<-EOS.undent If upgrading from 0.18 ElasticSearch requires flushing before shutting down the cluster with no indexing operations happening after flush: curl host:9200/_flush See the 'elasticsearch.yml' file for configuration options. You'll find the ElasticSearch log here: open #{var}/log/elasticsearch/#{cluster_name}.log The folder with cluster data is here: open #{var}/elasticsearch/#{cluster_name}/ You should see ElasticSearch running: open http://localhost:9200/ EOS end plist_options :manual => "elasticsearch -f -D es.config=#{HOMEBREW_PREFIX}/opt/elasticsearch/config/elasticsearch.yml" def plist; <<-EOS.undent KeepAlive Label #{plist_name} ProgramArguments #{HOMEBREW_PREFIX}/bin/elasticsearch -f -D es.config=#{prefix}/config/elasticsearch.yml EnvironmentVariables ES_JAVA_OPTS -Xss200000 RunAtLoad UserName #{ENV['USER']} WorkingDirectory #{var} StandardErrorPath /dev/null StandardOutPath /dev/null EOS end end