Make read size as 1000

This commit is contained in:
mohitdeuex 2023-07-03 16:38:17 +05:30
parent 4a2e0d6c19
commit e5d761445f

View File

@ -126,7 +126,7 @@ public class MigrationUtil {
public static <T extends EntityInterface> void readAndProcessEntity(
Handle handle, String updateSql, Class<T> clazz, EntityDAO<T> dao, boolean withName) throws IOException {
LOG.debug("Starting Migration for table : {}", dao.getTableName());
int limitParam = 100;
int limitParam = 1000;
ListFilter filter = new ListFilter(Include.ALL);
List<T> entities;
String after = null;