class Kafka < Formula desc "Publish-subscribe messaging rethought as a distributed commit log" homepage "https://kafka.apache.org" url "http://mirrors.ibiblio.org/apache/kafka/0.10.0.1/kafka_2.11-0.10.0.1.tgz" mirror "https://archive.apache.org/dist/kafka/0.10.0.1/kafka_2.11-0.10.0.1.tgz" sha256 "2d73625aeddd827c9e92eefb3c727a78455725fbca4361c221eaa05ae1fab02d" bottle do cellar :any_skip_relocation rebuild 1 sha256 "16b2d2ad87154ee65f7b7e90bf2344aa495e518fc41a000642bfbb37e0bc329b" => :sierra sha256 "2874959d241121c73d914ea4d7b00055274d1bbeb4680d899e80243095c5d523" => :el_capitan sha256 "16b2d2ad87154ee65f7b7e90bf2344aa495e518fc41a000642bfbb37e0bc329b" => :yosemite sha256 "16b2d2ad87154ee65f7b7e90bf2344aa495e518fc41a000642bfbb37e0bc329b" => :mavericks end depends_on "zookeeper" depends_on :java => "1.8+" # Related to https://issues.apache.org/jira/browse/KAFKA-2034 # Since Kafka does not currently set the source or target compability version inside build.gradle # if you do not have Java 1.8 installed you cannot used the bottled version of Kafka pour_bottle? do reason "The bottle requires Java 1.8." satisfy { quiet_system("/usr/libexec/java_home --version 1.8 --failfast") } end def install ENV.java_cache data = var/"lib" inreplace "config/server.properties", "log.dirs=/tmp/kafka-logs", "log.dirs=#{data}/kafka-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.java_home_env("1.8+")) 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 plist_options :manual => "zookeeper-server-start #{HOMEBREW_PREFIX}/etc/kafka/zookeeper.properties; kafka-server-start #{HOMEBREW_PREFIX}/etc/kafka/server.properties" def plist; <<-EOS.undent Label #{plist_name} WorkingDirectory #{HOMEBREW_PREFIX} ProgramArguments #{opt_bin}/kafka-server-start #{etc}/kafka/server.properties RunAtLoad KeepAlive StandardErrorPath #{var}/log/kafka/kafka_output.log StandardOutPath #{var}/log/kafka/kafka_output.log EOS 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 begin fork do exec "#{bin}/zookeeper-server-start #{testpath}/kafka/zookeeper.properties > #{logs}/test.zookeeper-server-start.log 2>&1" end sleep 15 fork do exec "#{bin}/kafka-server-start #{testpath}/kafka/server.properties > #{logs}/test.kafka-server-start.log 2>&1" end sleep 30 system "#{bin}/kafka-topics --zookeeper localhost:2181 --create --if-not-exists --replication-factor 1 --partitions 1 --topic test > #{testpath}/kafka/demo.out 2>/dev/null" system "echo \"test message\" | #{bin}/kafka-console-producer --broker-list localhost:9092 --topic test 2>/dev/null" system "#{bin}/kafka-console-consumer --zookeeper localhost:2181 --topic test --from-beginning --max-messages 1 >> #{testpath}/kafka/demo.out 2>/dev/null" system "#{bin}/kafka-topics --zookeeper localhost:2181 --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/, IO.read("#{testpath}/kafka/demo.out") end end