Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 설정된
KAFKA_HEAP_OPTS: "-Xms256m -Xmx256m"와 같이 메모리가 매우 제한된 환경(t3.small 등)에서 단일 브로커를 운영할 때, 내부 토픽(__consumer_offsets,__transaction_state)의 기본 파티션 수(기본값 각각 50개)는 불필요하게 많은 파일 디스크립터와 메모리 오버헤드를 발생시킬 수 있습니다.따라서 단일 브로커 환경에서는 이 내부 토픽들의 파티션 수를 1개로 줄여 리소스를 최적화하는 것을 권장합니다.