43
1 Distributed Top-K Ranking Algorithms Demetris Zeinalipour Lecturer School of Pure and Applied Sciences Open University of Cyprus Monday, December 15 th , 2008, 15:30-16:30 DAMA Group, Polytechnic University of Catalonia (UPC), Barcelona http://www.cs.ucy.ac.cy/~dzeina/

Distributed Top-K Ranking Algorithms

Embed Size (px)

DESCRIPTION

Distributed Top-K Ranking Algorithms. Demetris Zeinalipour Lecturer School of Pure and Applied Sciences Open University of Cyprus. Monday , December 15 th , 200 8, 15:30-16:30 DAMA Group, Polytechnic University of Catalonia (UPC), Barcelona. http://www.cs.ucy.ac.cy/~dzeina/. - PowerPoint PPT Presentation

Citation preview

Page 1: Distributed Top-K Ranking Algorithms

1

Distributed Top-K Ranking Algorithms

Demetris ZeinalipourLecturer

School of Pure and Applied SciencesOpen University of Cyprus

Monday, December 15th, 2008, 15:30-16:30DAMA Group, Polytechnic University of Catalonia (UPC), Barcelona

http://www.cs.ucy.ac.cy/~dzeina/

Page 2: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)2

• The results shown in this presentation are based on the following papers:– ``KSpot: Effectively Monitoring the K Most Important Events in a

Wireless Sensor Network", P. Andreou, D. Zeinalipour-Yazti, M. Vassiliadou, P.K. Chrysanthis, G. Samaras, 25th International Conference on Data Engineering March (ICDE'09) (demo), Shanghai, China, May 29 - April 4, 2009,

– ``Finding the K Highest-Ranked Answers in a Distributed Network”, D. Zeinalipour-Yazti et. al, Computer Networks journal, Elsevier, 2009.

– ``Seminar: Distributed Top-K Query Processing in Wireless Sensor Networks’’, D. Zeinalipour-Yazti, Z. Vagena, Tutorial at the 9th Intl. Conference on Mobile Data Management (MDM'08), April 27-30, 2008

– ``Distributed Spatio-Temporal Similarity Search'', D. Zeinalipour-Yazti, S. Lin, D. Gunopulos, The 15th ACM Conference on Information and Knowledge Management (CIKM'06), Arlington, VA, USA, November 6-11, to appear, 2006.

Acknowledgements

Page 3: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)3

Top-k Queries: Introduction• Top-K Queries are a long studied topic in the

database and information retrieval communities• The main objective of these queries is to return

the K highest-ranked answers quickly and efficiently.

• A Top-K query returns the subset of most relevant answers, in place of ALL answers, for two reasons:

– i) to minimize the cost metric that is associated with the retrieval of all answers (e.g., disk, network, etc.)

– ii) to maximize the quality of the answer set, such that the user is not overwhelmed with irrelevant results

Page 4: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)4

Top-k Queries: Definitions• Top-K Query (Q)

Given a database D of m objects (each of which characterized by n attributes) a scoring function f, according to which we rank the objects in D, and the number of expected answers K, a Top-K query Q returns the K objects with the highest score (rank) in f.

• Scoring Table

An m-by-n matrix of scores expressing the similarity of Q to all objects in D (for all attributes).

Page 5: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)5

Top-k Queries: Then

Assumptions• The data is available locally on disks or over a “high-

speed”, “always-on” network

Trade-off• Clients want to get the right answers quickly• Service Providers want to consume the least

possible resources

SELECT TOP-2 picturesFROM PICTURES

WHERE SIMILAR(picture, )

{ }Query

Processing

5

v1 v2 v3 v4 v5o1,.91o3,.90o0,.61o4,.07o2,.01

o1,.92o3,.75o4,.70o2,.16o0,.01

o3,.74o1,.56o2,.56o0,.28o4,.19

o3,.67o4,.67o1,.58o2,.54o0,.35

TOP-1

o3,4.05/5=.81o1,3.63/5=.73o4,2.07/5=.41o0,1.88/5=.32o2,1.75/5=.29

