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
A StackOverflowError may occur when performing operations on a large-ish number of entities in one go. This wasn't the case during 1.2.0 and earlier. I haven't tested it against the current HEAD yet.
This is the benchmark that throws the exception - it happens when deleting/creating 4k entities during one processing round (the benchmark in question acts on 1/4 of the total number of entities, it fails when entityCount = 16384 (java 8) and entityCount = 65536 (java 7)).
The text was updated successfully, but these errors were encountered:
I've seen this at some point but I believe it was fixed... Maybe it's a different issue. I don't believe anything related to this has been fixed post 1.3.1 so I'll look into it as soon as I can.
Is this a call to removeEntity() or does it come from a removeAllEntities()? If it's the latter, it might be a duplicate of #101. Stacktraces are different but that user is using the headless backend, don't know if it could be a factor.
I have a couple of hours at my disposal now, I could have a go at it now if you wish? I noticed the stack overflow error when I came into the office this morning (was running the benchmarks overnight), so didn't have time to do anything about it then.
A StackOverflowError may occur when performing operations on a large-ish number of entities in one go. This wasn't the case during 1.2.0 and earlier. I haven't tested it against the current HEAD yet.
This is the benchmark that throws the exception - it happens when deleting/creating 4k entities during one processing round (the benchmark in question acts on 1/4 of the total number of entities, it fails when
entityCount = 16384
(java 8) andentityCount = 65536
(java 7)).The text was updated successfully, but these errors were encountered: