Skip to content

Commit

Permalink
refactor: CHUNK_SIZE 10000 으로 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
damho committed Mar 24, 2024
1 parent 654c763 commit 1c964a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class BirthDayCouponBatchConfig {
public final SqlSessionFactory sqlSessionFactory;
private final JobLauncher jobLauncher;
private final CouponMapper couponMapper;
private static final int CHUNK_SIZE = 10;
private static final int CHUNK_SIZE = 10000;

/**
* methodName : runJob <br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class UserGradeChangeBatchConfig {
*/
public final SqlSessionFactory sqlSessionFactory;
private final JobLauncher jobLauncher;
private static final int CHUNK_SIZE = 10;
private static final int CHUNK_SIZE = 10000;

/**
* methodName : runJob <br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class UserStatusChangeBatchConfig {
private final StepBuilderFactory stepBuilderFactory;
public final SqlSessionFactory sqlSessionFactory;
private final JobLauncher jobLauncher;
private static final int CHUNK_SIZE = 10;
private static final int CHUNK_SIZE = 10000;

/**
* methodName : runJob <br>
Expand Down

0 comments on commit 1c964a0

Please sign in to comment.