Lecture 7: Index Construction

Slides:



Advertisements
Similar presentations
Lecture 4: Index Construction
Advertisements

Introduction to Information Retrieval Introduction to Information Retrieval CS276: Information Retrieval and Web Search Pandu Nayak and Prabhakar Raghavan.
Sorting Really Big Files Sorting Part 3. Using K Temporary Files Given  N records in file F  M records will fit into internal memory  Use K temp files,
Index Construction David Kauchak cs160 Fall 2009 adapted from:
Hinrich Schütze and Christina Lioma Lecture 4: Index Construction
Disk Access Model. Using Secondary Storage Effectively In most studies of algorithms, one assumes the “RAM model”: –Data is in main memory, –Access to.
PrasadL06IndexConstruction1 Index Construction Adapted from Lectures by Prabhakar Raghavan (Google) and Christopher Manning (Stanford)
Indexes. Primary Indexes Dense Indexes Pointer to every record of a sequential file, (ordered by search key). Can make sense because records may be much.
FALL 2006CENG 351 Data Management and File Structures1 External Sorting.
Information Retrieval IR 4. Plan This time: Index construction.
CS347 Lecture 3 April 16, 2001 ©Prabhakar Raghavan.
1 INF 2914 Information Retrieval and Web Search Lecture 6: Index Construction These slides are adapted from Stanford’s class CS276 / LING 286 Information.
Using Secondary Storage Effectively In most studies of algorithms, one assumes the "RAM model“: –The data is in main memory, –Access to any item of data.
Query Expansion and Index Construction Lecture 5.
CpSc 881: Information Retrieval. 2 Hardware basics Many design decisions in information retrieval are based on hardware constraints. We begin by reviewing.
Hinrich Schütze and Christina Lioma Lecture 4: Index Construction
Lecture 4 Index construction
INF 2914 Information Retrieval and Web Search
Indexing Debapriyo Majumdar Information Retrieval – Spring 2015 Indian Statistical Institute Kolkata.
CSCI 5417 Information Retrieval Systems Jim Martin Lecture 4 9/1/2011.
Introduction to Information Retrieval Information Retrieval and Data Mining (AT71.07) Comp. Sc. and Inf. Mgmt. Asian Institute of Technology Instructor:
Information Retrieval Techniques MS(CS) Lecture 5 AIR UNIVERSITY MULTAN CAMPUS.
Index Construction David Kauchak cs458 Fall 2012 adapted from:
©Silberschatz, Korth and Sudarshan13.1Database System Concepts Chapter 13: Query Processing Overview Measures of Query Cost Selection Operation Sorting.
Introduction to Information Retrieval Introduction to Information Retrieval CS276 Information Retrieval and Web Search Christopher Manning and Prabhakar.
An Introduction to IR Lecture 4 Index construction 1.
Index Construction 1 Lecture 5: Index Construction Web Search and Mining.
Index Construction (Modified from Stanford CS276 Class Lecture 4 Index construction)
CS276A Text Information Retrieval, Mining, and Exploitation Lecture 3 8 Oct 2002.
1 ITCS 6265 Lecture 4 Index construction. 2 Plan Last lecture: Dictionary data structures Tolerant retrieval Wildcards Spell correction Soundex This lecture:
PrasadL06IndexConstruction1 Index Construction Adapted from Lectures by Prabhakar Raghavan (Yahoo and Stanford) and Christopher Manning (Stanford)
Introduction to Information Retrieval Introduction to Information Retrieval Lecture 4: Index Construction Related to Chapter 4:
Evidence from Content INST 734 Module 2 Doug Oard.
Introduction to Information Retrieval COMP4210: Information Retrieval and Search Engines Lecture 4: Index Construction United International College.
Introduction to Information Retrieval Introduction to Information Retrieval CS276: Information Retrieval and Web Search Christopher Manning and Prabhakar.
Lecture 4: Index Construction Related to Chapter 4:
Introduction to Information Retrieval Introduction to Information Retrieval Lecture 4: Index Construction Related to Chapter 4:
Document Indexing Document indexing is the process of associating or tagging documents with different “search” terms Content: 1.Index construction 2.Scaling.
Web Information Retrieval Textbook by Christopher D. Manning, Prabhakar Raghavan, and Hinrich Schutze Notes Revised by X. Meng for SEU May 2014.
Introduction to Information Retrieval Introduction to Information Retrieval Modified from Stanford CS276 slides Chap. 4: Index Construction.
Introduction to Information Retrieval CSE 538 MRS BOOK – CHAPTER IV Index Construction 1.
Introduction to Information Retrieval Introduction to Information Retrieval Introducing Information Retrieval and Web Search.
CS276 Lecture 4 Index construction. Plan Last lecture: Tolerant retrieval Wildcards Spell correction Soundex This time: Index construction.
Introduction to COMP9319: Web Data Compression and Search Search, index construction and compression Slides modified from Hinrich Schütze and Christina.
CS315 Introduction to Information Retrieval Boolean Search 1.
Introduction to Information Retrieval Introduction to Information Retrieval Lecture 7: Index Construction.
Information Retrieval and Data Mining (AT71. 07) Comp. Sc. and Inf
Index Construction Some of these slides are based on Stanford IR Course slides at
Prof. Paolo Ferragina, Algoritmi per "Information Retrieval"
COMP9319: Web Data Compression and Search
Large Scale Search: Inverted Index, etc.
Chapter 4 Index construction
Database Management System
Modified from Stanford CS276 slides Lecture 4: Index Construction
Lecture 7: Index Construction
Chapter 12: Query Processing
CS276: Information Retrieval and Web Search
Database Management Systems (CS 564)
Index Construction: sorting
Information Retrieval and Web Search Lecture 1: Boolean retrieval
Lecture 2- Query Processing (continued)
Discussion 5 Sara Javanmardi.
3-2. Index construction Most slides were adapted from Stanford CS 276 course and University of Munich IR course.
Lecture 4: Index Construction
Chapter 12 Query Processing (1)
Index construction 4장.
CENG 351 Data Management and File Structures
CS276: Information Retrieval and Web Search
Presentation transcript:

