an integrated knowledge base for european dependability research © hugh glaser, ian millard et al....

21
An Integrated Knowledge Base for European Dependability Research© Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton Newcastle University, 7th. October 2008 © Brian Randell

Upload: jonathan-hopkins

Post on 14-Jan-2016

223 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

An Integrated Knowledge Base for European Dependability Research©

Hugh Glaser, Ian Millard et al.

Electronics & Computer ScienceUniversity of Southampton

Newcastle University, 7th. October 2008 © Brian Randell

Page 2: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Overview• A knowledge-enabled infrastructure to support

– The ReSIST Project

– Resilience-Explicit Computing

• A User Interface – the RKBExplorer

• Other components

• Sources

• Some vision

• Discussion

2

Page 3: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Citeseer, CORDIS, DBLP,Partners, UN LoCode, …

Conversion &

Versioning

Ontologies, etc,

Page 4: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 5: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 6: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 7: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 8: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 9: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 10: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 11: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 12: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 13: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton
Page 14: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Some Underlying Sourcesacm.rkbexplorer.combudapest.rkbexplorer.comciteseer.rkbexplorer.comcordis.rkbexplorer.comcourseware.rkbexplorer.comdarmstadt.rkbexplorer.comdblp.rkbexplorer.comdeepblue.rkbexplorer.comdeploy.rkbexplorer.comeurecom.rkbexplorer.comft.rkbexplorer.comibm.rkbexplorer.comieee.rkbexplorer.comirit.rkbexplorer.com

italy.rkbexplorer.comkaunas.rkbexplorer.comkisti.rkbexplorer.comlaas.rkbexplorer.comlisbon.rkbexplorer.comnewcastle.rkbexplorer.comnsf.rkbexplorer.compisa.rkbexplorer.comresex.rkbexplorer.comroma.rkbexplorer.comsouthampton.rkbexplorer.comulm.rkbexplorer.comunlocode.rkbexplorer.comwiki.rkbexplorer.com

Range from a few 100 to more than 10,000,000 “facts”

Page 15: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

More Semantic Web/Linked Data issues• The system supports state of the art facilities:

– Browsing– Resolvable URIs– SPARQL endpoint– CRS (Coreferent knowledge)– RDF publishing– Semantic Sitemap– On a separate domain

Page 16: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Supporting resilience– People, Publication, Projects, Research Areas

– Resilience-related topics

– Resilience-Explicit Computing

– Educational Resources

– In the future

• Automating discovery of issues and solutions

– Design time

– Run time

Page 17: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Finding mechanisms that are appropriate for Hardware and

Aerospace

SELECT DISTINCT ?mechanismURI ?mechanismName ?metadataName ?metadataValue WHERE {

?mechanismURI rdf:type resex:Resilience-Mechanism .

?mechanismURI resex:applies-to-technology akt:Hardware-Platform .

?mechanismURI resex:has-application-domain acm:J.2.0 .

?mechanismURI rdfs:label ?mechanismName .

}

Page 18: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Inspecting metadata, number of variants

SELECT DISTINCT ?mechanismURI ?mechanismName ?metadataName ?metadataValue WHERE {

?mechanismURI rdf:type resex:Resilience-Mechanism .

?mechanismURI resex:applies-to-technology akt:Hardware-Platform .

?mechanismURI resex:has-application-domain acm:J.2.0 .

?mechanismURI rdfs:label ?mechanismName .

?mechanismURI resex:has-resilience-metadata ?metadata .

?metadata resex:metadata-type id:resilience-metadata-type-231c8583

?metadata resex:metadata-type ?mt . ?mt rdfs:label ?metadataName .

?metadata resex:has-value ?metadataValue

}

Page 19: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Inspecting metadata, average cost of implementing fault tolerant system -vs- cost of implementing non fault tolerant

systemSELECT DISTINCT ?mechanismURI ?mechanismName ?metadataName ?metadataValue WHERE {

?mechanismURI rdf:type resex:Resilience-Mechanism .

?mechanismURI resex:applies-to-technology akt:Hardware-Platform .

?mechanismURI resex:has-application-domain acm:J.2.0 .

?mechanismURI rdfs:label ?mechanismName .

?mechanismURI resex:has-resilience-metadata ?metadata .

?metadata resex:metadata-type id:resilience-metadata-type-de1eddf9 .

?metadata resex:metadata-type ?mt . ?mt rdfs:label ?metadataName .

?metadata resex:has-value ?metadataValue

}

Page 20: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

Comparison of the operational overheads in determining a fault has occurred

SELECT DISTINCT ?mechanismURI ?mechanismName ?metadataName ?metadataValue WHERE {

?mechanismURI rdf:type resex:Resilience-Mechanism .

?mechanismURI resex:applies-to-technology akt:Hardware-Platform .

?mechanismURI resex:has-application-domain acm:J.2.0 .

?mechanismURI rdfs:label ?mechanismName .

?mechanismURI resex:has-resilience-metadata ?metadata .

?metadata resex:metadata-type id:resilience-metadata-type-3443934c .

?metadata resex:metadata-type ?mt . ?mt rdfs:label ?metadataName .

?metadata resex:has-value ?metadataValue

}

Page 21: An Integrated Knowledge Base for European Dependability Research © Hugh Glaser, Ian Millard et al. Electronics & Computer Science University of Southampton

RKBExplorer.com/explorer/ – Try it!

http://eprints.ecs.soton.ac.uk/16761