-
Notifications
You must be signed in to change notification settings - Fork 1
128 lines (106 loc) · 4.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Copied almost entirely from https://github.com/elastic/homebrew-tap/blob/main/Formula/elasticsearch-full.rb
# Release notes: https://www.elastic.co/guide/en/elasticsearch/reference/7.17/es-release-notes.html
class ElasticsearchFullAT717 < Formula
desc "Distributed search & analytics engine"
homepage "https://www.elastic.co/products/elasticsearch"
url "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.17.14-darwin-x86_64.tar.gz"
version "7.17.14"
sha256 "3dc253b91a3fc984e2bdaaa43f64ae3844c8dfebd0cd30ab59756a887fcbea74"
keg_only :versioned_formula
def cluster_name
"elasticsearch_#{ENV["USER"]}"
end
def install
# Install everything else into package directory
libexec.install "bin", "config", "jdk.app", "lib", "modules"
inreplace libexec/"bin/elasticsearch-env",
"if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"$ES_HOME\"/config; fi",
"if [ -z \"$ES_PATH_CONF\" ]; then ES_PATH_CONF=\"#{etc}/elasticsearch\"; fi"
# 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}/lib/elasticsearch/")
s.sub!(%r{#\s*path\.logs: /path/to.+$}, "path.logs: #{var}/log/elasticsearch/")
end
inreplace "#{libexec}/config/jvm.options", %r{logs/gc.log}, "#{var}/log/elasticsearch/gc.log"
# Move config files into etc
(etc/"elasticsearch").install Dir[libexec/"config/*"]
(libexec/"config").rmtree
Dir.foreach(libexec/"bin") do |f|
next if f == "." || f == ".." || !File.extname(f).empty?
bin.install libexec/"bin"/f
end
bin.env_script_all_files(libexec/"bin", {})
system "codesign", "-f", "-s", "-", libexec/"modules/x-pack-ml/platform/darwin-x86_64/controller.app", "--deep"
system "find", libexec/"jdk.app/Contents/Home/bin", "-type", "f", "-exec", "codesign", "-f", "-s", "-", "{}", ";"
end
def post_install
# Make sure runtime directories exist
(var/"lib/elasticsearch/#{cluster_name}").mkpath
(var/"log/elasticsearch").mkpath
ln_s etc/"elasticsearch", libexec/"config"
(var/"elasticsearch/plugins").mkpath
ln_s var/"elasticsearch/plugins", libexec/"plugins"
end
def caveats
<<~EOS
Data: #{var}/lib/elasticsearch/#{cluster_name}/
Logs: #{var}/log/elasticsearch/#{cluster_name}.log
Plugins: #{var}/elasticsearch/plugins/
Config: #{etc}/elasticsearch/
EOS
end
# https://docs.brew.sh/Formula-Cookbook#service-block-methods
service do
run opt_bin/"elasticsearch"
working_dir var
error_log_path var/"log/elasticsearch.log"
log_path var/"log/elasticsearch.log"
end
test do
require "socket"
server = TCPServer.new(0)
port = server.addr[1]
server.close
mkdir testpath/"config"
cp etc/"elasticsearch/jvm.options", testpath/"config"
cp etc/"elasticsearch/log4j2.properties", testpath/"config"
touch testpath/"config/elasticsearch.yml"
ENV["ES_PATH_CONF"] = testpath/"config"
system "#{bin}/elasticsearch-plugin", "list"
pid = testpath/"pid"
begin
system "#{bin}/elasticsearch", "-d", "-p", pid,
"-Expack.security.enabled=false", "-Epath.data=#{testpath}/data", "-Epath.logs=#{testpath}/logs",
"-Enode.name=test-cli", "-Ehttp.port=#{port}"
sleep 30
system "curl", "-XGET", "localhost:#{port}/"
output = shell_output("curl -s -XGET localhost:#{port}/_cat/nodes")
assert_match "test-cli", output
ensure
Process.kill(9, pid.read.to_i)
end
server = TCPServer.new(0)
port = server.addr[1]
server.close
rm testpath/"config/elasticsearch.yml"
(testpath/"config/elasticsearch.yml").write <<~EOS
path.data: #{testpath}/data
path.logs: #{testpath}/logs
node.name: test-es-path-conf
http.port: #{port}
EOS
pid = testpath/"pid"
begin
system "#{bin}/elasticsearch", "-d", "-p", pid, "-Expack.security.enabled=false"
sleep 30
system "curl", "-XGET", "localhost:#{port}/"
output = shell_output("curl -s -XGET localhost:#{port}/_cat/nodes")
assert_match "test-es-path-conf", output
ensure
Process.kill(9, pid.read.to_i)
end
end
end