Spring Batch commit-interval에 대한 정리
·
개발/Spring
Spring Batch Job 설정 시 commit-interval 이라는 값을 지정할 수 있다. 이 값이 의미하는 바는 commit되는 단위 갯수인데 정확히 어떤 의미인지 정리해본다.스프링 배치 문서에는 다음과 같이 되어있다. The number of items that will be processed before commit is called for the transaction. Either set this or the chunk-completion-policy but not both. Can be specified as an expressionthat will be evaluated in the scope of the step (e.g. "#{jobParameters['commit.interval..