class Presto < Formula 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.201/presto-server-0.201.tar.gz" sha256 "671ce2e63510a8e1bdb126417a68b53db043c36497baa0fb58f20b45627979b3" bottle :unneeded depends_on :java => "1.8+" resource "presto-cli" do url "https://search.maven.org/remotecontent?filepath=com/facebook/presto/presto-cli/0.201/presto-cli-0.201-executable.jar" sha256 "831d52c63cab7c0067b9ccdae66f617f042812539830d2228e2f60c232066f6b" 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 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" (bin/"presto-server").write <<~EOS #!/bin/bash exec "#{libexec}/bin/launcher" "$@" EOS resource("presto-cli").stage do bin.install "presto-cli-#{version}-executable.jar" => "presto" end end def post_install (var/"presto/data").mkpath end def caveats; <<~EOS Add connectors to #{libexec}/etc/catalog/. See: https://prestodb.io/docs/current/connector.html EOS end plist_options :manual => "presto-server run" def plist; <<~EOS Label #{plist_name} RunAtLoad AbandonProcessGroup WorkingDirectory #{opt_libexec} ProgramArguments #{opt_bin}/presto-server run EOS end test do system bin/"presto-server", "run", "--help" assert_equal "Presto CLI #{version}", shell_output("#{bin}/presto --version").chomp end end