o3,4.05/5=.81o3,.99o1,.66o0,.63o2,.48o4,.44

{(N) Features

Similarity

Image

(M)

Imag

es

Scoring Table

A monotone scoring function: 5

1

( )n

i ijj

Score o o

Page 6: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)6

Top-k Queries: Now

• New System Model: Wireless Sensor Networks, Peer-to-Peer Networks, Vehicular Networks, etc. feature a graph communication structure.

• New Queries (Examples from Sensor Networks): – Snapshot Query: Find the K nodes with the highest temperature

values.– Continuous Query: For the next one hour continuously report

the K rooms with the highest average temperature– Historic Query (nodes store all data locally): Find the K nodes

with the highest average temperature during the last 6 months

Base Station

In-Network Top-k Query Processing

Page 7: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)7

Top-k Queries Now: Another Example• Assume a cluster of n=5 WebServers (features)• Each server maintains locally a replica of the

same m=5 static WebPages (objects)• When a web page is accessed by a client, the

respective server increases a local hit counter by one

v1 v2 v3 v4 v5

http://www.amazon.com/

TOP-1 Query: “Find the webpage with the highest number of hits across all servers”

client

Hits++

7

v1 v2 v3 v4 v5o1,.91o3,.90o0,.61o4,.07o2,.01

o1,.92o3,.75o4,.70o2,.16o0,.01

o3,.74o1,.56o2,.56o0,.28o4,.19

o3,.67o4,.67o1,.58o2,.54o0,.35

TOP-1

o3,4.05/5=.81o1,3.63/5=.73o4,2.07/5=.41o0,1.88/5=.32o2,1.75/5=.29

o3,4.05/5=.81o3,.99o1,.66o0,.63o2,.48o4,.44

{(N) WebServers

HitsPageID

(M)

Web

Pag

es

Scoring Table

Page 8: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)8

Presentation OutlineA. Introduction

B. Centralized Top-K Query Processing• The Threshold Algorithm (TA)

C. Distributed Top-K Query Processing with Exact Scores

• The Threshold Join Algorithm (TJA)• Experimentation using 75 workstations

D. Distributed Top-K Query Processing with Score Bounds

• The UB-K and UBLB-K Algorithms

Page 9: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)9

Centralized Top-K Query Processing

Fagin’s* Threshold Algorithm (TA): (In ACM PODS’02) * Concurrently developed by 3 groupsThe most widely recognized algorithm for Top-K Query Processing in database systems

ΤΑ Algorithm1) Access the n lists in parallel.2) While some object oi is seen, perform a random access to the other lists to find the complete score for oi. 3) Do the same for all objects in the current row.4) Now compute the threshold τ as the sum of scores in the current row.5)The algorithm stops after K objects have been found with a score above τ.

v1 v2 v3 v4 v5o1, 91o3, 90o0, 61o4, 07o2, 01

o1, 92o3, 75o4, 70o2, 16o0, 01

o3, 74o1, 56o2, 56o0, 28o4, 19

o3, 67o4, 67o1, 58o2, 54o0, 35

o3, 99o1, 66o0, 63o2, 48o4, 44

Page 10: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)

Centralized Top-K: The TA Algorithm (Example)

o3,4.05/5=.81

v1 v2 v3 v4 v5o3, 99o1, 66o0, 63o2, 48o4, 44

o1, 91o3, 90o0, 61o4, 07o2, 01

o1, 92o3, 75o4, 70o2, 16o0, 01

o3, 74o1, 56o2, 56o0, 28o4, 19

o3, 67o4, 67o1, 58o2, 54o0, 35

TOP-K

Have we found K=1 objects with a score above τ? => ΝΟ

Have we found K=1 objects with a score above τ? => YES!

Iteration 1 Thresholdτ = 99 + 91 + 92 + 74 + 67 => τ = 423

Iteration 2 Thresholdτ (2nd row)= 66 + 90 + 75 + 56 + 67 => τ = 354

O3, 405O1, 363O4, 207

