Difference between revisions of "Queries to be implemented in the future"

From phenoscape
(Query)
(Query)
Line 24: Line 24:
 
subset_pred_node.uid = 'oboInOwl:inSubset' AND
 
subset_pred_node.uid = 'oboInOwl:inSubset' AND
 
is_a_pred_node.uid = 'OBO_REL:is_a' AND
 
is_a_pred_node.uid = 'OBO_REL:is_a' AND
 +
is_a_pred_node.is_inferred = 'f' AND
 
inheres_pred_node.uid = 'OBO_REL:inheres_in' AND
 
inheres_pred_node.uid = 'OBO_REL:inheres_in' AND
 
anatomy_node.uid = 'TAO:0000108' AND
 
anatomy_node.uid = 'TAO:0000108' AND

Revision as of 21:57, 6 February 2009

Query details

These are some queries being tested out to improve the database performance following the SICB meeting in Boston in Jan 2009. The execution methodology of these queries is to retrieve the information of interest, in this case, all the taxon and quality details associated with an anatomical being searched for, in one run

The result of this query is the same as for the previous two queries except the wildcard search is replaced by exact match requirements on the search parameters viz. relation and concept names (IDs, to be specific). This enables leverage of the indexes set up for the Link and Node tables in the OBD database

Query

<javascript> SELECT DISTINCT taxon_node.uid AS taxon, phenotype_node.uid AS phenotype, anatomy_node.uid AS anatomy, quality_node.uid AS quality, slim_node.uid AS slim FROM link AS inheres_link, link AS is_a_link, link AS subset_link, link AS exhibits_link, node AS phenotype_node, node AS anatomy_node, node AS inheres_pred_node, node AS is_a_pred_node, node AS quality_node, node AS slim_node, node AS subset_pred_node, node AS taxon_node, node AS exhibits_pred_node WHERE exhibits_pred_node.uid = 'PHENOSCAPE:exhibits' AND subset_pred_node.uid = 'oboInOwl:inSubset' AND is_a_pred_node.uid = 'OBO_REL:is_a' AND is_a_pred_node.is_inferred = 'f' AND inheres_pred_node.uid = 'OBO_REL:inheres_in' AND anatomy_node.uid = 'TAO:0000108' AND slim_node.uid IN ('attribute_slim', 'value_slim') AND exhibits_link.node_id = taxon_node.node_id AND exhibits_link.predicate_id = exhibits_pred_node.node_id AND exhibits_link.object_id = phenotype_node.node_id AND subset_link.node_id = quality_node.node_id AND subset_link.predicate_id = subset_pred_node.node_id AND subset_link.object_id = slim_node.node_id AND is_a_link.node_id = phenotype_node.node_id AND is_a_link.predicate_id = is_a_pred_node.node_id AND is_a_link.object_id = quality_node.node_id AND inheres_link.node_id = phenotype_node.node_id AND inheres_link.predicate_id = inheres_pred_node.node_id AND inheres_link.object_id = anatomy_node.node_id; </javascript>

Query Execution Plan

