Stream
Published 31 October 2023
Stream
Description
Whether to stream SQL migrations when executing them. Streaming doesn't load the entire migration in memory at once. Instead each statement is loaded individually.
This is particularly useful for very large SQL migrations composed of multiple MB or even GB of reference data, as this dramatically reduces Flyway's memory consumption.
Default
false
Usage
Commandline
./flyway -stream="true" info
TOML Configuration File
[flyway]
stream = true
Configuration File
flyway.stream=true
Environment Variable
FLYWAY_STREAM=true
API
Flyway.configure()
.stream(true)
.load()
Gradle
flyway {
stream = true
}
Maven
<configuration>
<stream>true</stream>
</configuration>