Re: Information about Apache Jena and Log4j2 vulnerability.

2021-12-10 Thread Brandon Sara
Andy, will you be releasing an RDF-Delta update that uses 4.3.1 soon as well? No PHI in Email: PointClickCare and Collective Medical, A PointClickCare Company, policies prohibit sending protected health information (PHI) by email, which may violate regulatory requirements. If sending PHI is

Re: Re: Query - Update

2021-12-10 Thread Lorenz Buehmann
minor fix, the regex for ?county should be "east sussex" for the first two options, and for the property path solution it should be regex("east sussex|lewes", ?X, "i") On 10.12.21 12:44, Andy Seaborne wrote: Matt - thanks for the update Other ways to speed the query up are: * Use regex - I

[3.16.0] Repeating identical queries from SERVICE

2021-12-10 Thread Martynas Jusevičius
Hi, I have query that federates between 2 Fuseki instances (the "remote" one is fuseki-end-user): PREFIX rdfs: PREFIX acl: PREFIX lacl: PREFIX foaf:

Re: [3.16.0] Repeating identical queries from SERVICE

2021-12-10 Thread Martynas Jusevičius
Moving SERVICE down in the joins seems to have helped quite a bit: PREFIX rdfs: PREFIX acl: PREFIX lacl: PREFIX foaf: PREFIX

Information about Apache Jena and Log4j2 vulnerability.

2021-12-10 Thread Andy Seaborne
This message is about the effect of CVE-2021-44228 (log4j2) on Fuseki. https://nvd.nist.gov/vuln/detail/CVE-2021-44228 Jena ships log4j2 in Fuseki and the command line tools. The vulnerability of log4j2 does impact Fuseki 3.15 - 3.17, and 4.x. Remote execution is only possible with older

Re: Access control for federated queries

2021-12-10 Thread Andy Seaborne
On 10/12/2021 13:53, Mikael Pesonen wrote: Hi, is there a recommended way to handle access control for servers which are serving federated queries? So is it possible to configure which servers may access which graphs or datasets, for example? Yes. Allocate a "user id" to the servers,

Re: Query - Update

2021-12-10 Thread Andy Seaborne
Matt - thanks for the update Other ways to speed the query up are: * Use regex - I know you don't liek regex but the regex is compiled only once FILTER ( regex("lewes", ?county, "i") || regex("lewes", ?district, "i") || regex("lewes", ?parish, "i") ) * Use UNION: This

Access control for federated queries

2021-12-10 Thread Mikael Pesonen
Hi, is there a recommended way to handle access control for servers which are serving federated queries? So is it possible to configure which servers may access which graphs or datasets, for example?