- Notifications
You must be signed in to change notification settings - Fork38
Open
Description
Right now, if the batch is too big, we're getting into limits of DBMS like the following:
The screenshot is from PostgreSQL.
I suggest doing two things:
- Introduce configurable parameter to configure max number of parameters.
- Default it per DBMS. For PostgreSQL it could be 65535.
- If max is reached, move the rest of the data to the next
INSERT
statement.