Makefile 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .PHONY: confluent/kafka/* confluent/zookeeper/* confluent/registry/* confluent/start confluent/stop fmt vet errcheck test test/create_kafka_topics dependencies dependencies/*
  2. default: fmt vet errcheck test
  3. # Confluent platform tasks
  4. confluent/start: confluent/rest/start
  5. confluent/stop: confluent/rest/stop confluent/registry/stop confluent/kafka/stop confluent/zookeeper/stop
  6. # Download & extract tasks
  7. confluent/confluent.tgz:
  8. mkdir -p confluent && wget http://packages.confluent.io/archive/1.0/confluent-1.0-2.10.4.tar.gz -O confluent/confluent.tgz
  9. confluent/EXTRACTED: confluent/confluent.tgz
  10. tar xzf confluent/confluent.tgz -C confluent --strip-components 1 && mkdir confluent/logs && touch confluent/EXTRACTED
  11. # Zookeeper tasks
  12. confluent/zookeeper/start: confluent/EXTRACTED
  13. nohup confluent/bin/zookeeper-server-start confluent/etc/kafka/zookeeper.properties 2> confluent/logs/zookeeper.err > confluent/logs/zookeeper.out < /dev/null &
  14. while ! nc localhost 2181 </dev/null; do echo "Waiting for zookeeper..."; sleep 1; done
  15. confluent/zookeeper/stop: confluent/EXTRACTED
  16. confluent/bin/zookeeper-server-stop
  17. # Kafka tasks
  18. confluent/kafka/start: confluent/zookeeper/start confluent/EXTRACTED
  19. nohup confluent/bin/kafka-server-start confluent/etc/kafka/server.properties 2> confluent/logs/kafka.err > confluent/logs/kafka.out < /dev/null &
  20. while ! nc localhost 9092 </dev/null; do echo "Waiting for Kafka..."; sleep 1; done
  21. confluent/kafka/stop: confluent/EXTRACTED
  22. confluent/bin/kafka-server-stop
  23. # schema-registry tasks
  24. confluent/registry/start: confluent/kafka/start confluent/EXTRACTED
  25. nohup confluent/bin/schema-registry-start confluent/etc/schema-registry/schema-registry.properties 2> confluent/logs/schema-registry.err > confluent/logs/schema-registry.out < /dev/null &
  26. while ! nc localhost 8081 </dev/null; do echo "Waiting for schema registry..."; sleep 1; done
  27. confluent/registry/stop: confluent/EXTRACTED
  28. confluent/bin/kafka-server-stop
  29. # REST proxy tasks
  30. confluent/rest/start: confluent/registry/start confluent/EXTRACTED
  31. nohup confluent/bin/kafka-rest-start confluent/etc/kafka-rest/kafka-rest.properties 2> confluent/logs/kafka-rest.err > confluent/logs/kafka-rest.out < /dev/null &
  32. while ! nc localhost 8082 </dev/null; do echo "Waiting for REST proxy..."; sleep 1; done
  33. confluent/rest/stop: confluent/EXTRACTED
  34. confluent/bin/kafka-rest-stop
  35. # CI tasks
  36. test:
  37. go test -v -race ./...
  38. vet:
  39. go vet ./...
  40. errcheck:
  41. errcheck ./...
  42. fmt:
  43. @if [ -n "$$(go fmt ./...)" ]; then echo 'Please run go fmt on your code.' && exit 1; fi
  44. dependencies: dependencies/errcheck dependencies/get
  45. dependencies/errcheck:
  46. go get github.com/kisielk/errcheck
  47. dependencies/get:
  48. go get -t ./...
  49. test/create_kafka_topics: confluent/kafka/start
  50. confluent/bin/kafka-topics --create --partitions 1 --replication-factor 1 --topic test.1 --zookeeper localhost:2181
  51. confluent/bin/kafka-topics --create --partitions 4 --replication-factor 1 --topic test.4 --zookeeper localhost:2181 --config retention.ms=604800000
  52. confluent/bin/kafka-topics --create --partitions 64 --replication-factor 1 --topic test.64 --zookeeper localhost:2181