<javascript> "Unique (cost=15397.47..15397.50 rows=1 width=243) (actual time=45692.829..45699.320 rows=2070 loops=1)" " -> Sort (cost=15397.47..15397.47 rows=1 width=243) (actual time=45692.825..45693.795 rows=3887 loops=1)" " Sort Key: taxon_node.uid, exhibits_pred_node.uid, phenotype_node.uid, inheres_pred_node.uid, anatomy_node.uid, is_a_pred_node.uid, quality_node.uid, subset_pred_node.uid, slim_node.uid" " -> Nested Loop (cost=234.53..15397.46 rows=1 width=243) (actual time=33218.390..45415.489 rows=3887 loops=1)" " -> Nested Loop (cost=234.53..15394.41 rows=1 width=228) (actual time=33218.380..45393.860 rows=3887 loops=1)" " -> Nested Loop (cost=234.53..15391.36 rows=1 width=205) (actual time=33218.359..45367.897 rows=4730 loops=1)" " -> Nested Loop (cost=234.53..15388.31 rows=1 width=182) (actual time=1.649..29103.510 rows=3310775 loops=1)" " -> Nested Loop (cost=234.53..15382.42 rows=1 width=190) (actual time=1.634..16423.157 rows=1443372 loops=1)" " Join Filter: ("inner".predicate_id = "outer".node_id)" " -> Index Scan using node_uid_key on node exhibits_pred_node (cost=0.00..4.64 rows=1 width=31) (actual time=0.050..0.051 rows=1 loops=1)" " Index Cond: ((uid)::text = 'PHENOSCAPE:exhibits'::text)" " -> Nested Loop (cost=234.53..15377.44 rows=28 width=167) (actual time=1.580..15236.969 rows=1520592 loops=1)" " -> Nested Loop (cost=234.53..15292.11 rows=28 width=144) (actual time=1.572..6089.530 rows=1520592 loops=1)" " -> Index Scan using node_uid_key on node subset_pred_node (cost=0.00..4.64 rows=1 width=31) (actual time=0.018..0.018 rows=1 loops=1)" " Index Cond: ((uid)::text = 'oboInOwl:inSubset'::text)" " -> Nested Loop (cost=234.53..15287.20 rows=28 width=113) (actual time=1.552..5026.391 rows=1520592 loops=1)" " -> Nested Loop (cost=234.53..12737.92 rows=1 width=101) (actual time=1.541..1974.620 rows=37918 loops=1)" " Join Filter: ("inner".predicate_id = "outer".node_id)" " -> Index Scan using node_uid_key on node is_a_pred_node (cost=0.00..4.64 rows=1 width=31) (actual time=0.015..0.016 rows=1 loops=1)" " Index Cond: ((uid)::text = 'OBO_REL:is_a'::text)" " -> Nested Loop (cost=234.53..12729.35 rows=315 width=78) (actual time=1.507..1869.447 rows=252348 loops=1)" " -> Nested Loop (cost=234.53..11769.48 rows=315 width=47) (actual time=1.495..440.581 rows=252348 loops=1)" " -> Nested Loop (cost=234.53..11034.28 rows=7 width=35) (actual time=1.485..11.990 rows=6904 loops=1)" " -> Index Scan using node_uid_key on node inheres_pred_node (cost=0.00..4.64 rows=1 width=31) (actual time=0.017..0.019 rows=1 loops=1)" " Index Cond: ((uid)::text = 'OBO_REL:inheres_in'::text)" " -> Bitmap Heap Scan on link inheres_link (cost=234.53..10563.47 rows=37294 width=12) (actual time=1.463..6.271 rows=6904 loops=1)" " Recheck Cond: (inheres_link.predicate_id = "outer".node_id)" " -> Bitmap Index Scan on link_predicate_object_indx (cost=0.00..234.53 rows=37294 width=0) (actual time=1.316..1.316 rows=6904 loops=1)" " Index Cond: (inheres_link.predicate_id = "outer".node_id)" " -> Index Scan using link_node_indx on link is_a_link (cost=0.00..104.68 rows=28 width=12) (actual time=0.005..0.035 rows=37 loops=6904)" " Index Cond: ("outer".node_id = is_a_link.node_id)" " -> Index Scan using node_pkey on node quality_node (cost=0.00..3.03 rows=1 width=31) (actual time=0.004..0.004 rows=1 loops=252348)" " Index Cond: ("outer".object_id = quality_node.node_id)" " -> Index Scan using link_object_indx on link exhibits_link (cost=0.00..2537.96 rows=905 width=12) (actual time=0.006..0.046 rows=40 loops=37918)" " Index Cond: ("outer".node_id = exhibits_link.object_id)" " -> Index Scan using node_pkey on node taxon_node (cost=0.00..3.03 rows=1 width=31) (actual time=0.004..0.004 rows=1 loops=1520592)" " Index Cond: ("outer".node_id = taxon_node.node_id)" " -> Index Scan using link_triple_indx on link subset_link (cost=0.00..5.87 rows=1 width=12) (actual time=0.004..0.006 rows=2 loops=1443372)" " Index Cond: ((subset_link.node_id = "outer".node_id) AND (subset_link.predicate_id = "outer".node_id))" " -> Index Scan using node_pkey on node anatomy_node (cost=0.00..3.04 rows=1 width=31) (actual time=0.004..0.004 rows=0 loops=3310775)" " Index Cond: ("outer".object_id = anatomy_node.node_id)" " Filter: ((uid)::text = 'TAO:0000108'::text)" " -> Index Scan using node_pkey on node slim_node (cost=0.00..3.04 rows=1 width=31) (actual time=0.004..0.004 rows=1 loops=4730)" " Index Cond: ("outer".object_id = slim_node.node_id)" " Filter: (((uid)::text = 'attribute_slim'::text) OR ((uid)::text = 'value_slim'::text))" " -> Index Scan using node_pkey on node phenotype_node (cost=0.00..3.03 rows=1 width=31) (actual time=0.004..0.004 rows=1 loops=3887)" " Index Cond: ("outer".object_id = phenotype_node.node_id)" </javascript>

Execution Details

  • Rows returned: 2070
  • Time: 0.6 ~ 17 s