Presentation is loading. Please wait.

Presentation is loading. Please wait.

2005Integration/tsimmis1 Tsimmis The Stanford-IBM Manager of Multiple Information Sources  Overview  Mediator specification  A reduction to Datalog.

Similar presentations


Presentation on theme: "2005Integration/tsimmis1 Tsimmis The Stanford-IBM Manager of Multiple Information Sources  Overview  Mediator specification  A reduction to Datalog."— Presentation transcript:

1 2005Integration/tsimmis1 Tsimmis The Stanford-IBM Manager of Multiple Information Sources  Overview  Mediator specification  A reduction to Datalog  Using object id’s for information fusion  Querying and query processing

2 2005Integration/tsimmis2  Overview A GAV system: global data defined in terms of sources simple, schema-less (semi-structured ) data model self-describing data -- precursor of XML Supports a notion of object identity – used for proper fusion of data from multiple sources Relationship between sources (wrappers) and mediator specified by a declarative language – variant of Datalog Query execution planning & optimization tailored for integration environment Semi-declarative mechanism for wrapper construction

3 2005Integration/tsimmis3 Data model: OEM (Object Exchange Model) Each piece of data describes itself, no schema, no fixed structure An object:, where: label is a description of what this data is type – the type of the value; can be atomic, or set value – the value of the object o-id – an identifier that uniquely identifies it Example (atomic types):

4 2005Integration/tsimmis4 Example (with a set type): <&e1, employee, set {&f1, &l1, &t1, &rep1} A set type is used to represent an object with sub-objects Here, a record structure In other cases, the sets may be real sets, with the same label repeating many times. Note: no order on oid’s in a set (contrast to XML)

5 2005Integration/tsimmis5 On object id’s: Usually temporary id’s assigned during query processing –Used for relating an object to its sub-objects –Valid only for duration of a query –Of no interest to the user Can be used by mediator writer for specifying data fusion (later) Notation (for queries, examples): Types are usually omitted – can be inferred from the data; hence objects written as triples when o-id’s are irrelevant -- write, or even <label, value)

6 2005Integration/tsimmis6 Interim summary: relational data can be exported in this format The format allows records that have some common fields, but each may have extra fields (semi-structured data) – like XML The lack of any schema seems, in retrospect, a disadvantage

7 2005Integration/tsimmis7  Mediator specification Each source is assumed to be wrapped by a wrapper, that exports data in the OEM format A mediator specification determines how source data is imported to the mediator and combined with data from other sources. The language MSL (Mediator Specification Language) is an adaptation of non-recursive Datalog to this data model, and the needs of integration

8 2005Integration/tsimmis8 An example: Two sources export data (via wrappers) on university people (both related to the CS dept): CS : a relational source, with two tables: employee(first_name, last_name, title, reports_to) student(first_name, last_name, year) Whois : A university facility that contains information about employees and students; usually name, dept are given but fields change between records

9 2005Integration/tsimmis9 Some data from CS : <&e1, employee, set {&f1, &l1, &t1, &rep1} <&e2, employee, set {&f2, &l2, &t2} <&s3, student, set {&f2, &l3, &y3}

10 2005Integration/tsimmis10 Some data from whois : <&p1, person, set {&n1, &d1, &rel1, &em1} <&p2, person, set {&n2, &d2, &rel2, &y2}

11 2005Integration/tsimmis11 A comparison of the sources: Domain mismatch: Different representations for name in the two sources (The resolution of such issues is the responsibility of the mediator) Schematic discrepancy: employee, student are relation names in CS, data in whois In one source ( whois ), there is no fixed schema – different objects may have different fields; but, we would like in some cases to import all data about a person, w/o knowing what data exists The sources (e.g. CS ) may evolve; we would like the mediator spec to be insensitive to most changes

12 2005Integration/tsimmis12 Specification of a mediator med (by examples) (MS0) : Show in mediator names & relationship of CS people that exist in both sources:, }> @ med :-,, }> @ whois,, }> @ CS, decompose_name( N, LN, FN) External: decompose_name(string, string, string)(b,f,f)  name_to_lnfn decompose_name(string, string, string)(f,b,b)  lnfn_to_name Explanation: Capital letter – variables External: a (conversion) function (implemented in some pl)  : implemented by, b – bound (in), f – free (out) o-id, and type were omitted!

