Skip to content

Commit 38fd346

Browse files
committed
Update 2025 DevHistory and Posts
1 parent 87f3491 commit 38fd346

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

_config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ categories_order:
7272
- "JPA"
7373
- "MySQL"
7474
- "Flyway"
75+
- "Kafka"
7576
- "Technology"
7677
- "GoodCode"
7778
- "Side_Project"
@@ -96,4 +97,4 @@ categories_order:
9697
- "Competition"
9798
- "Book"
9899
- "Workout"
99-
- "E.T.C"
100+
- "E.T.C"

_posts/2025-01-01-2025-DevHistory.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,5 @@ author: devFancy
5050
* [3편. Prometheus와 Grafana로 Spring Boot 기반 모니터링 대시보드 구축하기](https://devfancy.github.io/SpringBoot-Monitoring-Prometheus-Grafana/)
5151

5252
* [MDC와 GlobalTraceId를 활용한 분산 추적](https://devfancy.github.io/SpringBoot-Distributed-Tracing-With-MDC/)
53+
54+
* [[카프카 핵심 가이드] CHAPTER 3. 카프카 프로듀서: 카프카에 메시지 쓰기](https://devfancy.github.io/Kafka-Producer/)

_posts/2025-07-24-Kafka-Producer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public class CouponIssueScheduler {
263263

264264
* `acks=1`: 리더 파티션에 메시지가 저장되면 '성공' 응답을 받는다. 리더에 장애가 발생하고 아직 복제가 완료되지 않았다면 **메시지가 유실될 수 있다.**
265265

266-
* `acks=all` (또는 `-1`): **가장 안전한 옵션.** 리더 파티션뿐만 아니라, 모든 팔로워(ISR, In-Sync Replica) 파티션에 메시지가 복제되었을 때 '성공' 응답을 받는다. 브로커 하나에 장애가 생겨도 메시지 유실이 발생하지 않는다. 최신 카프카 버전의 기본값이기도 하다.
266+
* `acks=all` (또는 `-1`): **가장 안전한 옵션.** 리더 파티션뿐만 아니라, 모든 팔로워(ISR, In-Sync Replica) 파티션에 메시지가 복제되었을 때 '성공' 응답을 받는다. 브로커 하나에 장애가 생겨도 메시지 유실이 발생하지 않는다. (최신) 카프카 버전 3.0.0부터 프로듀서의 `acks` 기본값이 `1` 에서 `all` 로 변경되었다.
267267

268268

269269
#### enable.idempotence (멱등성 프로듀서)

0 commit comments

Comments
 (0)