Lecture 7: Index Construction

Index construction How do we construct an index? Ch. 4 Index construction How do we construct an index? What strategies can we use with limited main memory?

Sec. 4.1 Hardware basics Many design decisions in information retrieval are based on the characteristics of hardware We begin by reviewing hardware basics

Sec. 4.1 Hardware basics Access to data in memory is much faster than access to data on disk. Disk seeks: No data is transferred from disk while the disk head is being positioned.  takes a while for the disk head to move to the part of the disk where data is located. Therefore: Transferring one large chunk of data from disk to memory is faster than transferring many small chunks. Disk I/O is block-based: Reading and writing of entire blocks (as opposed to smaller chunks): 8 to 256 KB.

Sec. 4.1 Hardware basics Servers used in IR systems now typically have several GB of main memory, sometimes tens of GB. Available disk space is several (2–3) orders of magnitude larger.

Hardware assumptions for this lecture Sec. 4.1 Hardware assumptions for this lecture symbol statistic value s average seek time 5 ms = 5 x 10−3 s b transfer time per byte 0.02 μs = 2 x 10−8 s processor’s clock rate 109 s−1 p low-level operation 0.01 μs = 10−8 s (e.g., compare & swap a word) size of main memory several GB size of disk space 1 TB or more

RCV1: Our collection for this lecture Sec. 4.2 RCV1: Our collection for this lecture Shakespeare’s collected works definitely aren’t large enough for demonstrating many of the points in this course. The collection we’ll use isn’t really large enough either, but it’s publicly available and is at least a more plausible example. As an example for applying scalable index construction algorithms, we will use the Reuters RCV1 collection. This is one year of Reuters newswire (part of 1995 and 1996)

Sec. 4.2 A Reuters RCV1 document

