250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Regular expression
- Effective Java 3/e
- expire_logs_days
- npm
- MySQL
- Spring Batch
- REACT
- try catch
- nodejs
- log4j2
- 퀵소트
- eslint
- upgrade
- Express
- update
- spring cloud
- Chunk
- JavaScript
- Node
- 정규표현식
- migration
- Effective Java
- log_bin
- regex
- java
- REACTJS
- current_date
- git
- spring
- mysql 5.5
Archives
- Today
- Total
내 세상
[Spring Batch] Tasklet, Chunk 본문
728x90
반응형
배치 처리 방법 2가지
1. Tasklet을 사용한 Task 기반 처리
- 배치 처리 과정이 비교적 쉬운 경우 쉽게 사용
- 대량 처리를 하는 경우 더 복잡
- 하나의 큰 덩어리를 여러 덩어리로 나누어 처리하기 부적합
2. Chunk를 사용한 chunk(덩어리) 기반 처리
- ItemReader, ItemProcessor, ItemWriter의 관계 이해 필요
- 대량 처리를 하는 경우 Tasklet보다 비교적 쉽게 구현
- 예를 들면 10,000개의 데이터 중 1,000개씩 10개의 덩어리로 수행
- 이를 Tasklet으로 처리하면 10,000개를 한번에 처리하거나, 수동으로 1,000개씩 분할
Github link
728x90
반응형
'Technical > Spring Cloud' 카테고리의 다른 글
[Spring Batch] Spring batch (0) | 2022.12.21 |
---|---|
[Spring Cloud] 장애 허용 시스템 구축, Circuit breaker, Spring Cloud Config, Spring Boot Admin (0) | 2022.12.20 |
[Spring Cloud] API 통합 단일 진입점 제공 (0) | 2022.12.19 |
[Spring Cloud] 12Factor, Architecture (0) | 2022.12.19 |
[Spring Cloud] DNS 매핑 및 읽기 요청 부하 분산 등 (0) | 2022.12.19 |