HI there is a query which was working untill yesterday :

PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX foaf: <http://xmlns.com/foaf/0.1/>
    SELECT DISTINCT(?film_link) ?film_abstract ?film_name ?wikipage
    WHERE {
    ?film_link rdf:type <http://dbpedia.org/ontology/Film> .
    ?film_link rdfs:comment ?film_abstract 
    FILTER (langMatches( lang(?film_abstract), "EN")) .
    ?film_link  foaf:name ?film_name .
    ?film_title foaf:page ?wikipage .

    }

but today it is showing: Virtuoso 42000 Error The estimated execution time 99232592 (sec) exceeds the limit of 1500 (sec). I have seen this error earlier also but when i ran such query again after some time it runs.. Could anyone explain the meaning of the error?

link|improve this question

40% accept rate
why don't you accept any answers to your questions? This behaviour discourages people to help you... – glglgl Dec 21 '11 at 8:55
feedback

1 Answer

It means that Virtuoso's query planner (Virtuoso is the triplestore that DBPedia runs on) has estimated how long it would take to evaluate your query and it thinks it will take too long so it has refused to run the query.

I suspect the problem is the last triple pattern in your query:

?film_title foaf:page ?wikipage

You never use either of those variables before that point so what you've asked Virtuoso to do is cross product every possible triple with foaf:page in the predicate position with the results in the rest of your query.

If you change this to the following it should work fine:

?film_link foaf:page ?wikipage

I suspect this is what you meant to write anyway and this works for though it is still pretty slow because your query is pretty broad and FILTER clauses are often quite sluggish to evaluate.

link|improve this answer
To solve this problem I used I splitted the above query into two queries first one page name and link and other one with abstract. PREFIX rdfs: <w3.org/2000/01/rdf-schema#>; SELECT DISTINCT(?film_link) ?film_abstract WHERE { ?film_link rdf:type <dbpedia.org/ontology/Film>; . ?film_link rdfs:comment ?film_abstract FILTER (langMatches( lang(?film_abstract), "EN")) } Still the same problem is occuring . It get resolved when I remove Filter. Thsi filter is important as I need only english could some one help me in this regard? – user1036348 Jan 22 at 15:34
Is there any alternative to "filter" ? – user1036348 Jan 22 at 15:37
No FILTER is the only way to filter on languages. If DBPedia is refusing your queries you may be want to investigate creating a local copy of DBPedia from their database dumps – RobV Jan 22 at 19:38
RobV a very wierd phenomena is happening. this filter was working couple of days back but dbpedia is refusing it.any idea why such behavior ? – user1036348 Jan 22 at 20:14
It will depend on a number of factors, the exact query it is used with, current load on DBPedia etc. DBPedia uses various throttling mechanisms so if it stressed or if you personally have been issuing a lot of queries you may not be allowed to run as complex a query. Consider asking on the DBPedia list dbpedia-discussion@lists.sf.net for more information – RobV Jan 23 at 0:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.