agent insert 배치 1만건으로 수정

This commit is contained in:
hylee 2024-09-04 11:45:27 +09:00
parent 1e378fb325
commit 360ec8eb47

View File

@ -14,7 +14,7 @@ public abstract class AbstractAgentService<T, M> implements AgentService<T> {
@Autowired
protected M mapper; // 매퍼를 protected로 선언하여 서브 클래스에서 접근 가능
private static final int BATCH_SIZE = 10000;
private static final int BATCH_SIZE = 100000;
@Override
public RestResponse send(T agentVO) {