47 lines
1.7 KiB
Ruby
47 lines
1.7 KiB
Ruby
class ApacheFlink < Formula
|
|
desc "Scalable batch and stream data processing"
|
|
homepage "https://flink.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.lua?path=flink/flink-1.16.0/flink-1.16.0-bin-scala_2.12.tgz"
|
|
mirror "https://archive.apache.org/dist/flink/flink-1.16.0/flink-1.16.0-bin-scala_2.12.tgz"
|
|
version "1.16.0"
|
|
sha256 "63ba08dd23d2979dab2cd3c192a69f548040b5411479a7ef430517c8e4a8009b"
|
|
license "Apache-2.0"
|
|
head "https://github.com/apache/flink.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "a4474d0a5fe9a63aebca0ba903860b433edc05ddf38b1d81ab3bd88fa22e8f96"
|
|
end
|
|
|
|
depends_on "openjdk@11"
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
libexec.install Dir["*"]
|
|
(libexec/"bin").env_script_all_files(libexec/"libexec", Language::Java.java_home_env("11"))
|
|
(libexec/"bin").install Dir["#{libexec}/libexec/*.jar"]
|
|
chmod 0755, Dir["#{libexec}/bin/*"]
|
|
bin.write_exec_script "#{libexec}/bin/flink"
|
|
end
|
|
|
|
test do
|
|
(testpath/"log").mkpath
|
|
(testpath/"input").write "foo bar foobar"
|
|
expected = <<~EOS
|
|
(foo,1)
|
|
(bar,1)
|
|
(foobar,1)
|
|
EOS
|
|
ENV.prepend "_JAVA_OPTIONS", "-Djava.io.tmpdir=#{testpath}"
|
|
ENV.prepend "FLINK_LOG_DIR", testpath/"log"
|
|
system libexec/"bin/start-cluster.sh"
|
|
system bin/"flink", "run", "-p", "1",
|
|
libexec/"examples/streaming/WordCount.jar", "--input", testpath/"input",
|
|
"--output", testpath/"result"
|
|
system libexec/"bin/stop-cluster.sh"
|
|
assert_predicate testpath/"result", :exist?
|
|
result_files = Dir[testpath/"result/*/*"]
|
|
assert_equal 1, result_files.length
|
|
assert_equal expected, (testpath/result_files.first).read
|
|
end
|
|
end
|