토픽토픽 생성kafka-topics --create --topic test-topic --bootstrap-server host.docker.internal:9092 --partitions 2 --replication-factor 3 토픽에 대한 정보 확인kafka-topics --describe --topic test-topic --bootstrap-server host.docker.internal:9093 토픽 설정토픽 파티션 개수 변경kafka-topics --alter --topic test-topic --partitions 2 --bootstrap-server host.docker.internal:9093토픽 메세지 보관 시간 설정kafka-configs --bootstrap-server..