Re: How to set a timeout for QueryExecution correctly?

2021-07-29 Thread Cristóbal Miranda
Hi Andy, I have three queries in which this happens: 1. SELECT ?var1 ?var2 ?var3 ?var4 > WHERE { > ?var1 ?var2 . > FILTER ( ( ( ?var2 > "2016-07-30T00:00:00Z"^^< > http://www.w3.org/2001/XMLSchema#dateTime> ) ) > ) . > FILTER ( ( ( ?var2

Re: In-memory Fuseki keeps growing memory indefinitely even if idle

2021-07-29 Thread Andy Seaborne
On 29/07/2021 10:46, Marco Fiocco wrote: I'm building a docker image with openjdk:14-alpine and cannot enable ShenandoahGC, even with the experimental feature flag. It seems that OpenJDK must be compiled with some feature in order to support that. > However I've tuned the Java config with "-

Re: In-memory Fuseki keeps growing memory indefinitely even if idle

2021-07-29 Thread Martynas Jusevičius
The new container-related JDK features might be relevant here. https://developer.oracle.com/java/technologies/javase/8u191-relnotes.html We use this in docker-compose: -XX:+UseContainerSupport -XX:MaxRAMPercentage=75 On Thu, 29 Jul 2021 at 11.46, Marco Fiocco wrote: > I'm building a docker ima

Re: In-memory Fuseki keeps growing memory indefinitely even if idle

2021-07-29 Thread Marco Fiocco
I'm building a docker image with openjdk:14-alpine and cannot enable ShenandoahGC, even with the experimental feature flag. It seems that OpenJDK must be compiled with some feature in order to support that. However I've tuned the Java config with "-Xmx512m -Xms512m" and max reserved memory in my d

Re: How to set a timeout for QueryExecution correctly?

2021-07-29 Thread Andy Seaborne
Hi Cristóbal, What's the query and which version of jena is this? Andy On 28/07/2021 19:39, Cristóbal Miranda wrote: Hello everyone, I'm trying to run a sequence of queries with TDB, using a locally loaded dataset. I don't want to wait more than a few seconds for each query to finish. My