13 2005Integration/tsimmis13, }> @ med :-,, }> @ whois,, }> @ CS, More explanation: {, } represent sets In body:,, } means that there is an object with –label person, –value that is a set that contains at least objects with labels name, dept, relation, possibly more In head: These are the elements that go into the mediated object

14 2005Integration/tsimmis14 How are the problems addressed? Domain mismatch: Different representations for names – use conversion functions Schematic discrepancy: employee, student are relation names in CS, data in whois – variables can range on both data and labels (see the variable R in query) (same now in XQuery) In one source ( whois ), there is no fixed schema – same fields will be retrieved The sources may evolve; we would like the mediator spec to be insensitive to most changes -- same as previous point

15 2005Integration/tsimmis15 (MS1) : similar, but now we want all fields from both sources,, Rest1 Rest2}> @ med :-,, | Rest1}> @ whois,, | Rest2}> @ CS, decompose_name( N, LN, FN) External: decompose_name(string, string, string)(b,f,f)  name_to_lnfn decompose_name(string, string, string)(f,b,b)  lnfn_to_name Explanation: Rest variables distinguished in body by occurring after | Bound to the fields in the object not mentioned explicitly (~ set difference) The language is called MSL (mediator specification language)

16 2005Integration/tsimmis16 An object generated by the mediator for MS1 in med : <&cp1, cs_person, set {&mn1, &mrel1, &t1, &rep1, &em1} Note: this is a virtual object; materialization only for user queries

17 2005Integration/tsimmis17 Q: How is it generated? Match each body atom (a pattern ) with objects in the specified source –If label is a constant – can match only this constant –Same for value –A variable matches any label/value –{…} match only sets –Rest matches any components not matched explicitly A successful match binds the matched variables This is essentially a (flexible) notion of a valuation from a query body to data o-ids for the result are generated by med, since here they are not specified explicitly Q: can you generate a few other objects from the given data?

18 2005Integration/tsimmis18 How are the problems addressed? In one source ( whois ), there is no fixed schema – different objects may have different fields, but we want all fields The sources may evolve; we would like the mediator spec to be insensitive to most changes – the variables Rest1, Rest2 range are bound to the set of all the sub-objects not explicitly specified

19 2005Integration/tsimmis19 The rest variables can be removed:,, @ med :-,,, }> @ whois, R1-l notin {name, dept, relation},, }> @ CS, R2-l notin {first_name, last_name} decompose_name( N, LN, FN) External: ……… Note: notin can be replaced here by a conjunction of neq

20 2005Integration/tsimmis20  A reduction to Datalog I. Model each source as a relational database: top(src, oid) – the object identified by oid is top-level in src object(src, oid, lab, val) – the object identified by oid exists in src, has label lab and atomic value val object(src, oid, lab, set) – the object identified by oid exists in src, has label lab and a set value set is here a special constant member(src, o1, o2) – in src, o1 has a set value, o2 is in the set The original OO database is essentially a graph of objects and relationships; the above captures this graph, relationally

21 2005Integration/tsimmis21 Some obvious integrity constraints: If member(src, o1, o2) then also object(src, o1, lab1, set) and object(src, o2, lab2, v2) hold for some lab1, lab2, v2 Any more?

22 2005Integration/tsimmis22 II. Translate MSL rules to use these relations: (MS0), }> @ med :- (1),, }> @ whois, (2), }> @ CS, (3) decompose_name( N, LN, FN) …….. (1)  top( whois, &P1), object( whois, &P1, person, set), object( whois, &N1, name, N), object( whois, &D1, dept, ‘CS’), object( whois, &Rel1, relation, R) (2)-- similar : top( CS, &P2), …. (3) what is your suggestion?

23 2005Integration/tsimmis23, }> @ med :- (1),, }> @ whois, (2), }> @ CS, (3) decompose_name( N, LN, FN) …….. head  top( med, f(&P1,&P2)), object( med, f(&P1, p2), cs_person, set), …….. Here f is a new function symbol (a ‘syntactic’ function) The term f(&P1, &P2) states that the new object id is determined by that of the two objects retrieved from whois and CS But, it seems we generate a multi-head rule?

24 2005Integration/tsimmis24 There is no inherent difficulty with multi-head rules: We can introduce an intermediate relation binds(..) to collect all the bindings from the (translation of) the body And a new rule with one atom in head, and binds(..) as the body, for each of the components of the head. The term f(&P1, &P2) ensures that the facts that are generated refer to the same object

