122 lines
4.9 KiB
Ruby
122 lines
4.9 KiB
Ruby
class Kafka < Formula
|
|
desc "Open-source distributed event streaming platform"
|
|
homepage "https://kafka.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.lua?path=kafka/3.3.1/kafka_2.13-3.3.1.tgz"
|
|
mirror "https://archive.apache.org/dist/kafka/3.3.1/kafka_2.13-3.3.1.tgz"
|
|
sha256 "18ad8a365fb111de249d3bb8bf3c96cd1af060ec8fb3e3d1fc4a7ae10d9042de"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
|
|
livecheck do
|
|
url "https://kafka.apache.org/downloads"
|
|
regex(/href=.*?kafka[._-]v?\d+(?:\.\d+)+-(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "703d6007e0d87c035bfbbe3805114dd98b9a7fa2ef5b699d8f0201122601facc"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "703d6007e0d87c035bfbbe3805114dd98b9a7fa2ef5b699d8f0201122601facc"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "703d6007e0d87c035bfbbe3805114dd98b9a7fa2ef5b699d8f0201122601facc"
|
|
sha256 cellar: :any_skip_relocation, ventura: "95ee3d9f53d3acb9943084057487f2a6a061c4c6175edc43d21487cf52f9b806"
|
|
sha256 cellar: :any_skip_relocation, monterey: "95ee3d9f53d3acb9943084057487f2a6a061c4c6175edc43d21487cf52f9b806"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "95ee3d9f53d3acb9943084057487f2a6a061c4c6175edc43d21487cf52f9b806"
|
|
sha256 cellar: :any_skip_relocation, catalina: "95ee3d9f53d3acb9943084057487f2a6a061c4c6175edc43d21487cf52f9b806"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "703d6007e0d87c035bfbbe3805114dd98b9a7fa2ef5b699d8f0201122601facc"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
depends_on "zookeeper"
|
|
|
|
def install
|
|
data = var/"lib"
|
|
inreplace "config/server.properties",
|
|
"log.dirs=/tmp/kafka-logs", "log.dirs=#{data}/kafka-logs"
|
|
|
|
inreplace "config/kraft/server.properties",
|
|
"log.dirs=/tmp/kraft-combined-logs", "log.dirs=#{data}/kraft-combined-logs"
|
|
|
|
inreplace "config/kraft/controller.properties",
|
|
"log.dirs=/tmp/kraft-controller-logs", "log.dirs=#{data}/kraft-controller-logs"
|
|
|
|
inreplace "config/kraft/broker.properties",
|
|
"log.dirs=/tmp/kraft-broker-logs", "log.dirs=#{data}/kraft-broker-logs"
|
|
|
|
inreplace "config/zookeeper.properties",
|
|
"dataDir=/tmp/zookeeper", "dataDir=#{data}/zookeeper"
|
|
|
|
# remove Windows scripts
|
|
rm_rf "bin/windows"
|
|
|
|
libexec.install "libs"
|
|
|
|
prefix.install "bin"
|
|
bin.env_script_all_files(libexec/"bin", Language::Java.overridable_java_home_env)
|
|
Dir["#{bin}/*.sh"].each { |f| mv f, f.to_s.gsub(/.sh$/, "") }
|
|
|
|
mv "config", "kafka"
|
|
etc.install "kafka"
|
|
libexec.install_symlink etc/"kafka" => "config"
|
|
|
|
# create directory for kafka stdout+stderr output logs when run by launchd
|
|
(var+"log/kafka").mkpath
|
|
end
|
|
|
|
service do
|
|
run [opt_bin/"kafka-server-start", etc/"kafka/server.properties"]
|
|
keep_alive true
|
|
working_dir HOMEBREW_PREFIX
|
|
log_path var/"log/kafka/kafka_output.log"
|
|
error_log_path var/"log/kafka/kafka_output.log"
|
|
end
|
|
|
|
test do
|
|
ENV["LOG_DIR"] = "#{testpath}/kafkalog"
|
|
|
|
(testpath/"kafka").mkpath
|
|
cp "#{etc}/kafka/zookeeper.properties", testpath/"kafka"
|
|
cp "#{etc}/kafka/server.properties", testpath/"kafka"
|
|
inreplace "#{testpath}/kafka/zookeeper.properties", "#{var}/lib", testpath
|
|
inreplace "#{testpath}/kafka/server.properties", "#{var}/lib", testpath
|
|
|
|
zk_port = free_port
|
|
kafka_port = free_port
|
|
inreplace "#{testpath}/kafka/zookeeper.properties", "clientPort=2181", "clientPort=#{zk_port}"
|
|
inreplace "#{testpath}/kafka/server.properties" do |s|
|
|
s.gsub! "zookeeper.connect=localhost:2181", "zookeeper.connect=localhost:#{zk_port}"
|
|
s.gsub! "#listeners=PLAINTEXT://:9092", "listeners=PLAINTEXT://:#{kafka_port}"
|
|
end
|
|
|
|
begin
|
|
fork do
|
|
exec "#{bin}/zookeeper-server-start #{testpath}/kafka/zookeeper.properties " \
|
|
"> #{testpath}/test.zookeeper-server-start.log 2>&1"
|
|
end
|
|
|
|
sleep 15
|
|
|
|
fork do
|
|
exec "#{bin}/kafka-server-start #{testpath}/kafka/server.properties " \
|
|
"> #{testpath}/test.kafka-server-start.log 2>&1"
|
|
end
|
|
|
|
sleep 30
|
|
|
|
system "#{bin}/kafka-topics --bootstrap-server localhost:#{kafka_port} --create --if-not-exists " \
|
|
"--replication-factor 1 --partitions 1 --topic test > #{testpath}/kafka/demo.out " \
|
|
"2>/dev/null"
|
|
pipe_output "#{bin}/kafka-console-producer --bootstrap-server localhost:#{kafka_port} --topic test 2>/dev/null",
|
|
"test message"
|
|
system "#{bin}/kafka-console-consumer --bootstrap-server localhost:#{kafka_port} --topic test " \
|
|
"--from-beginning --max-messages 1 >> #{testpath}/kafka/demo.out 2>/dev/null"
|
|
system "#{bin}/kafka-topics --bootstrap-server localhost:#{kafka_port} --delete --topic test " \
|
|
">> #{testpath}/kafka/demo.out 2>/dev/null"
|
|
ensure
|
|
system "#{bin}/kafka-server-stop"
|
|
system "#{bin}/zookeeper-server-stop"
|
|
sleep 10
|
|
end
|
|
|
|
assert_match(/test message/, File.read("#{testpath}/kafka/demo.out"))
|
|
end
|
|
end
|