Why is the threshold correct? It gives us the maximum score for the objects we have not seen yet (<= τ)

10

Page 11: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)11

Presentation OutlineA. Introduction

B. Centralized Top-K Query Processing• The Threshold Algorithm (TA)

C. Distributed Top-K Query Processing with Exact Scores

• The Threshold Join Algorithm (TJA)• Experimentation using 75 workstations

D. Distributed Top-K Query Processing with Score Bounds

• The UB-K and UBLB-K Algorithms

Page 12: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)12

Distributed Top-K Query Processing

• The base relation is vertically fragmented across the network.

• Centralized algorithms require several iterations to complete (recall TA) and each iteration introduces additional latency and messaging.

• Distributed Setting:

v5o3, 67o4, 67o1, 58o2, 54o0, 35

v3o1, 92o3, 75o4, 70o2, 16o0, 01

Query Processor

v4o3, 74o1, 56o2, 56o0, 28o4, 19

v2o1, 91o3, 90o0, 61o4, 07o2, 01

v1o3, 99o1, 66o0, 63o2, 48o4, 44

Page 13: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)13

Centralized Join Algorithm (CJA)Main Idea• Collect all possible tuples at the sink and then

discard the tuples in excess (to the parameter k).

o3, 67o4, 67o1, 58o2, 54o0, 35

v1

v3

v2

v4

v5

TOP-1

5:4:

5:

3:

5:4:

3:2:

5:4:3:2:1:

1,2,3,4,5Advantages• Can complete in only one

acquisition round.

Disadvantages• Overwhelming amount of

messages!• Huge Query Response Time.

Page 14: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)14

The Staged Join Algorithm (SJA)

• Improved Solution: Aggregate the lists before these are forwarded to the parent:

• This is referred to as the In-network aggregation approach

• Advantage: Only O(n) messages• Disadvantage: The size of each

message is still very large in size (i.e., the complete list)

v1

v3

v2

v4

v5

5:

3:

2,3,4,5:

4,5:

TOP-1

1,2,3,4,5

1,2,3,4,5

2,3 4,5

4 5

o3, 67o4, 67o1, 58o2, 54o0, 35

o3, 74o1, 56o2, 56o0, 28o4, 19

Page 15: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)15

Threshold Join Algorithm (TJA)• TJA is our 3-phase algorithm that

optimizes top-k query execution in distributed (hierarchical) environments.

• Advantage:– It usually completes in 2 phases.– It never completes in more than 3 phases

(LB Phase, HJ Phase and CL Phase)– It is therefore highly appropriate for distributed

environments• “The Threshold Join Algorithm for Top-k Queries in Distributed Sensor Networks", D. Zeinalipour-Yazti et. al, In VLDB’s DMSN’05.• “Finding the K Highest-Ranked Answers in a Distributed Network”, D. Zeinalipour-Yazti et. al, Computer Networks, Elsevier, 2008.

Page 16: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)16

Step 1 - LB (Lower Bound) Phase• Recursively send the K

highest objectIDs of each node to the sink.

• Each intermediate node performs a union of the received results (defined as τ)

v1

v3

v2

v4

v5

5:

3:

2,3,4,5:

TJA1) LB Phase

4,5:

4U5

2,3U4,5

U

1

1,2,3,4,5Ltotal{1,3}

Occupied Oij

Empty Oij

v1 v2 v3 v4 v5o3, 99o1, 66o0, 63o2, 48o4, 44

o1, 91o3, 90o0, 61o4, 07o2, 01

o1, 92o3, 75o4, 70o2, 16o0, 01

o3, 74o1, 56o2, 56o0, 28o4, 19

o3, 67o4, 67o1, 58o2, 54o0, 35

LB

{o3, o1}

Query: TOP-1

Τ=

Page 17: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)17

Step 2 – HJ (Hierarchical Join) Phase• Disseminate τ to all nodes • Each node sends back all

objects with score above the objectIDs in τ

• Before sending the objects, each node tags as incomplete, scores that could not be computed exactly

