Open mattdornfeld opened 4 years ago
Was your configured mapSize
greater than Int.MaxValue - 2
at any time? Int.MaxValue
is too large. You will see the same error with new Array[Byte](Int.MaxValue)
.
We will have much better performance handling large files in the next release.
We have to limit file sizes for now. Caching and other processes make uses of byte arrays (Array[Byte]
) which are limited to 2.14.GB on the JVM so file size limits are required.
I'm setting this limit to 1.GB for now. If required we can push this to 2.14.GB in future releases.
I'm doing the following:
When I attempt step 2 with the following command
I get the below error. Any idea on the cause?