Closed
Description
- ParquetLoader will fail on OutOfMemoryException when trying to create an enumeration sequence array that is too big.
- If the {numbers of rows in a block} or {number of blocks} is greater than int.MaxValue, Overflow exception will be thrown. Ideally, we would use longs to keep track instead, but this is restricted due to point 1.
These exceptions should be caught with suggestions to alter block size as a fix.