diff --git a/_unit-test/create-docker-volumes-test.sh b/_unit-test/create-docker-volumes-test.sh index 6b1176c5c73..2cb9b962a8b 100755 --- a/_unit-test/create-docker-volumes-test.sh +++ b/_unit-test/create-docker-volumes-test.sh @@ -14,8 +14,7 @@ sentry-data sentry-kafka sentry-postgres sentry-redis -sentry-symbolicator -sentry-zookeeper" +sentry-symbolicator" before=$(get_volumes) diff --git a/docker-compose.yml b/docker-compose.yml index 654220d4ded..be219e31138 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -132,42 +132,27 @@ services: POSTGRES_HOST_AUTH_METHOD: "trust" volumes: - "sentry-postgres:/var/lib/postgresql/data" - zookeeper: - <<: *restart_policy - image: "confluentinc/cp-zookeeper:7.6.1" - environment: - ZOOKEEPER_CLIENT_PORT: "2181" - CONFLUENT_SUPPORT_METRICS_ENABLE: "false" - ZOOKEEPER_LOG4J_ROOT_LOGLEVEL: "WARN" - ZOOKEEPER_TOOLS_LOG4J_LOGLEVEL: "WARN" - KAFKA_OPTS: "-Dzookeeper.4lw.commands.whitelist=ruok" - ulimits: - nofile: - soft: 4096 - hard: 4096 - volumes: - - "sentry-zookeeper:/var/lib/zookeeper/data" - - "sentry-zookeeper-log:/var/lib/zookeeper/log" - - "sentry-secrets:/etc/zookeeper/secrets" - healthcheck: - <<: *healthcheck_defaults - test: ["CMD-SHELL", 'echo "ruok" | nc -w 2 localhost 2181 | grep imok'] kafka: <<: *restart_policy - depends_on: - zookeeper: - <<: *depends_on-healthy image: "confluentinc/cp-kafka:7.6.1" environment: - KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181" - KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://kafka:9092" + # https://docs.confluent.io/platform/current/installation/docker/config-reference.html#cp-kakfa-example + KAFKA_PROCESS_ROLES: "broker,controller" + KAFKA_CONTROLLER_QUORUM_VOTERS: "1001@127.0.0.1:29093" + KAFKA_CONTROLLER_LISTENER_NAMES: "CONTROLLER" + KAFKA_NODE_ID: "1001" + CLUSTER_ID: "MkU3OEVBNTcwNTJENDM2Qk" + KAFKA_LISTENERS: "PLAINTEXT://0.0.0.0:29092,INTERNAL://0.0.0.0:9093,EXTERNAL://0.0.0.0:9092,CONTROLLER://0.0.0.0:29093" + KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://127.0.0.1:29092,INTERNAL://kafka:9093,EXTERNAL://kafka:9092" + KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: "PLAINTEXT:PLAINTEXT,INTERNAL:PLAINTEXT,EXTERNAL:PLAINTEXT,CONTROLLER:PLAINTEXT" + KAFKA_INTER_BROKER_LISTENER_NAME: "PLAINTEXT" KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: "1" KAFKA_OFFSETS_TOPIC_NUM_PARTITIONS: "1" KAFKA_LOG_RETENTION_HOURS: "24" KAFKA_MESSAGE_MAX_BYTES: "50000000" #50MB or bust KAFKA_MAX_REQUEST_SIZE: "50000000" #50MB on requests apparently too CONFLUENT_SUPPORT_METRICS_ENABLE: "false" - KAFKA_LOG4J_LOGGERS: "kafka.cluster=WARN,kafka.controller=WARN,kafka.coordinator=WARN,kafka.log=WARN,kafka.server=WARN,kafka.zookeeper=WARN,state.change.logger=WARN" + KAFKA_LOG4J_LOGGERS: "kafka.cluster=WARN,kafka.controller=WARN,kafka.coordinator=WARN,kafka.log=WARN,kafka.server=WARN,state.change.logger=WARN" KAFKA_LOG4J_ROOT_LOGLEVEL: "WARN" KAFKA_TOOLS_LOG4J_LOGLEVEL: "WARN" ulimits: @@ -538,8 +523,6 @@ volumes: external: true sentry-redis: external: true - sentry-zookeeper: - external: true sentry-kafka: external: true sentry-clickhouse: @@ -555,7 +538,6 @@ volumes: sentry-secrets: sentry-smtp: sentry-nginx-cache: - sentry-zookeeper-log: sentry-kafka-log: sentry-smtp-log: sentry-clickhouse-log: diff --git a/install/create-docker-volumes.sh b/install/create-docker-volumes.sh index ca3ef0b23ed..15f20d54409 100644 --- a/install/create-docker-volumes.sh +++ b/install/create-docker-volumes.sh @@ -6,6 +6,5 @@ echo "Created $(docker volume create --name=sentry-kafka)." echo "Created $(docker volume create --name=sentry-postgres)." echo "Created $(docker volume create --name=sentry-redis)." echo "Created $(docker volume create --name=sentry-symbolicator)." -echo "Created $(docker volume create --name=sentry-zookeeper)." echo "${_endgroup}" diff --git a/install/wrap-up.sh b/install/wrap-up.sh index a811f81a618..8840262f25d 100644 --- a/install/wrap-up.sh +++ b/install/wrap-up.sh @@ -28,3 +28,8 @@ else echo "-----------------------------------------------------------------" echo "" fi + +# TODO(getsentry/self-hosted#2489) +if docker volume ls | grep -qw sentry-zookeeper; then + docker volume rm sentry-zookeeper +fi