0:00
In this video we are discussing inverted index pattern overview
0:05
This inverted index, this particular indexing, we require for the fruitful and efficient
0:11
searching operations. So, let us go into details. So, what is inverted index
0:17
An inverted index is commonly used for map-reduce ytics. And using this, we can make a map of some terms to a list of items
0:28
So, here you'll be making a map. of some terms to the list of items for the efficient and fruitful searching
0:35
It creates an index from the data set to search for items in lesser time
0:40
Different search engines built indexes to improve their searching mechanisms. So different search engines, they are having this particular pattern for their easy and efficient
0:51
searching of our search queries. So inverted index pattern structure. So here we are having the respective mappers
0:59
So, these mappers will produce key value pairs. That is a keyword for the searching and the unique ID
1:06
So, in this way, it is producing key value pairs where we are having the keyword
1:11
comma, unique ID. And this particular output will be made available to the partitioner
1:17
So, partitional will do the shuffling operation, and then the partitioner's output will
1:22
be going for the reducer, and reducer will make, there is a keyword A list of IDs
1:27
keyword D list of IDs in this way we're having keyword B list of IDs and keyword C
1:33
list of IDs so this is our inverted index pattern overview so let us go for further
1:39
discussion on this topic in our next videos thanks for watching this