forked from Homebrew/homebrew-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alluxio.rb
57 lines (45 loc) · 1.71 KB
/
alluxio.rb
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
class Alluxio < Formula
desc "Open Source Memory Speed Virtual Distributed Storage"
homepage "https://www.alluxio.io/"
url "https://downloads.alluxio.io/downloads/files/2.4.1/alluxio-2.4.1-bin.tar.gz"
sha256 "06c052761f597692a4427f08169f3277f458cf23847db4270b1f2dd75c14907a"
license "Apache-2.0"
livecheck do
url "https://downloads.alluxio.io/downloads/files/"
regex(%r{href=["']?v?(\d+(?:\.\d+)+)/?["' >]}i)
end
bottle :unneeded
# Alluxio requires Java 8 or Java 11
depends_on "openjdk@11"
def default_alluxio_conf
<<~EOS
alluxio.master.hostname=localhost
EOS
end
def install
libexec.install Dir["*"]
bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env("11")
chmod "+x", Dir["#{libexec}/bin/*"]
rm_rf Dir["#{etc}/alluxio/*"]
(etc/"alluxio").install libexec/"conf/alluxio-env.sh.template" => "alluxio-env.sh"
ln_sf "#{etc}/alluxio/alluxio-env.sh", "#{libexec}/conf/alluxio-env.sh"
defaults = etc/"alluxio/alluxio-site.properties"
defaults.write(default_alluxio_conf) unless defaults.exist?
ln_sf "#{etc}/alluxio/alluxio-site.properties", "#{libexec}/conf/alluxio-site.properties"
end
def caveats
<<~EOS
To configure alluxio, edit
#{etc}/alluxio/alluxio-env.sh
#{etc}/alluxio/alluxio-site.properties
EOS
end
test do
output = shell_output("#{bin}/alluxio validateConf")
assert_match "ValidateConf - Validating configuration.", output
output = shell_output("#{bin}/alluxio clearCache 2>&1", 1)
assert_match "drop_caches: No such file or directory", output
assert_match version.to_s, shell_output("#{bin}/alluxio version")
end
end