25 2005Integration/tsimmis25  Using object id’s for information fusion So far, oid’s -- (almost) an implementation feature: enabling references to sub-objects But, they can be used logically: if several rules use the same oid in the head, then the information produced by the rules is fused together, into a collection of sub-objects for a unique object For this to work, the oid in the head must be a function of some of the variables (or constants) in the body (safety) ; then each tuple of bindings for these variables produces a unique oid id-based object fusion Semantic oid’s

26 2005Integration/tsimmis26 Example: Two sources about technical reports, use same report numbers; one has a title, the other -- the postscript (MS3): }> @ cs :- }> @ cs1 }> @ cs :- }> @ cs2 If report #5 occurs in both sources, the first rule attaches the title to the fused object, the second rule attaches the postscript If it occurs only in cs1, then only a title field will be attached If it occurs only in cs2, then only a ps field will be attached

27 2005Integration/tsimmis27 We can retrieve all the fields from both sources, w/o having to know their labels (MS4): @ cs :- }> @ cs1 @ cs :- }> @ cs2 Variable V binds to a set of objects (provided one has a report_number field) In this example, if both sources contain a title field, the mediated object will have both The mediated object certainly has two report_number fields! Can this be avoided? Hint: use the same idea for the object with report_number label

28 2005Integration/tsimmis28 We can select to retrieve fields from cs1, and only fields not there from cs2 (MS5): }> @ cs :- }> @ cs1 provided(RN, F) :- }> @ cs1 }> @ cs :- not provided(RN, F), }> @ cs2 Use of predicates, in addition to objects, is useful This is a case of stratified negation, has well-defined semantics When evaluating against cs1, makes sense to collect the bindings for the first two rules together

29 2005Integration/tsimmis29 Assume reports have a field related that references another report, how can we transform them to mediator objects? (MS6): }> @ cs :- }> @ cs1, L neq related }> @ cs :- }>}> @ cs1 But, this solution assumes We know which sub-objects contain references They are at a fixed, known, depth In XML, both assumptions may fail Assuming we have a construct like // can we address these issues?

30 2005Integration/tsimmis30  Querying and query processing Can use a variety of languages for querying We illustrate querying using MSL Example: Find all info about Joe Chung: (Q1) JC :- JC: }> @ med New feature: object variable JC When Q1 is processed, it binds to any object with name ‘Joe Chung’ Each such binding inserts the object into the answer

31 2005Integration/tsimmis31 Processing the query: Remove the object variable }> :- }> @ med Note: L neq name is not needed; why? Match the body condition with head of rule defining med (after the rest variables were also removed, p. 19):,, @ med :-,,, }> @ whois, R1-l notin {name, dept, relation},, }> @ CS, R2-l notin {first_name, last_name} decompose_name( N, LN, FN)

32 2005Integration/tsimmis32 A match: }>,,  N is replaced by ‘Joe Chung’ (L and V match each of the fields)  The rule,, @ med :-,,, }> @ whois, R1-l notin {name, dept, relation},, }> @ CS, R2-l notin {first_name, last_name} decompose_name(Joe Chung, LN, FN)

33 2005Integration/tsimmis33 So, we have replaced a view by its definition, with query bindings accounted for Add an object id to the head : f(Joe chung) (we do not show it) why is it needed? Now, decompose the result into source queries: (1),,, }> @ whois, R1-l notin {name, dept, relation} (2),, }> @ CS, R2-l notin {first_name, last_name} And a glue: (3)decompose_name(Joe Chung, LN, FN) What are the options for query processing?

34 2005Integration/tsimmis34 I. Obtain R bindings from whois, and FN, LN bindings from decompose, then use these in queries on CS II. Obtain FN, LN bindings from decompose, use these in (two) queries on CS, also use the given bindings to query whois then join III. Query cs, then use decompose and the results to query whois The selection of the query processing strategy requires an optimizer

35 2005Integration/tsimmis35 Summary Tssimis combines Semi-structured data Semantic object id’s for object fusion A GAV approach Advantages: Offers a solution the schematic discrepancy problem Can deal with source evolution, unknown structure, … Semantics oid’s are a nice mechanism for information fusion Some problems: Does not provide easy access to deeply nested data Nor to data whose depth is variable/unknown


Download ppt "2005Integration/tsimmis1 Tsimmis The Stanford-IBM Manager of Multiple Information Sources  Overview  Mediator specification  A reduction to Datalog."

Similar presentations


Ads by Google