Reuters RCV1 statistics Sec. 4.2 Reuters RCV1 statistics symbol statistic value N documents 800,000 M terms (= word types) 400,000 non-positional postings 100,000,000

Recall IIR 1 index construction Sec. 4.2 Recall IIR 1 index construction Documents are parsed to extract words and these are saved with the Document ID. Doc 1 Doc 2 I did enact Julius Caesar I was killed i' the Capitol; Brutus killed me. So let it be with Caesar. The noble Brutus hath told you Caesar was ambitious

Key step We focus on this sort step. We have 100M items to sort. Sec. 4.2 Key step After all documents have been parsed, the inverted file is sorted by terms. We focus on this sort step. We have 100M items to sort.

Scaling index construction Sec. 4.2 Scaling index construction In-memory index construction does not scale Can’t stuff entire collection into memory, sort, then write back How can we construct an index for very large collections? Taking into account the hardware constraints we just learned about . . . Memory, disk, speed, etc.

Sort-based index construction Sec. 4.2 Sort-based index construction As we build the index, we parse docs one at a time. While building the index, we cannot easily exploit compression tricks (you can, but much more complex) The final postings for any term are incomplete until the end. At 12 bytes per non-positional postings entry (term, doc, freq), demands a lot of space for large collections. T = 100,000,000 in the case of RCV1 So … we can do this in memory in 2009, but typical collections are much larger. E.g., the New York Times provides an index of >150 years of newswire Thus: We need to store intermediate results on disk.

Sort using disk as “memory”? Sec. 4.2 Sort using disk as “memory”? Can we use the same index construction algorithm for larger collections, but by using disk instead of memory? No: Sorting T = 100,000,000 records on disk is too slow – too many disk seeks. We need an external sorting algorithm.

Bottleneck Parse and build postings entries one doc at a time Sec. 4.2 Bottleneck Parse and build postings entries one doc at a time Now sort postings entries by term (then by doc within each term) Doing this with random disk seeks would be too slow – must sort T=100M records If every comparison took 2 disk seeks, and N items could be sorted with N log2N comparisons, how long would this take?

BSBI: Blocked sort-based Indexing (Sorting with fewer disk seeks) Sec. 4.2 BSBI: Blocked sort-based Indexing (Sorting with fewer disk seeks) 12-byte (4+4+4) records (term, doc, freq). These are generated as we parse docs. Must now sort 100M such 12-byte records by term. Define a Block ~ 10M such records Can easily fit a couple into memory. Will have 10 such blocks to start with. Basic idea of algorithm: Accumulate postings for each block, sort, write to disk. Then merge the blocks into one long sorted order.

Sec. 4.2

Sorting 10 blocks of 10M records Sec. 4.2 Sorting 10 blocks of 10M records First, read each block and sort within: Quicksort takes 2N ln N expected steps In our case 2 x (10M ln 10M) steps Exercise: estimate total time to read each block from disk and and quicksort it. 10 times this estimate – gives us 10 sorted runs of 10M records each.

Sec. 4.2

How to merge the sorted runs? Sec. 4.2 How to merge the sorted runs? Can do binary merges, with a merge tree of log210 = 4 layers. During each layer, read into memory runs in blocks of 10M, merge, write back. 2 1 4 3 1 2 Merged run. 3 4 Runs being merged. Disk

How to merge the sorted runs? Sec. 4.2 How to merge the sorted runs? But it is more efficient to do a multi-way merge, where you are reading from all blocks simultaneously Providing you read decent-sized chunks of each block into memory and then write out a decent-sized output chunk, then you’re not killed by disk seeks What is the overall complexity of

Remaining problem with sort-based algorithm Sec. 4.3 Remaining problem with sort-based algorithm Our assumption was: we can keep the dictionary in memory. We need the dictionary (which grows dynamically) in order to implement a term to termID mapping. Actually, we could work with term,docID postings instead of termID,docID postings . . . . . . but then intermediate files become very large. (We would end up with a scalable, but very slow index construction method.)