카프카 운영2 Kafka retention 옵션 - log 보관 주기 설정 Kafka log(Message Data)의 보관은 크게 시간단위, 용량단위로 지정할 수 있다. 만약 아무런 옵션을 수정하지 않고 Kafka를 실행하였다면 기본적으로 7일로 지정된 상태이다. - 저장한지 7일이 지난 로그는 삭제된다. log 보관주기에 대한 설정은 $KAFKA_HOME/config/server.properties에 있으며 아래와 같은 기본값을 가진다. ############################# Log Retention Policy ############################# # The following configurations control the disposal of log segments. The policy can # be set to delete segment.. 2020. 12. 2. Kafka 외부 접속 허용하기 $ vi conf/server.properties conf/server.properties가 Kafka의 설정을 담당하는 파일이다. # Hostname and port the broker will advertise to producers and consumers. If not set, # it uses the value for "listeners" if configured. Otherwise, it will use the value # returned from java.net.InetAddress.getCanonicalHostName(). #advertised.listeners=PLAINTEXT://your.host.name:9092 여기에서 마지막 줄의 주석을 풀고 advertised.listeners.. 2019. 10. 7. 이전 1 다음