我通过Python使用SPARQL查询DBpedia。我面临着执行时间上限的问题。这是错误:
代码:
sparql = SPARQLWrapper("http://dbpedia.org/sparql")
newquery = "DEFINE input:inference "skos-trans" PREFIX dcterms: <http://purl.org/dc/terms/>
select distinct ?cat1 ?cat2 ?cat3 ?cat4 where {
<http://dbpedia.org/resource/Pulp_Fiction> dcterms:subject ?cat1 .
?cat1 skos:broaderTransitive ?cat2.
?cat2 skos:broaderTransitive ?cat3.
?cat3 skos:broaderTransitive ?cat4.
} "
sparql.setQuery( newquery)
sparql.setReturnFormat(JSON)
results = sparql.query().convert()
响应:
Virtuoso 42000 Error The estimated execution time 5286 (sec) exceeds the limit of 3000 (sec)
如何解决这个问题?
答案 0 :(得分:1)
您无法使用公共DBPedia端点,因为端点众所周知,它也被大量使用,因此他们必须限制允许人们运行的查询的复杂程度。
如果您需要运行遇到此类问题的查询,请考虑使用其中一个可用的database dumps并在Virtuoso的本地副本或您选择的三重商店中运行它们。