Last active
August 17, 2021 07:39
-
-
Save wulab/f101bd26cce0bd65b130ce105357d44a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ElasticsearchAT56 < Formula | |
desc "Distributed search & analytics engine" | |
homepage "https://www.elastic.co/products/elasticsearch" | |
url "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.6.16.tar.gz" | |
sha256 "6b035a59337d571ab70cea72cc55225c027ad142fbb07fd8984e54261657c77f" | |
bottle :unneeded | |
keg_only :versioned_formula | |
depends_on "openjdk@8" | |
def cluster_name | |
"elasticsearch_#{ENV["USER"]}" | |
end | |
def install | |
# Remove Windows files | |
rm_f Dir["bin/*.bat"] | |
rm_f Dir["bin/*.exe"] | |
# Install everything else into package directory | |
libexec.install "bin", "config", "lib", "modules" | |
# Set up Elasticsearch for local development: | |
inreplace "#{libexec}/config/elasticsearch.yml" do |s| | |
# 1. Give the cluster a unique name | |
s.gsub!(/#\s*cluster\.name: .*/, "cluster.name: #{cluster_name}") | |
# 2. Configure paths | |
s.sub!(%r{#\s*path\.data: /path/to.+$}, "path.data: #{var}/elasticsearch/") | |
s.sub!(%r{#\s*path\.logs: /path/to.+$}, "path.logs: #{var}/log/elasticsearch/") | |
end | |
inreplace "#{libexec}/bin/elasticsearch.in.sh" do |s| | |
# Configure ES_HOME | |
s.sub!(%r{#!/bin/bash\n}, "#!/bin/bash\n\nES_HOME=#{libexec}") | |
end | |
inreplace "#{libexec}/bin/elasticsearch-plugin" do |s| | |
# Add the proper ES_CLASSPATH configuration | |
s.sub!(/SCRIPT="\$0"/, %Q(SCRIPT="$0"\nES_CLASSPATH=#{libexec}/lib)) | |
# Replace paths to use libexec instead of lib | |
s.gsub!(%r{\$ES_HOME/lib/}, "$ES_CLASSPATH/") | |
end | |
# Move config files into etc | |
(etc/"elasticsearch").install Dir[libexec/"config/*"] | |
(etc/"elasticsearch/scripts").mkdir unless File.exist?(etc/"elasticsearch/scripts") | |
(libexec/"config").rmtree | |
bin.install libexec/"bin/elasticsearch", | |
libexec/"bin/elasticsearch-keystore", | |
libexec/"bin/elasticsearch-plugin", | |
libexec/"bin/elasticsearch-translog" | |
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8")) | |
end | |
def post_install | |
# Make sure runtime directories exist | |
(var/"elasticsearch/#{cluster_name}").mkpath | |
(var/"log/elasticsearch").mkpath | |
ln_s etc/"elasticsearch", libexec/"config" unless (libexec/"config").exist? | |
(libexec/"plugins").mkpath | |
end | |
def caveats | |
<<~EOS | |
Data: #{var}/elasticsearch/#{cluster_name}/ | |
Logs: #{var}/log/elasticsearch/#{cluster_name}.log | |
Plugins: #{libexec}/plugins/ | |
Config: #{etc}/elasticsearch/ | |
plugin script: #{libexec}/bin/elasticsearch-plugin | |
EOS | |
end | |
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/[email protected]/bin/elasticsearch" | |
def plist | |
<<~EOS | |
<?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> | |
<false/> | |
<key>Label</key> | |
<string>#{plist_name}</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>#{opt_bin}/elasticsearch</string> | |
</array> | |
<key>EnvironmentVariables</key> | |
<dict> | |
</dict> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>WorkingDirectory</key> | |
<string>#{var}</string> | |
<key>StandardErrorPath</key> | |
<string>#{var}/log/elasticsearch.log</string> | |
<key>StandardOutPath</key> | |
<string>#{var}/log/elasticsearch.log</string> | |
</dict> | |
</plist> | |
EOS | |
end | |
test do | |
system "#{libexec}/bin/elasticsearch-plugin", "list" | |
pid = "#{testpath}/pid" | |
begin | |
system "#{bin}/elasticsearch", "-d", "-p", pid, "-Epath.data=#{testpath}/data" | |
sleep 10 | |
system "curl", "-XGET", "localhost:9200/" | |
ensure | |
Process.kill(9, File.read(pid).to_i) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A modified version of the last Elasticsearch 5 formula before it was pulled out from Homebrew.
To install,