120 lines
3.9 KiB
Ruby
120 lines
3.9 KiB
Ruby
class Prestodb < Formula
|
|
include Language::Python::Shebang
|
|
|
|
desc "Distributed SQL query engine for big data"
|
|
homepage "https://prestodb.io"
|
|
url "https://search.maven.org/remotecontent?filepath=com/facebook/presto/presto-server/0.277/presto-server-0.277.tar.gz"
|
|
sha256 "a6f24e176cea7e43828db5554b548228096c683f9c04066fa574f903533e3e25"
|
|
license "Apache-2.0"
|
|
|
|
# Upstream has said that we should check Maven for Presto version information
|
|
# and the highest version found there is newest:
|
|
# https://github.com/prestodb/presto/issues/16200
|
|
livecheck do
|
|
url "https://search.maven.org/remotecontent?filepath=com/facebook/presto/presto-server/"
|
|
regex(%r{href=["']?v?(\d+(?:\.\d+)+)/?["' >]}i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "aa1cecfa8fbd0f4b53a7f6b91011b4db4cf7f6f0456db75d99c9791b8d061dff"
|
|
end
|
|
|
|
# https://github.com/prestodb/presto/issues/17146
|
|
depends_on arch: :x86_64
|
|
depends_on "openjdk@11"
|
|
depends_on "python@3.10"
|
|
|
|
resource "presto-cli" do
|
|
url "https://search.maven.org/remotecontent?filepath=com/facebook/presto/presto-cli/0.277/presto-cli-0.277-executable.jar"
|
|
sha256 "68e2c1de3ddde8a595b1fd65b1bfa39e0c45b01e4debdbe261207100fc51620b"
|
|
end
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
|
|
(libexec/"etc/node.properties").write <<~EOS
|
|
node.environment=production
|
|
node.id=ffffffff-ffff-ffff-ffff-ffffffffffff
|
|
node.data-dir=#{var}/presto/data
|
|
EOS
|
|
|
|
(libexec/"etc/jvm.config").write <<~EOS
|
|
-server
|
|
-Xmx16G
|
|
-XX:+UseG1GC
|
|
-XX:G1HeapRegionSize=32M
|
|
-XX:+UseGCOverheadLimit
|
|
-XX:+ExplicitGCInvokesConcurrent
|
|
-XX:+HeapDumpOnOutOfMemoryError
|
|
-XX:+ExitOnOutOfMemoryError
|
|
-Djdk.attach.allowAttachSelf=true
|
|
EOS
|
|
|
|
(libexec/"etc/config.properties").write <<~EOS
|
|
coordinator=true
|
|
node-scheduler.include-coordinator=true
|
|
http-server.http.port=8080
|
|
query.max-memory=5GB
|
|
query.max-memory-per-node=1GB
|
|
discovery-server.enabled=true
|
|
discovery.uri=http://localhost:8080
|
|
EOS
|
|
|
|
(libexec/"etc/log.properties").write "com.facebook.presto=INFO"
|
|
|
|
(libexec/"etc/catalog/jmx.properties").write "connector.name=jmx"
|
|
|
|
rewrite_shebang detected_python_shebang, libexec/"bin/launcher.py"
|
|
env = Language::Java.overridable_java_home_env("11")
|
|
env["PATH"] = "$JAVA_HOME/bin:$PATH"
|
|
(bin/"presto-server").write_env_script libexec/"bin/launcher", env
|
|
|
|
resource("presto-cli").stage do
|
|
libexec.install "presto-cli-#{version}-executable.jar"
|
|
bin.write_jar_script libexec/"presto-cli-#{version}-executable.jar", "presto", java_version: "11"
|
|
end
|
|
|
|
# Remove incompatible pre-built binaries
|
|
libprocname_dirs = libexec.glob("bin/procname/*")
|
|
# Keep the Linux-x86_64 directory to make bottles identical
|
|
libprocname_dirs.reject! { |dir| dir.basename.to_s == "Linux-x86_64" }
|
|
libprocname_dirs.reject! { |dir| dir.basename.to_s == "#{OS.kernel_name}-#{Hardware::CPU.arch}" }
|
|
libprocname_dirs.map(&:rmtree)
|
|
end
|
|
|
|
def post_install
|
|
(var/"presto/data").mkpath
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
Add connectors to #{opt_libexec}/etc/catalog/. See:
|
|
https://prestodb.io/docs/current/connector.html
|
|
EOS
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"presto-server", "run"]
|
|
working_dir opt_libexec
|
|
end
|
|
|
|
test do
|
|
port = free_port
|
|
cp libexec/"etc/config.properties", testpath/"config.properties"
|
|
inreplace testpath/"config.properties", "8080", port.to_s
|
|
server = fork do
|
|
exec bin/"presto-server", "run", "--verbose",
|
|
"--data-dir", testpath,
|
|
"--config", testpath/"config.properties"
|
|
end
|
|
sleep 30
|
|
|
|
query = "SELECT state FROM system.runtime.nodes"
|
|
output = shell_output(bin/"presto --debug --server localhost:#{port} --execute '#{query}'")
|
|
assert_match "\"active\"", output
|
|
ensure
|
|
Process.kill("TERM", server)
|
|
Process.wait server
|
|
end
|
|
end
|