TJA2) HJ Phase

v1

v3

v2

v4

v5

5:

3:

2,3,4,5:

4,5:

4 5

2,3 4,5

1,2,3,4,5Rtotal{1,3,4}

Occupied Oij

Empty Oij

Incomplete Oij

U+

U+

U+

o3, 405o1, 363o4',354

v1 v2 v3 v4 v5o3, 99o1, 66o0, 63o2, 48o4, 44

o1, 91o3, 90o0, 61o4, 07o2, 01

o1, 92o3, 75o4, 70o2, 16o0, 01

o3, 74o1, 56o2, 56o0, 28o4,19

o3, 67o4, 67o1, 58o2, 54o0, 35

HJ

} Complete

Incomplete

Page 18: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)18

Step 3 – CL (Cleanup) Phase

• Have we found K objects with a complete score that is above all incomplete scores?

– Yes: The answer has been found!– No: Find the complete score for each

incomplete object (all in a single batch phase)

• CL ensures correctness

• This phase is rarely required in practice!

Page 19: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)19

Experimental Evaluation• Setup: Trace-Driven Experimentation• Testbed: Java Middleware deployed over 1000

nodes on 75 Linux workstations.• Dataset: Environmental Measurements from 32

atmospheric monitoring stations in Washington & Oregon. (2003-2004)

• Query: Find the K timestamps on which the average temperature across all stations was maximum.

• Evaluation Criteria: i) Bytes, ii) Time, iii) Messages

• Various Failure Rates: 0%, 10%, 20% and 30%, Net Diameter=10, Node Degree=4.

Page 20: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)20

Experimental Evaluation

TJA requires one order of magnitude less bytes than CJA and SJA!

Page 21: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)21

Experimental Evaluation

TJA: 3.7sec [ LB:1.0sec, HJ:2.7sec, CL:0.08sec ] SJA: 8.2sec CJA: 18.6sec

Page 22: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)22

Experimental Evaluation

259

183

246

Although TJA consumes more messages than SJA and CJA, these are small-size messages

Page 23: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)23

Presentation OutlineA. Introduction

B. Centralized Top-K Query Processing• The Threshold Algorithm (TA)

C. Distributed Top-K Query Processing with Exact Scores

• The Threshold Join Algorithm (TJA)• Experimentation using 75 workstations

D. Distributed Top-K Query Processing with Score Bounds

• The UB-K and UBLB-K Algorithms

Page 24: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)

Score Bounds: Problem Overview • Now suppose that each node can only return

Lower/Upper Bounds rather than Exact scores.• e.g., instead of 16 it returns [11..19]

A2,3,6A0,4,8A4,5,10A7,7,9A3,8,11A9,8,9

....

A4,10,18A2,13,19A0,15,25A3,20,27A9,22,26A7,30,35

....

m

A4,4,5A2,5,6A0,5,7A3,5,6A9,8,10A7,12,13

....

A4,1,3A0,6,10A2,5,7A9,6,7A3,7,10A7,11,13

....

id,lb,ubv3

id,lb,ubv2

id,lb,ubv1

id,lb,ubMETADATA

n

24

• Let us now study an application of a Score Bound Table in the context of Distributed Spatio-Temporal Similarity Search….

Score Bound Table

Page 25: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)25

Score Bounds: Problem Overview • Distributed Spatio-Temporal Similarity Search: Given a

query Q, find the degree of similarity between Q and a set of m target trajectories {A1,A2,…,Am}.

• Each Αi (i<=m) is segmented into a number of non-overlapping cells {C1,C2,…,Cn} that maintain the local subsequences.

• Challenge: How can we find the K most similar trajectories to Q without pulling together all subsequences

G

trajectories

A2

A1

x

y

cell

Access Pointmoving object

Q"Distributed Spatio-Temporal Similarity Search”, D. Zeinalipour-Yazti, S. Lin, D. Gunopulos, ACM 15th Conference on Information and Knowledge Management, (ACM CIKM 2006), November 6-11, Arlington, VA, USA, pp.14-23, August 2006.

