1 / 32

Class-constrained Resource Allocation Problems

Class-constrained Resource Allocation Problems. Tami Tamir Thesis advisor: Hadas Shachnai. A Resource Allocation Problem:. Devices: Each device has a limited amount of some resource. - A disk with a limited broadcast capacity. - A processor with specific rate.

Download Presentation

Class-constrained Resource Allocation Problems

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Class-constrained Resource Allocation Problems Tami TamirThesis advisor:Hadas Shachnai

  2. A Resource Allocation Problem: Devices:Each device has a limited amount of some resource. - A disk with a limited broadcast capacity. - A processor with specific rate. - A machine with a limited amount of material. Clients:that present requests for resources. - Transmission of some video-program file. - Processing of a job that needs sprocessing units. - Production of a product that needs s units of the material.

  3. devices clients The Multiple Knapsack Problem (MK) • A set of N knapsacks, K1,...,KN. Each knapsack, Kj, has limited volume, vj. • A set, I, of n items, u1,...,un. Each item, uI, has a size, s(u), and a value, p(u). • The objective: A legal placement of some U  I with maximal value. • Legal = For all j, the total size of items placed in Kj is at most vj.

  4. 2 1 3 1 1 4 4 3 2 2 3 3 4 3 3 3 3 3 An Example (MK)For all u, p(u) = s(u). v=8 n=6 Optimal value = 16

  5. A Class-constrained A Resource Allocation Problem: Devices:Each device has a limited amount of some resource, - A disk with a limited broadcast capacity, - A processor with a specific rate, Clients:that present requests for resources, - Transmission of a video-program file. - Processing of a job that needs uprocessing units. and a limited number of ‘settings’. and a limited storage capacity. and a limited number of configurations. and need specific ‘settings’. the video program file “Tom & Jerry” of type ‘red’ that needs sprocessing units.

  6. The Multiple Knapsack Problem (MK) The Class-constrained Multiple Knapsack Problem (CCMK) • A set of N knapsacks, K1,...,KN. Each knapsack, Kj, has limited volume, vj, • A set, I, of n items, u1,...,un. Each item, u  I, has a size, s(u), and a value, p(u). • The objective: A legal placement of some U  I with maximal value. • Legal = For all j, the total size of items placed in Kj is at most vj, and a limited number,cj, of compartments. a value,p(u), and a type (color), c(u)  {1,…,M}. and the number of different colors included in Kj is at most cj.

  7. 1 4 3 2 3 3 2 3 1 4 3 2 3 4 3 3 3 An Example (CCMK)For all u, p(u) = s(u). v=8, c=2 n=6, M=3 Optimal value = 15

  8. Related Work • IP formulation of CCMK (Dawande and Kalagnanam, 1998) • A PTAS for MK (Chekuri and Khanna, 2000) • A dual PTAS for BP (Hochbaum and Shmoys, 1987, Epstein and Sgall, 1999) • Cardinality-constrained packing problems - when the number of items is limited (no types) (Kellerer and Pferschy, 1999; Caprara, Kellerer, Pferschy, and Pisinger, 2000) • Data placement (Golubchik, Khanna, Khuller, Thurimella, and Zhu, 2000).

  9. Related Work (Cont’) • Multi-dimensional packing problems: May seem related, but there is a crucial difference: In class-constrained packing - Each bin has the 2-dim size vj cj - Each item has the 2-dim size s(u): s(u)  1 if u is the first item of its color in Kj s(u)  0 otherwise s(u) =

  10. v = 8 c = 2 A Special Case: Unit-sized Items • When each client’s request is for one unit of some resource, then in the resulting packing problem each item, u  I, has size s(u)=1. 6 + 7 + 2 + 6 + 3 = 24 • An important application: Data Placement for Multimedia-on-demand Systems.

  11. Multimedia-on-Demand Systems • A centralized server. • A large database of video programs transmitted to clients. • Storage devices (disks). • The system has to “play” multiple streams of many different videos simultaneously, based on customer demand. • Read only,basically predictable requests. • Rigid real-time scheduling requirements. • Fixed transfer rate. • The Challenge: Balance the load on the disks.

  12. The I/O Subsystem • A database of M video-program files {f1, f2, …, fM} • N storage devices (shared disks) {d1, d2, ..., dN} • Each disk, dj,has: cj = Storage Capacity: the number of program files that can be stored on dj. vj= Load Capacity: the maximum number of concurrent multimedia streams that can be transmitted by dj.

  13. The I/O Subsystem (Cont’) The number of broadcasts allocated to each file must be determined by its popularity pi = the popularity of the file fi

  14. Maximizing the Throughput Given the file popularities, how many copies of each file should be kept?Where should we store each copy? How many broadcasts should be allocated to each of these copies?

  15. The Static Assignment • A Static Assignment Algorithm allocates the resources to the files. The output of a static assignment consists of two M  N matrices: • The Assignment matrix, A • a{0, 1} – matrix, • Aij =1 iff a copy of fi is stored on dj. • The Broadcast matrix, B • Bij {0, 1, ..., vj}. Bij is the number of broadcasts allocated to fi on dj.

  16. The Static Assignment (Cont’) A legal static assignment must satisfy the following conditions: 1.Aij = 0  Bij = 0 [A disk can broadcast a video program only if it holds the video program file]. 2.j, i Bij < vj [the sum of allocated broadcasts does not exceed the broadcast capacity of the disk]. 3.j, i Aij < cj [the number of copies stored on a disk does not exceed its storage capacity].

  17. Definitions • The broadcast potentialof the system is V = • The broadcast potential offi is Bi = • The broadcast request offi, denoted by Wi , is the desired number of broadcasts of fi . •  i ,pi V< Wi <pi V and

  18. The Goals • 1. Fairness: An assignment is -fair if for every • file fi, Bi> Wi • allocated required •  [0, 1] • 2.Utilization: The utilization of an assignment is • U =i min(Wi , Bi) • required allocated • U is the total number of broadcasts that may be required and provided. • A Perfect Assignment is both 1-fair and with • utilization V (i , Wi =Bi).

  19. B22=B23=20 B11= 60 d2: c2= 2 v2=40 d1: c1= 1 v1=60 Maximizing Fairness and Utilization f1: Pokemon p1 = 0.8 f2: Telletubies p2= 0.1 f3: The Flinstones p3= 0.1 Most Fair! V=100 W1 = 80, W2 = W3 = 10 B1= 60, B2= 20, B3= 20  3/4fair (60/80 for f1) ;  U = 60 + 10 + 10 = 80

  20. B12=B22=20 B11= 60 d2: c2= 2 v2=40 d1: c1= 1 v1=60 Maximizing Fairness and Utilization f1: Pokemon p1 = 0.8 f2: Telletubies p2= 0.1 f3: The Flinstones p3= 0.1 Most Utilized! V=100 W1 = 80, W2 = W3 = 10 B1= 80, B2= 20, B3= 0  0fair,  U = 80 + 10 + 0 = 90

  21. Our Results • The fair-allocation problem and the utilization problem are strongly NP-hard. • For some instances a perfect assignment always exists and can be found in polynomial time. • How a perfect assignment can be approximated (the approximation ratio depends on the uniformity of the disks). • The utilization problem can be solved optimally in polynomial time by adding a single storage unit to each disk (a dual approximation algorithm).

  22. 3 , 4 , 6 , 6 , 8 , 8 16 20 13 The Moving Window Algorithm The knapsacks are sorted such that v1/c1  v2/c2  vN/cN. The sets of items are sorted such that |I1|  |I2|   |IM|. To fill the knapsack Kj, scan the list of items with a moving window that covers items of cj colors, until for the first time the window contains at least vj items. vj=17 cj=3

  23. The Moving Window Algorithm We use the moving window algorithm to show: • When the knapsacks are homogenous (with identical v/c ratio) and cj  N+M-1, a perfect assignment always exists, and can be found efficiently. • If we are allowed to add a single compartment to each knapsack, then we can achieve the optimal utilization.

  24. 1 4 3 2 3 3 2 3 3 4 3 Back to General Instances…. where items may have arbitrary sizes and arbitrary profits v=8, c=2 n=6, M=3

  25. The Class-constrained Bin- Packing Problem (CCBP) • A set of Identical bins, each having volume v and c compartments. • A set, I, of items. Each item, u, has a size, s(u) < v, and a color, c(u)  1,...,M. • The goal: A legal placement of all the items in I in a minimal number of bins. In resource allocation terms, CCBP = complete all the requests using as few (identical) devices as possible.

  26. In resource allocation (examples): • A request to print a file of 600 pages, both yellow and pink papers are fine. • A request to watch a video-program-file, • any episode from Seinfeld will do. Generalized Class-constrained Packing (GCCP) • Each item, u  I, has a size, s(u), a value, p(u), and a set, c(u)  {1,...,M}, of colors. • It is legal to place u in any knapsack that allocates a compartment to some color in c(u).

  27. Our Results for General Instances • A dual PTAS for CCBP, (packs any instance, I, into m  OPT(I) bins of size (1+ )v ). • A PTAS for CCMK, (packs a set U  I such that P(U)  (1-)OPT(I)). • An FPTAS for the 0-1 class-constrained knapsack. - optimal when all the items have the same value. • APX-hardness proofs for GCCP (already for the case where all items have the same size and the same value). - For the PTASs we assume that M is a constant. - The FPTAS is suitable for M=(n). - In the APX-hardness proof M= (n).

  28. j,aj pj Scheduling With Machine Allotment and Parallelism Constraints • Each job, Jj, has : • a processing requirement, tj, • an allotment parameter, aj, • a parallelism parameter, pj. The execution of Jj can be shared by aj machines. At most pj machines can process it simultaneously. • Traditional scheduling problems: • No parallelism (pj=1), • Non-preemptive (aj = 1) or preemptive (aj=m).

  29. Our Results for the Scheduling Problem • Strongly NP-hard even for ‘easy’ instances: • identical machines, and j,aj=pj= c • identical jobs, and jaj  3m/2 (reductions from 3-partition) • Amaxj(1+1/pj)-approximation algorithm. (based on the moving window algorithm) • A PTAS for the case j,aj pj is a fixed constant.

  30. Results Relevant to Classic Scheduling Problems (pj=1). Known Results: • An optimal algorithm for j,aj = m. • Hardness proof forj,aj = 1. Our Results: • An optimal algorithm for identical machines and j,aj 3. • Hardness proof foruniform machines andj,aj =3. • An optimalalgorithm for uniform machines and j,aj 5.

  31. On-line Class-constrained Packing • The input is given as a sequence, , of items each having size 1 and color in {1,…,M}. • We need to pack the items upon arrival, without any knowledge on the subsequent items. • On-line CCBP: use as few bins to pack all the items in . • On-line CCMK: pack as many items from (arriving items may be rejected).

  32. Deterministic Algorithm for CCBP. • For a sequence, , of length n, let k = M/c -1 and h = n/v -1. • Sc,v(k,h) = the set of input sequences with k,h. • Lower Bound: For any deterministic algorithm, rd(Sc,v(k,h))  1+ (k+1- kc+1/v)/(h=1). (asymptotically, rd2) • This bound is achieved by first-fit. • Conclusion: An a-priori knowledge of n, M does not help.

More Related