eduardo gutarra. overview introduction and motivation background the etl process the...

32
A Data Warehouse for Canadian Literature Eduardo Gutarra

Upload: joella-lynch

Post on 16-Dec-2015

222 views

Category:

Documents


0 download

TRANSCRIPT

  • Slide 1
  • Eduardo Gutarra
  • Slide 2
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 3
  • Introduction Data warehouses are often used as one of the main components of Decision Support Systems. Data warehouses can be used to perform analyses on different fields as long as there is a lot of data. I wanted to build a data warehouse on places mentioned in books. Gutenberg Canada Website provides books in Text Files and other formats, free of charge. Barcelona Saint John Montreal
  • Slide 4
  • Motivation Project is inspired from the LitOLAP project LitOLAP seeks to apply data warehousing techniques in the domain of literary text processing. Facilitates the analysis of literary texts to a domain expert. Allows a literary researcher answering questions over an authors style, or particularities about book among others.
  • Slide 5
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 6
  • Data warehouse A data warehouse is a database specifically used for reporting. Populating a data warehouse (DW) involves an ETL process where the data is: Extracted from data sources Transformed to conform the schema of your DW. Loaded onto the data warehouse. Once the DW is populated, Online Analytical Processing (OLAP) can be performed on it.
  • Slide 7
  • Data warehouse Sales in Store 1 Sales in Store 2 Flat Files ETL Process Data warehouse OLAP Cube OLAP Cube Tend to be orders of magnitude larger Query response Time is more important Transactional throughput is More important Summarize the data
  • Slide 8
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 9
  • ETL Process According to Kimball, about 70% of the effort is spent in the ETL Process My project has a Single Data Source Obtain the metadata, and the books separately : : Gutenberg Canada. (index.html) AuthorTitleYear
  • Slide 10
  • MySQL English? No Transform to Table Form Transform to Table Form Annotated XML File Denormalized Table Annotated XML File Yes
  • Slide 11
  • Book1.xml 21: I have lived in Saint John. 22: This sentence has no place mentioned.... Book1.txt 21: I have lived in Saint John. 22: This sentece has no place mentioned.... Natural Language Processing GATE -- Open-source software for text processing. Gazetteer to determine what words or phrases are a location. Annotates sentences and locations Produces XML file
  • Slide 12
  • MySQL English? No Transform to Table Form Transform to Table Form Annotated XML File Denormalized Table Annotated XML File Yes
  • Slide 13
  • Book1.xml 21: I have lived in Saint John. 22: This sentence has no place mentioned.... Book2.xml 31: This sentence mentions Fredericton and Halifax. 32: This sentence mentions Saint John.... Once the XML file is written we have a process to transform into a single denormalized table. BookPlaceSentenceFrequency Book1Saint John211 Book2Fredericton311 Book2Halifax321 BookPlaceSentenceFrequency Book1Saint John211 Book1NONE221 Book2Fredericton311 Book2Halifax321
  • Slide 14
  • MySQL English? No Transform to Table Form Transform to Table Form Annotated XML File Denormalized Table Annotated XML File Yes
  • Slide 15
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 16
  • The Multidimensional Model We use the multidimensional model to design the way the data is structured Multidimensional model divides the data in measures and context. Measures: Numerical data being tracked Context: Data used for to describe the circumstances for which a given measure was obtained.
  • Slide 17
  • Units Sold Profit Measures 20 $45 Time Product Location Dimensions
  • Slide 18
  • The Star Schema When we store a multidimensional model in a relational database it is called a Star Schema. ProductIDLocationIDMonthIDUnits SoldProfit 2122045.. ProductIDProduct 1Sardines 2Anchovies 3Herring 4Pilchards LocationIDLocation 1Boston 2Benson 3Seattle 4Wichita MonthIDMonth 1April 2May 3June 4July Fact Table Dimension Table 20 $45 2NF 3NF 2NF
  • Slide 19
  • Attributes Attributes are abstract items for convenient qualification or summarization of measurements. Attributes often form hierarchies. TimeIDMonthQuarterYear 1JanuaryQ12010 2FebruaryQ12010 3MarchQ12010 4AprilQ22010 5MayQ22010 6JuneQ22010 7JulyQ32010 8AugustQ32010 9SeptemberQ32010 10OctoberQ42010 11NovemberQ42010 12DecemberQ42010 13JanuaryQ12011 FinestCoarsest Q2 33 20 45 Q2 x Anchovies x Boston 98 Time
  • Slide 20
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 21
  • SentenceID x PlaceID Frequency Place ID City Country Continent Sentence ID Place ID Frequency Sentence ID Text Sentence # Book Author Occupation PlaceSentence
  • Slide 22
  • Issues with the Design PlaceIDCityCountryContinent 40UnspecifiedCanadaNorth America 41Unspecified North America 42Unspecified South America What if the place is a country? What if the place is a continent? Dummy value unspecified can fill in the missing values I live in Canada. I live in North America.
  • Slide 23
  • Issues with the Design London in England, or London in Ontario? Context required to resolve ambiguity Allocation to partially fix the issue I live in London. PlaceIDCityCountryContinent 33LondonEnglandEurope : : : : 45LondonCanadaNorth America BookIDSentenceIDPlaceIDFrequency 2810334/5 2810451/5 Fact Table Dimension Table
  • Slide 24
  • Issues with the Design Many to Many relationship between Authors and Books Many to Many relationships are tricky. They can lead to double-counting and other problems. AuthorTitleSentenceIDFrequency ? The Knight of the Burning Pestle11 Fletcher, JohnA Story21 ?A Tale of The Big Mountain31 AuthorTitleSentenceIDFrequency Beaumont, FrancisThe Knight of the Burning Pestle1 Fletcher, JohnThe Knight of the Burning Pestle2 Fletcher, JohnA Story31 Beaumont, FrancisA Tale of The Big Mountain4 Fletcher, JohnA Tale of The Big Mountain5 Author_1Author_2TitleSentenceIDFrequency Beaumont, FrancisFletcher, JohnThe Knight of the Burning Pestle11 Fletcher, JohnNULLA Story21 Beaumont, FrancisFletcher, JohnA Tale of The Big Mountain31 Additional Attribute Allocation Beaumont, Francis Fletcher, John Beaumont, Francis Fletcher, John
  • Slide 25
  • Place ID City Country Continent Sentence ID Place ID Frequency AuthorGID AuthorID AuthorName Sentence ID Text Sentence # Book AuthorGID Occupation Dimension Table Bridge Table Outtriger Table Add two tables To the Star Schema Bridge Table
  • Slide 26
  • AuthorID x SentenceID x PlaceID Frequency Text Sentence ID Book Name Sentence # Place ID City Country Continent Author ID Author Name Occupation DOB DOD Sentence ID Place ID Frequency Author ID Author Place Sentence 18 + 18 = 36 20 + 20 = 40
  • Slide 27
  • Overview Introduction and Motivation Background The ETL Process The multidimensional model and star schema Issues with my star schema design Sample MDX queries for my cube
  • Slide 28
  • OLAP Schema The OLAP Schema file indicates where the fact table and dimension tables are in MySQL. Mondrian creates the OLAP cube from the MySQL back-end. JPivot provides the UI for the OLAP cube OLAP Schema File MySQL
  • Slide 29
  • MDX Query Language MultiDimensional eXpressions is a query language for OLAP cubes
  • Slide 30
  • SELECT {[Place].[All Places]} ON COLUMNS, {[Sentence].[All Sentences]} ON ROWS FROM [Places] WHERE [Measures].[frequency] SELECT ([Place].[America], [Sentence].[All Sentences].[Curwood, James Oliver].[The Black Hunter.]) ON ROWS, ([Measures].[frequency]) ON COLUMNS FROM [Places]
  • Slide 31
  • SELECT NON EMPTY Hierarchize ( { [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[0], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[1], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[2], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[3], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[4], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[5], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[6], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[7], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[8], [Sentence].[Moodie, Susanna].[Roughing it in the Bush; or, Forest Life in Canada].[0-19].[9] } ) ON COLUMNS, NON EMPTY Except({[Place].[All Places].Children}, {[Place].[NONE]}) ON ROWS from [Places]
  • Slide 32
  • WITH SET TopPlaces AS 'TopCount( Except( {[Place].[All Places].Children}, {[Place].[NONE]} ), 10, [Measures].[frequency])' SELECT NON EMPTY Hierarchize( {[Sentence].[All Sentences]}) ON COLUMNS, TopPlaces ON ROWS FROM [Places] WHERE [Measures].[frequency]
  • Slide 33
  • References http://blog.oaktonsoftware.com/2011/01/resolve-repeating- attributes-with.html http://blog.oaktonsoftware.com/2011/01/resolve-repeating- attributes-with.html The LitOLAP project: Data warehousing with literature (http://academic.research.microsoft.com/Publication/448 3536/the-litolap-project-data-warehousing-with-literature)http://academic.research.microsoft.com/Publication/448 3536/the-litolap-project-data-warehousing-with-literature Kimball, Ralph; Joe Caserta (2008). The Data Warehouse ETL Toolkit (2nd edition). New York: Wiley. ISBN 978-0- 470-14977-5.(http://www.kimballgroup.com/)http://www.kimballgroup.com/ Mosha Pasumansky, Mark Whitehorn, Rob Zare: Fast Track to MDX. ISBN 1-84628-174-1 Mosha PasumanskyISBN 1-84628-174-1 http://www.ciobriefings.com/Publications/WhitePapers/D esigningtheStarSchemaDatabase/tabid/101/Default.aspx http://www.ciobriefings.com/Publications/WhitePapers/D esigningtheStarSchemaDatabase/tabid/101/Default.aspx
  • Slide 34
  • Data Integration Pentahos Data Integration Tool; Kettle Text file input is the de-normalized table. Lookup/update steps populate dimensions. Final step writes fact table.
  • Slide 35
  • Algorithm for turning XML to denormalized table. Parse xml file and read a sentence in it. Having the sentence, we then add the sentence to the table of sentences: Check if we have a place in the sentence If there is a place, check whether it is new. If it is a new place, then we add an entry for it in the places table.
  • Slide 36
  • A Comparison Multidimensional Models More appropriate for OLAP applications. Provides faster query response times Reduce the number of joins Easier understanding of Data MDX (Multidimensional Expressions) Relational Models More appropriate for OLTP, or operational databases Better transactional throughput Reduce redundancies as much as possible. SQL (Structured Query Language)