Page 26: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)26

Score Bounds: Problem Overview

Page 27: Distributed Top-K Ranking Algorithms

27

Score Bounds: Problem Overview

A. Euclidean MatchingThe trajectories are matched 1:1

Longest Common SubSequence (LCSS) MatchingCopes with out-of-phase matches and outliers (it ignores them)

Cell 1 Cell 2 Cell 3 Cell 4

Problem with Vertical Fragmentation: The matching might happen at the boundary of neighboring cells.

A

B

Out-of-phase matching

outlier

Page 28: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)28

Score Bounds: Problem Overview • Each cell computes a lower bound and an upper

bound on the matching of Q to its local subsequences.• The distributed scoring table now contains score

bounds (lower,upper) rather than exact scores.

• We have proposed two iterative algorithms: UB-K and UBLB-K, which combine these score bounds to derive the K most similar trajectories to Q without pulling together ALL distributed subsequences.

A7,29,35A3,21,27A9,20,26A0,19,25A2,13,19A4,12,18

....

A2,4,6A0,6,8A4,8,10A7,7,9A3,9,11A9,7,9

....

A4,3,5A2,4,6A0,5,7A3,4,6A9,8,10A7,11,13

....

A4,1,3A0,8,10A2,5,7A9,5,7A3,8,10A7,11,13

....

id,lb,ubc3

id,lb,ubc2

id,lb,ubc1

id,ubMETADATA

++

=

Page 29: Distributed Top-K Ranking Algorithms

29

The UB-K Algorithm• An iterative algorithm to find the K most similar trajectories to Q.• Characteristics

– Phases: Iterative– Scores: Approximate– Result: Exact– Query: Snapshot

• Main Idea: Utilize the upper bounds in the METADATA table to minimize the transfer of DATA.

Q

DATAA7,29,35

A3,27A9,26A0,25A2,19A4,18

....

id,ubMETADATA

Page 30: Distributed Top-K Ranking Algorithms

30

UB-K Execution

A4,30A2,27A0,25A3,20A9,18A7,12....

id,lbid,ub

A4,23A2,22A0,16A3,18A9,15A7,10....

DATAMETADATA

UB EXACT

Query: Find the K=2 most similar trajectories to Q

2K+1

≥?K+1

Q

A4

LCSS(Q,A4)=23

Retrieve the sequences A4,

A2

Stop if

Kth Exact

>=

Smallest UB

>Kth Exact Score

23

22

K=2

Page 31: Distributed Top-K Ranking Algorithms

31

The UBLB-K AlgorithmAlso an iterative algorithm with the same objectives as UB-K

Characteristics• Phases: Iterative• Scores: Approximate• Result: Exact• Query: Snapshot

Differences: • Utilizes both an upper-bound and a lower bound on

the LCSS matching to derive the top-k result-set.• Transfers the DATA in a final bulk step rather than

incrementally (by utilizing the LBs)

Page 32: Distributed Top-K Ranking Algorithms

32

A4,22,30A2,21,27A0,15,25A3,13,20A9,14,18A7,10,12

....

id,lbid,lb,ub

METADATA

Exact Score

LB,UB

A4,23A2,22A0,16A3,18A9,15A7,10....

DATA

EXACT

Note: Since the Kth LB 21 >= 20, anything below this UB is not retrieved in the final phase!

K+1≥?

UBLB-K ExecutionQuery: Find the K=2 most similar trajectories to Q

2K+1

≥?

Stop if

Kth LB

>=

Smallest UB

K=2

Kth-LB

Q

A4

LCSS(Q,A4)=23

Page 33: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)33

Final Remarks• I have presented the concepts behind popular

Top-k query processing algorithms in centralized and distributed settings.

• I have also presented a variety of algorithms that we have developed in order to support this new era of distributed databases.

• Top-K Query Processing is a new area with many new challenges and opportunities!

• We are working on applying this technology in new application areas, e.g.:“FailRank: Towards a Unified Grid Failure Monitoring and Ranking System”, with UCY (Cyprus) and ICS/Forth (Crete, Greece), ZIB (Germany)

