mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-02 03:29:03 +00:00
Make read size as 1000
This commit is contained in:
parent
4a2e0d6c19
commit
e5d761445f
@ -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;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user