You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Java arrays and probably some other things are for some reason limited to roughtly Integer.MAX_VALUE (= 2^32 / 2) bytes which is just over 2GB. Which is problematic when the query file is larger than that (which can happen in DELETE DATA or INSERT DATA queries) as IGUANA will just crash with an out of memory error.
I don't know if that is fixable
The text was updated successfully, but these errors were encountered:
Java arrays and probably some other things are for some reason limited to roughtly
Integer.MAX_VALUE
(= 2^32 / 2) bytes which is just over 2GB. Which is problematic when the query file is larger than that (which can happen inDELETE DATA
orINSERT DATA
queries) as IGUANA will just crash with an out of memory error.I don't know if that is fixable
The text was updated successfully, but these errors were encountered: