This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/main by this push:
     new 1d22499b9 Added documentation for arq:updateTimeout.
1d22499b9 is described below

commit 1d22499b9c0c966f761889bef42586163a2cb38d
Author: Claus Stadler <[email protected]>
AuthorDate: Sat Nov 23 20:30:56 2024 +0100

    Added documentation for arq:updateTimeout.
---
 source/documentation/fuseki2/fuseki-config-endpoint.md | 6 ++++++
 source/documentation/fuseki2/fuseki-configuration.md   | 5 ++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/source/documentation/fuseki2/fuseki-config-endpoint.md 
b/source/documentation/fuseki2/fuseki-config-endpoint.md
index 42996def2..faa4448cd 100644
--- a/source/documentation/fuseki2/fuseki-config-endpoint.md
+++ b/source/documentation/fuseki2/fuseki-config-endpoint.md
@@ -288,6 +288,7 @@ In this example (prefix `tdb2:` is for URI 
`<http://jena.apache.org/2016/tdb#>`)
     
     <#tdbDataset> rdf:type tdb2:DatasetTDB ;
         ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue 
"10000,30000" ] ;
+        ja:context [ ja:cxtName "arq:updateTimeout" ; ja:cxtValue 
"20000,60000" ] ;
         tdb2:location "DATA" .
  
 "/ds-tdb" is a [TDB2 database](/documentation/tdb2/) with endpoints for SPARQL
@@ -298,6 +299,11 @@ the default graph.
 Query timeout is set for any use of the dataset with first result in 10
 seconds, and complete results in 30 seconds.
 
+Update timeout is set accordingly with an overall timeout of 60 seconds and
+any involved WHERE clause must produce its first result within 20 seconds.
+All of an update request's operations must complete within the given overall
+time limit or the request will fail.
+
 ## Security
 
 The page [Data Access Control for Fuseki](./fuseki-data-access-control.html)
diff --git a/source/documentation/fuseki2/fuseki-configuration.md 
b/source/documentation/fuseki2/fuseki-configuration.md
index 03dd12eb5..bd47d6bfc 100644
--- a/source/documentation/fuseki2/fuseki-configuration.md
+++ b/source/documentation/fuseki2/fuseki-configuration.md
@@ -187,7 +187,10 @@ by searching the configuration file for the type 
`fuseki:Service`.
        # Format 2: "10000,60000" -- 10s timeout to first result, then 60s 
timeout to for rest of query.
        # See java doc for ARQ.queryTimeout
        # ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue "10000" ] ;
-
+       #
+       # ARQ.updateTimeout (since jena-5.3.0) follows the same pattern as for 
the query timeout.
+       # ja:context [ ja:cxtName "arq:updateTimeout" ;  ja:cxtValue "60000" ] ;
+       #
        # Explicitly choose which services to add to the server.
        # If absent, include all descriptions of type `fuseki:Service`.
        # fuseki:services (<#service1> <#service2>)

Reply via email to