User Tools

Site Tools


wiki:sentry_troubleshooting

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

wiki:sentry_troubleshooting [2024/08/26 09:21] – created antisawiki:sentry_troubleshooting [2024/09/25 13:25] (current) – add Kafka info antisa
Line 13: Line 13:
  
   postgres=# TRUNCATE nodestore_node ;   postgres=# TRUNCATE nodestore_node ;
 +  
 +===== Kafka too big =====
 +Try adapting the KAFKA_* env variables to this: 
 +
 +  KAFKA_LOG_RETENTION_BYTES: 53687091200
 +  KAFKA_LOG_SEGMENT_BYTES: 1073741824
 +  KAFKA_LOG_RETENTION_CHECK_INTERVAL_MS: 300000
 +  KAFKA_LOG_SEGMENT_DELETE_DELAY_MS: 60000
 +
 +Example from docker-compose file:
 +
 +<code>
 +...
 +  kafka:
 +    <<: *restart_policy
 +    depends_on:
 +      zookeeper:
 +        <<: *depends_on-healthy
 +    image: "confluentinc/cp-kafka:5.5.7"
 +    environment:
 +      KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
 +      KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://kafka:9092"
 +      KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: "1"
 +      KAFKA_OFFSETS_TOPIC_NUM_PARTITIONS: "1"
 +      KAFKA_LOG_RETENTION_HOURS: "24"
 +      KAFKA_LOG_RETENTION_BYTES: 53687091200
 +      KAFKA_LOG_SEGMENT_BYTES: 1073741824
 +      KAFKA_LOG_RETENTION_CHECK_INTERVAL_MS: 300000
 +      KAFKA_LOG_SEGMENT_DELETE_DELAY_MS: 60000
 +      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_ROOT_LOGLEVEL: "WARN"
 +      KAFKA_TOOLS_LOG4J_LOGLEVEL: "WARN"
 +    ulimits:
 +      nofile:
 +        soft: 4096
 +        hard: 4096
 +    volumes:
 +      - "sentry-kafka:/var/lib/kafka/data"
 +      - "sentry-kafka-log:/var/lib/kafka/log"
 +      - "sentry-secrets:/etc/kafka/secrets"
 +    healthcheck:
 +      <<: *healthcheck_defaults
 +      test: ["CMD-SHELL", "nc -z localhost 9092"]
 +      interval: 10s
 +      timeout: 10s
 +      retries: 30
 +...
 +</code> 
 ====== Tested on ====== ====== Tested on ======
   * sentry_version: 23.8.0 (docker)   * sentry_version: 23.8.0 (docker)
Line 21: Line 72:
   * [[wiki:sentry_install|Sentry install]]   * [[wiki:sentry_install|Sentry install]]
 ====== References ====== ====== References ======
 +  * https://forum.sentry.io/t/restrict-kafka-disk-usage/9838/
 +  * https://kafka.apache.org/documentation/#topicconfigs
  
wiki/sentry_troubleshooting.1724664083.txt.gz · Last modified: 2024/08/26 09:21 by antisa

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki