Re: Wikidata evolution

2022-03-06 Thread LB
On 06.03.22 23:21, Andy Seaborne wrote: On 06/03/2022 09:08, LB wrote: Hi Andy, yes I also did with rewriting which indeed performed faster. Indeed the issue here was that TDB2 didn't use the stats.opt file because it was in the wrong location. I'm still not convinced that it should be

Re: Wikidata evolution

2022-03-06 Thread Andy Seaborne
Some counting with a join and a filter: SELECT (count(*) as ?cnt) WHERE {    ?s wdt:P31 wd:Q5 ;   rdfs:label ?l    filter(lang(?l)='en') } Runtime: 4817.022 seconds I compared those queries with (public) QLever triple store, the latter query takes 2s - indeed as this is on their

Re: Wikidata evolution

2022-03-06 Thread Andy Seaborne
On 06/03/2022 09:08, LB wrote: Hi Andy, yes I also did with rewriting which indeed performed faster. Indeed the issue here was that TDB2 didn't use the stats.opt file because it was in the wrong location. I'm still not convinced that it should be located in $TDB2_LOCATION/Data-XXX instead

Re: [VOTE][LAZY] Enable the "issues" and "discussions" features of the github code repository

2022-03-06 Thread Andy Seaborne
+1 On 06/03/2022 17:06, Bruno Kinoshita wrote: +1 Thanks On Mon, 7 Mar 2022, 04:19 Andy Seaborne, wrote: This is a decision by lazy consensus[*]. Closes: Wednesday 9th March 2022 at 18:00 UTC. 1/ Enable the github issues feature, and add mailing lists GH issues -> issues@jena (new

Re: [VOTE][LAZY] Enable the "issues" and "discussions" features of the github code repository

2022-03-06 Thread Bruno Kinoshita
+1 Thanks On Mon, 7 Mar 2022, 04:19 Andy Seaborne, wrote: > This is a decision by lazy consensus[*]. > > Closes: Wednesday 9th March 2022 at 18:00 UTC. > > > 1/ Enable the github issues feature, and add mailing lists > > GH issues -> issues@jena (new list) > GH pull requests -> pr@jena

[VOTE][LAZY] Enable the "issues" and "discussions" features of the github code repository

2022-03-06 Thread Andy Seaborne
This is a decision by lazy consensus[*]. Closes: Wednesday 9th March 2022 at 18:00 UTC. 1/ Enable the github issues feature, and add mailing lists GH issues -> issues@jena (new list) GH pull requests -> pr@jena (current setup) JIRA -> jira@ (new list) then change .asf.yaml github:

Re: Github issues changes

2022-03-06 Thread Andy Seaborne
Not quite so simple to separate "issues" and "discussions" ... One feature of GH is that you can transfer an issue into a discussion and create issues from discussions. We have had a few question-by-JIRA this year. That's not that helpful because it isn't a place that others will search.

[jira] [Commented] (JENA-2301) Allow to activate/deactivate shapes

2022-03-06 Thread Florian Kleedorfer (Jira)
[ https://issues.apache.org/jira/browse/JENA-2301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17501961#comment-17501961 ] Florian Kleedorfer commented on JENA-2301: -- > Are we talking about target shapes or node/property

[jira] [Comment Edited] (JENA-2301) Allow to activate/deactivate shapes

2022-03-06 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17501949#comment-17501949 ] Andy Seaborne edited comment on JENA-2301 at 3/6/22, 12:41 PM: --- Thanks for

[jira] [Commented] (JENA-2301) Allow to activate/deactivate shapes

2022-03-06 Thread Andy Seaborne (Jira)
[ https://issues.apache.org/jira/browse/JENA-2301?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17501949#comment-17501949 ] Andy Seaborne commented on JENA-2301: - Thanks for the background; the principle that a collection of

Re: Wikidata evolution

2022-03-06 Thread LB
Hi Andy, yes I also did with rewriting which indeed performed faster. Indeed the issue here was that TDB2 didn't use the stats.opt file because it was in the wrong location. I'm still not convinced that it should be located in $TDB2_LOCATION/Data-XXX instead of $TDB2_LOCATION/ - especially