Seems like something that should and could be fixed in Liquibase.
Just curious - why you are using Liquibase to load that much data?
What is the use case?
I would recommend that you use native tools if possible when
loading that much data into a database. Liquibase is really intended
for managing the structure of a database rather than the contents. It
is able to work with the data also, but it is intended mainly for
loading small sets of data - tables full of constants for example, or
small test data. Since Liquibase works at the JDBC level, what it ends
up doing is generating tons of INSERT statements, which is an
extremely inefficient way to load bulk data.
Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/
Steve Donie
Principal Software Engineer
Datical, Inc. http://www.datical.com/