RE: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Pierre Grenon
che.org > Subject: Re: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > > from SPARQLWrapper import SPARQLWrapper > > > > # a lot longer > > myString = "INSERT DATA {}" > > > > def insertFromString(url, sparql): > >

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Pierre Grenon
t; def insertFromString(url, sparql): > endpoint = SPARQLWrapper(url) > endpoint.setQuery(sparql) > endpoint.method = 'POST' > endpoint.query() > > insertFromString('http://localhost:3030/myDS/update', myString) > > > From: Laura Morales [

Re: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Laura Morales
> from SPARQLWrapper import SPARQLWrapper > > # a lot longer > myString = "INSERT DATA {}" > > def insertFromString(url, sparql): > endpoint = SPARQLWrapper(url) > endpoint.setQuery(sparql) > endpoint.method = 'POST' > endpoint.query() > > insertFromString('http://localhost:3030

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Pierre Grenon
HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. From: Laura Morales [mailto:laure...@mail.com] Sent: 07 August 2019 10:29 To: users@jena.apache.org Cc: users@jena.apache.org Subject: Re: Sensible size limit for SPARQL update payload to Fuseki2? Basically,

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Pierre Grenon
.uk/market-soundings/. HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. From: Andy Seaborne [mailto:a...@apache.org] Sent: 07 August 2019 09:45 To: users@jena.apache.org Subject: Re: Sensible size limit for SPARQL update payload to Fuseki2? Pierre, RDFLib/SPA

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Laura Morales
.apache.org > Subject: Re: Sensible size limit for SPARQL update payload to Fuseki2? > > Pierre, > > RDFLib/SPARQLWrapper is using an HTML form upload. > > The scalable way is to POST with "Content-type: > application/sparql-update" and the INSERT in the body, th

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Andy Seaborne
Pierre, RDFLib/SPARQLWrapper is using an HTML form upload. The scalable way is to POST with "Content-type: application/sparql-update" and the INSERT in the body, then it will stream - directly reading the update from the HTTP input stream with no HTML Form (Request.extractFormParameters) on t

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Martynas Jusevičius
hanks, > Pierre > > For reference: > https://www.eclipse.org/jetty/documentation/current/configuring-form-size.html > > > > From: Lorenz Buehmann [mailto:buehm...@informatik.uni-leipzig.de] > Sent: 07 August 2019 08:08 > To: users@jena.apache.org > Subject: Re: Sensib

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Pierre Grenon
ann [mailto:buehm...@informatik.uni-leipzig.de] Sent: 07 August 2019 08:08 To: users@jena.apache.org Subject: Re: Sensible size limit for SPARQL update payload to Fuseki2? > > "http://www.eclipse.org/jetty/configure_9_3.dtd<http://www.eclipse.org/jetty/

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-07 Thread Lorenz Buehmann
> > "http://www.eclipse.org/jetty/configure_9_3.dtd";> > > > > org.eclipse.jetty.server.Request.maxFormContentSize > > > > [2019-08-06 17:07:48] Server ERROR SPARQLServer: Failed to configure > server: 0 > java.lang.ArrayIndexOutOfBoundsException: 0 > at > org.apa

RE: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
et.co.uk/market-soundings/. HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. From: Laura Morales [mailto:laure...@mail.com] Sent: 06 August 2019 18:29 To: users@jena.apache.org Cc: 'users@jena.apache.org' Subject: Re: RE: Sensible size limit for SPARQL

Re: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Laura Morales
s@jena.apache.org'" > Subject: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > Ok, so apologies for kinda spamming the list with this. > > 1. Laura, I agree with the options you listed below. Although: > - LOAD, in my experience, requires access to the

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
ttps://www.horizon-asset.co.uk/market-soundings/. HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. From: Laura Morales [mailto:laure...@mail.com] Sent: 06 August 2019 12:25 To: users@jena.apache.org Cc: 'users@jena.apache.org' Subject: Re: Sensible s

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
/www.horizon-asset.co.uk/market-soundings/. HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. From: Laura Morales [mailto:laure...@mail.com] Sent: 06 August 2019 08:19 To: users@jena.apache.org Cc: users@jena.apache.org Subject: Re: Sensible size limit for SPARQL

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Laura Morales
hould work. It's not a huge file after all). > Sent: Tuesday, August 06, 2019 at 12:39 PM > From: "Pierre Grenon" > To: "'users@jena.apache.org'" > Subject: RE: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > > C

RE: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
al. > Sent: Tuesday, August 06, 2019 at 9:52 AM > From: "Pierre Grenon" > To: "users@jena.apache.org" > Subject: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > Quick follow up -- > > The web fuseki interface is happy loading the turtle e

Re: RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Laura Morales
"users@jena.apache.org" > Subject: RE: Sensible size limit for SPARQL update payload to Fuseki2? > > Quick follow up -- > > The web fuseki interface is happy loading the turtle equivalent. Takes more > time (~10-15 sec) than it takes for the programmatic way to retu

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
t-soundings/. HORIZON ASSET LLP IS AUTHORISED AND REGULATED BY THE FINANCIAL CONDUCT AUTHORITY. > -Original Message- > From: Pierre Grenon > Sent: 06 August 2019 08:47 > To: 'users@jena.apache.org' > Subject: RE: Sensible size limit for SPARQL update payload t

RE: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Pierre Grenon
To: users@jena.apache.org Cc: users@jena.apache.org Subject: Re: Sensible size limit for SPARQL update payload to Fuseki2? How long is your query?? Personally I'm not aware of any such limitations, especially when POSTing, but other people here definitely know better than me if there is on

Re: Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-06 Thread Laura Morales
gt; From: "Pierre Grenon" > To: "users@jena.apache.org" > Subject: Sensible size limit for SPARQL update payload to Fuseki2? > > Hi, > > Maybe a long shot but thought I'd ask. > > I'm sending updates to a Fuseki2 from an RDFLib/SPARQLWrapper ba

Sensible size limit for SPARQL update payload to Fuseki2?

2019-08-05 Thread Pierre Grenon
Hi, Maybe a long shot but thought I'd ask. I'm sending updates to a Fuseki2 from an RDFLib/SPARQLWrapper based client. This POSTs an INSERT string to an update endpoint. I get back an error 500 for strings over a certain large size which (the limit) I haven't tried to figure out. Is there