Elementary IR Systems: Supporting Boolean Text Search.

Slides:



Advertisements
Similar presentations
CPSC 404 Laks V.S. Lakshmanan1 Introduction to IR Systems: Supporting Boolean Text Search Ramakrishnan & Gehrke: Chapter 27, Sections 27.1—27.2.
Advertisements

IMPLEMENTATION OF INFORMATION RETRIEVAL SYSTEMS VIA RDBMS.
Crawling, Ranking and Indexing. Organizing the Web The Web is big. Really big. –Over 3 billion pages, just in the indexable Web The Web is dynamic Problems:
Introduction to Information Retrieval
Database Management Systems 3ed, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 14, Part B.
Implementation of Other Relational Algebra Operators, R. Ramakrishnan and J. Gehrke1 Implementation of other Relational Algebra Operators Chapter 12.
Database Management Systems, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
Database Management Systems, R. Ramakrishnan and Johannes Gehrke1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
Query Evaluation. An SQL query and its RA equiv. Employees (sin INT, ename VARCHAR(20), rating INT, age REAL) Maintenances (sin INT, planeId INT, day.
Information Retrieval in Practice
I NTRODUCTION TO IR S YSTEMS : S EARCH E NGINES Chapter 27.
Elementary IR Systems: Supporting Boolean Text Search.
Introduction to IR Systems: Supporting Boolean Text Search
Introduction to IR Systems: Supporting Boolean Text Search 198:541.
Properties of Text CS336 Lecture 3:. 2 Information Retrieval Searching unstructured documents Typically text –Newspaper articles –Web pages Other documents.
Database Management Systems, R. Ramakrishnan1 Introduction to IR Systems: Supporting Boolean Text Search Chapter 27, Part A.
Elementary IR: Scalable Boolean Text Search (Compare with R & G )
Query Optimization 3 Cost Estimation R&G, Chapters 12, 13, 14 Lecture 15.
CS194-3/CS16x Introduction to Systems Lecture 26 Elementary Information Retrieval: Scalable Boolean Text Search December 3, 2007 Prof. Anthony D. Joseph.
1 Evaluation of Relational Operations: Other Techniques Chapter 12, Part B.
Web Search – Summer Term 2006 II. Information Retrieval (Basics) (c) Wolfgang Hürst, Albert-Ludwigs-University.
Chapter 5: Information Retrieval and Web Search
Overview of Search Engines
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 10 Database Performance Tuning and Query Optimization.
IT The Relational DBMS Section 06. Relational Database Theory Physical Database Design.
CS6530 Graduate-level Database Systems Prof. Feifei Li.
 DATABASE DATABASE  DATABASE ENVIRONMENT DATABASE ENVIRONMENT  WHY STUDY DATABASE WHY STUDY DATABASE  DBMS & ITS FUNCTIONS DBMS & ITS FUNCTIONS 
Physical Database Design & Performance. Optimizing for Query Performance For DBs with high retrieval traffic as compared to maintenance traffic, optimizing.
Physical Database Design Chapter 6. Physical Design and implementation 1.Translate global logical data model for target DBMS  1.1Design base relations.
Chapter 2 Architecture of a Search Engine. Search Engine Architecture n A software architecture consists of software components, the interfaces provided.
CSE 6331 © Leonidas Fegaras Information Retrieval 1 Information Retrieval and Web Search Engines Leonidas Fegaras.
©Silberschatz, Korth and Sudarshan13.1Database System Concepts Chapter 13: Query Processing Overview Measures of Query Cost Selection Operation Sorting.
CPSC 404, Laks V.S. Lakshmanan1 Evaluation of Relational Operations: Other Operations Chapter 14 Ramakrishnan & Gehrke (Sections ; )
1 CS 430 Database Theory Winter 2005 Lecture 16: Inside a DBMS.
Chapter 6: Information Retrieval and Web Search
Introduction to Digital Libraries hussein suleman uct cs honours 2003.
CS4432: Database Systems II Query Processing- Part 2.
1 Information Retrieval LECTURE 1 : Introduction.
Physical Database Design Purpose- translate the logical description of data into the technical specifications for storing and retrieving data Goal - create.
Relational Operator Evaluation. Overview Application Programmer (e.g., business analyst, Data architect) Sophisticated Application Programmer (e.g.,
Chapter 8 Physical Database Design. Outline Overview of Physical Database Design Inputs of Physical Database Design File Structures Query Optimization.
CPSC 404, Laks V.S. Lakshmanan1 Overview of Query Evaluation Chapter 12 Ramakrishnan & Gehrke (Sections )
Query Execution. Where are we? File organizations: sorted, hashed, heaps. Indexes: hash index, B+-tree Indexes can be clustered or not. Data can be stored.
Query Processing – Implementing Set Operations and Joins Chap. 19.
1 Introduction to IR Systems: Supporting Boolean Text Search.
Diving into Query Execution Plans ED POLLACK AUTOTASK CORPORATION DATABASE OPTIMIZATION ENGINEER.
Chapter 5 Ranking with Indexes. Indexes and Ranking n Indexes are designed to support search  Faster response time, supports updates n Text search engines.
Database Applications (15-415) DBMS Internals- Part III Lecture 13, March 06, 2016 Mohammad Hammoud.
Information Retrieval in Practice
CS222: Principles of Data Management Lecture #4 Catalogs, Buffer Manager, File Organizations Instructor: Chen Li.
Why indexing? For efficient searching of a document
Information Retrieval in Practice
Module 11: File Structure
Search Engine Architecture
Chapter 12: Query Processing
Introduction to Query Optimization
Relational Algebra Chapter 4, Part A
Elementary IR: Scalable Boolean Text Search
Evaluation of Relational Operations: Other Operations
Instructor : Marina Gavrilova
Team Project, Part II NOMO Auto, Part II IST 210 Section 4
Hash-Based Indexes Chapter 10
Selected Topics: External Sorting, Join Algorithms, …
Relational Algebra Chapter 4, Sections 4.1 – 4.2
Chapter 5: Information Retrieval and Web Search
Implementation of Relational Operations
Indexing 4/11/2019.
Evaluation of Relational Operations: Other Techniques
Information Retrieval and Web Design
Evaluation of Relational Operations: Other Techniques
Presentation transcript:

Elementary IR Systems: Supporting Boolean Text Search

Information Retrieval A research field traditionally separate from Databases –Goes back to IBM, Rand and Lockheed in the 50’s –G. Salton at Cornell in the 60’s –Lots of research since then Products traditionally separate –Originally, document management systems for libraries, government, law, etc. –Gained prominence in recent years due to web search Today: simple IR techniques –Show similarities to DBMS techniques you already know

IR vs. DBMS Seem like very different beasts Under the hood, not as different as they might seem –But in practice, you have to choose between the 2 IRDBMS Imprecise SemanticsPrecise Semantics Keyword searchSQL Unstructured data formatStructured data Read-Mostly. Add docs occasionally Expect reasonable number of updates Page through top k resultsGenerate full answer

IR’s “Bag of Words” Model Typical IR data model: –Each document is just a bag of words (“terms”) Detail 1: “Stop Words” –Certain words are considered irrelevant and not placed in the bag –e.g. “the” –e.g. HTML tags like Detail 2: “Stemming” –Using English-specific rules, convert words to their basic form –e.g. “surfing”, “surfed” --> “surf”

Boolean Text Search Find all documents that match a Boolean containment expression: –“Windows” AND (“Glass” OR “Door”) AND NOT “Microsoft” Note: query terms are also filtered via stemming and stop words When web search engines say “10,000 documents found”, that’s the Boolean search result size.

Text “Indexes” When IR folks say “text index”… –Usually mean more than what DB people mean In our terms, both “tables” and indexes –Really a logical schema (i.e. tables) –With a physical schema (i.e. indexes) –Usually not stored in a DBMS Tables implemented as files in a file system We’ll talk more about this decision soon

A Simple Relational Text Index Create and populate a table InvertedFile(term string, docURL string) Build a B+-tree or Hash index on InvertedFile.term –Alternative 3 critical here!! Fancy list compression possible, too –Note: URL instead of RID, the web is your “heap file”! Can also cache pages and use RIDs This is often called an “inverted file” or “inverted index” –Maps from words -> docs whereas normal files map docs to the words in the doc! Can now do single-word text search queries!

An Inverted File Snippets from: –Class web page –microsoft.com Search for –databases –microsoft

Handling Boolean Logic How to do “term1” OR “term2”? –Union of two DocURL sets! How to do “term1” AND “term2”? –Intersection of two DocURL sets! Can be done by sorting both lists alphabetically and merging the lists We’ll see this in more detail in merge-join How to do “term1” AND NOT “term2”? –Set subtraction Also easy via sorting How to do “term1” OR NOT “term2” –Union of “term1” and “NOT term2”. “Not term2” = all docs not containing term2. Yuck! –Usually not allowed! Refinement: what order to handle terms if you have many ANDs/NOTs?

Boolean Search in SQL (SELECT docURL FROM InvertedFile WHERE word = “window” INTERSECT SELECT docURL FROM InvertedFile WHERE word = “glass” OR word = “door”) EXCEPT SELECT docURL FROM InvertedFile WHERE word=“Microsoft” ORDER BY magic_rank() Really there’s only one SQL query in Boolean Search IR –Single-table selects, UNION, INTERSECT, EXCEPT magic_rank() is the “secret sauce” in the search engines –Hopefully we’ll study this later in the semester –Combos of statistics, linguistics, and graph theory tricks! “Windows” AND (“Glass” OR “Door”) AND NOT “Microsoft”

Fancier: Phrases and “Near” Suppose you want a phrase –E.g. “Happy Days” Different schema: –InvertedFile (term string, count int, position int, DocURL string) –Alternative 3 index on term Post-process the results –Find “Happy” AND “Days” –Keep results where positions are 1 off Doing this well is like join processing, which we’ll see later Can do a similar thing for “term1” NEAR “term2” –Position < k off

Updates and Text Search Text search engines are designed to be query-mostly –Deletes and modifications are rare –Can postpone updates (nobody notices, no transactions!) Updates done in batch (rebuild the index) –Can’t afford to go offline for an update? Create a 2nd index on a separate machine Replace the 1st index with the 2nd! –So no concurrency control problems –Can compress to search-friendly, update-unfriendly format For these reasons, text search engines and DBMSs are usually separate products –Also, text-search engines tune that one SQL query to death! –The benefits of a special-case workload.

Lots more tricks in IR How to “rank” the output? –Some simple tricks work well Other ways to help users paw through the output? –Document “clustering” (e.g. NorthernLight) –Document visualization How to take advantage of hyperlinks? –Really cute tricks here! How to use compression for better I/O performance? –E.g. making RID lists smaller –Try to make things fit in RAM! How to deal with synonyms, misspelling, abbreviations? How to write a good webcrawler? Hopefully we’ll return to some of these later –See Managing Gigabytes for some of the details

{ Recall From the First Lecture The Access Method Buffer Management Disk Space Management DB OS “The Query” Search String Modifier Simple DBMS } Ranking Algorithm Query Optimization and Execution Relational Operators Files and Access Methods Buffer Management Disk Space Management DB Concurrency and Recovery Needed DBMSSearch Engine

You Know The Basics! “Inverted files” are the workhorses of all text search engines –Just B+-tree or Hash indexes on bag-of-words Intersect, Union and Set Difference (Except) –Usually implemented via sorting –Or can be done with join algorithms we’ll see soon Most of the other stuff is not “systems” work –A lot of it is cleverness in dealing with language –Both linguistics and statistics (more the latter!)

Revisiting Our IR/DBMS Distinctions Semantic Guarantees –DBMS guarantees transactional semantics If an inserting transaction commits, a subsequent query will see the update Handles multiple concurrent updates correctly, –IR systems do not do this; nobody notices! Postpone insertions until convenient No model of correct concurrency. Can even return incorrect answers for efficiency! Data Modeling & Query Complexity –DBMS supports any schema & queries Requires you to define schema Complex query language hard to learn –IR supports only one schema & query No schema design required (unstructured text) Trivial to learn query language

Revisiting Distinctions, Cont. Performance goals –DBMS supports general SELECT plus mix of INSERT, UPDATE, DELETE general purpose engine must always perform “well” –IR systems expect only one stylized SELECT plus delayed INSERT, unusual DELETE, no UPDATE. special purpose, must run super-fast on “The Query” users rarely look at the full answer in Boolean Search