为什么dbpedia结果不一致
Why dbpedia result is not consistant
我正在执行以下 SPARQL 查询
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?resource WHERE {
?resource a <http://dbpedia.org/ontology/Place> .
{?resource rdfs:label 'Paris'@en.} UNION { ?resource rdfs:label 'France'@en.}
}
我正在执行这个 here。
有时我得到所需的结果,有时它 returns 502 错误(我收到网站正在维护中的消息......)
你能告诉我为什么结果不一致吗?我该如何避免这种情况?
当我通过 java 代码执行时,行为也不一致:
Query query = QueryFactory.create(sb.toString());
QueryExecution qexec =
QueryExecutionFactory.sparqlService("http://dbpedia.org/sparql", query);
实验性 DBpedia SPARQL endpoint is made available as a public service,但因此它没有 Quality-of-Service (QoS) 保证。
您可以通过 spinning up the pre-populated and dynamically updated AMI. You can also set up a local mirror, by manually loading the DBpedia datasets into your own Virtuoso 或其他三重或四重存储实例在亚马逊 AWS 云中设置您自己的 DBpedia 镜像。
(ObDisclaimer:OpenLink Software produces Virtuoso and the DBpedia AMI, provides and maintains the public DBpdia endpoint,并雇用了我。)
我正在执行以下 SPARQL 查询
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?resource WHERE {
?resource a <http://dbpedia.org/ontology/Place> .
{?resource rdfs:label 'Paris'@en.} UNION { ?resource rdfs:label 'France'@en.}
}
我正在执行这个 here。 有时我得到所需的结果,有时它 returns 502 错误(我收到网站正在维护中的消息......) 你能告诉我为什么结果不一致吗?我该如何避免这种情况?
当我通过 java 代码执行时,行为也不一致:
Query query = QueryFactory.create(sb.toString());
QueryExecution qexec =
QueryExecutionFactory.sparqlService("http://dbpedia.org/sparql", query);
实验性 DBpedia SPARQL endpoint is made available as a public service,但因此它没有 Quality-of-Service (QoS) 保证。
您可以通过 spinning up the pre-populated and dynamically updated AMI. You can also set up a local mirror, by manually loading the DBpedia datasets into your own Virtuoso 或其他三重或四重存储实例在亚马逊 AWS 云中设置您自己的 DBpedia 镜像。
(ObDisclaimer:OpenLink Software produces Virtuoso and the DBpedia AMI, provides and maintains the public DBpdia endpoint,并雇用了我。)