Page 34: Distributed Top-K Ranking Algorithms

34

Distributed Top-K Ranking Algorithms

Thank you!Demetris Zeinalipour

This presentation is available at:http://www2.cs.ucy.ac.cy/~dzeina/talks.html

Related Publications available at:http://www2.cs.ucy.ac.cy/~dzeina/publications.html

Page 35: Distributed Top-K Ranking Algorithms

Backup Slides

Page 36: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)36

ΜΙΝT-View Framework

• ΜΙΝΤ : a framework for optimizing the execution of continuous monitoring queries in sensor networks.

• "MINT Views: Materialized In-Network Top-k Views in Sensor Networks"

D. Zeinalipour-Yazti, P. Andreou, P. Chrysanthis and G. Samaras, In IEEE 8th International Conference on Mobile Data Management, Mannheim, Germany, May 7 – 11, 2007

Query: Find the K=1 rooms with the highest average temperature

Page 37: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)37

ΜΙΝΤ Views: ProblemObjective: To prune away tuples locally at each sensor such that messaging is minimized.

Naïve Solution: Each node eliminates any tuple with a score lower than its top-1 result.

D,76.5C,75B,41

(B,40)Problem:

We received a incorrect answer i.e., (D,76.5) instead of (C,75).

Page 38: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)38

ΜΙΝΤ Views: Main Idea• Bound above each tuple with its maximum possible value.• K-covered Bound-set : Includes all the objects which

have an upper bound (vub) greater or equal to the kth highest lower bound (τ), i.e., vub > τ

vubvlbτ sum

Page 39: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)39

ΜΙΝΤ Views: Experimentation• We obtained a real trace of atmospheric data collected by

UC-Berkeley on the Great Duck Island (Maine) in 2002.• We then performed a trace-driven experimentation using

XBows TELOSB sensor.• Our query was as follows:

– SELECT TOP-K area, Avg(temp)– FROM sensors– GROUP BY area

0%

39%

77%

34%

12%

Page 40: Distributed Top-K Ranking Algorithms

40

Experimental Evaluation• Comparison System

– Centralized– UB-K– UBLB-K

• Evaluation Metrics– Bytes– Response Time

• Data– 25,000 trajectories generated over the road

network of the Oldenburg city using the Network Based Generator of Moving Objects*.

* Brinkhoff T., “A Framework for Generating Network-Based Moving Objects”. In GeoInformatica,6(2), 2002.

Page 41: Distributed Top-K Ranking Algorithms

41

Performance Evaluation

• Remarks– Bytes: UBK/UBLBK transfers 2-3 orders of magnitudes fewer bytes

than Centralized.

• Also, UBK completes in 1-3 iterations while UBLBK requires 2-6 iterations (this is due to the LBs, UBs).

– Time: UBK/UBLBK 2 orders of magnitude less time.

100ΜΒ

100ΚΒ

16min

4 sec

Page 42: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)42

The TPUT Algorithm

v1 v2 v3 v4 v5o3, 99o1, 66o0, 63o2, 48o4, 44

o1, 91o3, 90o0, 61o4, 07o2, 01

o1, 92o3, 75o4, 70o2, 16o0, 01

o3, 74o1, 56o2, 56o0, 28o4, 19

o3, 67o4, 67o1, 58o2, 54o0, 35

P1 P2 P3

TOP-1

Phase 1 : o1 = 91+92 = 183, o3 = 99+67+74 = 240

τ = (Kth highest score (partial) / n) => 240 / 5 => τ = 48

Phase 2 : Have we computed K exact scores ?

Computed Exactly: [o3, o1] Incompletely Computed: [o4,o2,o0]

Drawback: The threshold is uniform (too coarse)

Q: TOP-1

o1=183, o3=240o3=405o1=363o2’=158o4’=137o0’=124

Page 43: Distributed Top-K Ranking Algorithms

Demetris Zeinalipour (Open University of Cyprus)43

TJA vs. TPUT