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
The storage of object IDs and references in order to later check the referential integrity of a load operation means that a large amount of IDs and references are stored in ExecutionContext.
It was observed that during a large loading process (13 million objects), the time per chunk increased abruptly after approx. 30 minutes. During an analysis of a dump (.hprof) of the JVM it was determined that this is due to the serialization of the ExecutionContext.
The storage of object IDs and references in order to later check the referential integrity of a load operation means that a large amount of IDs and references are stored in ExecutionContext.
deegree3/deegree-tools/deegree-tools-gml/src/main/java/org/deegree/tools/featurestoresql/loader/FeatureReferencesParser.java
Lines 71 to 80 in 86bbe91
It was observed that during a large loading process (13 million objects), the time per chunk increased abruptly after approx. 30 minutes. During an analysis of a dump (.hprof) of the JVM it was determined that this is due to the serialization of the ExecutionContext.
For more background see spring documentation at https://docs.spring.io/spring-batch/docs/4.3.5/reference/html/index-single.html#executioncontext
The text was updated successfully, but these errors were encountered: