Unexpected Error while deleting triples

Hi,
I am getting this error "com.stardog.http.server.undertow.ErrorHandling:writeError(138): Unexpected error on the server
Query execution cancelled: Execution time exceeded query timeout 600000"
while deleting some triples.
my query is :
PREFIX dbo: http://dbpedia.org/ontology/
PREFIX dbp: http://dbpedia.org/resource/
PREFIX foaf: http://xmlns.com/foaf/0.1/

DELETE{
?s ?r ?o .
} WHERE{
?s ?r ?o .
FILTER(REGEX(str(?s), "^http://dbpedia.org/resource/", "i"))
FILTER(?r = owl:sameAs)
}
Although query timeout in stardog.properties is 10hr.
Please help me to resolve this error?

Thank You.

Hi, let's first make sure the server picked up the correct timeout. Run

stardog-admin server statuc | grep "Query Timeout"

and

stardog metadata get {your db name} | grep query.timeout

, do you see the 10hrs?

Best,
Pavel

Yes, it is showing 10hrs.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.