Truthful job scheduling
Truthful job scheduling
- Truthful job scheduling** is a [[mechanism-design]] variant of the job shop scheduling problem from operations research.
We have a project composed of several "jobs" (tasks). There are several workers. Each worker can do any job, but for each worker it takes a different amount of time to complete each job. Our goal is to allocate jobs to workers such that the total makespan of the project is minimized. In the standard job shop scheduling problem, the timings of all workers are known, so we have a standard optimization problem. In contrast, in the truthful job scheduling problem, the timings of the workers are not known. We ask each worker how much time he needs to do each job, but, the workers might lie to us. Therefore, we have to give the workers an incentive to tell us their true timings by paying them a certain amount of money. The challenge is to design a payment mechanism which is incentive compatible.
The truthful job scheduling problem was introduced by Nisan and Ronen in their 1999 paper on algorithmic-mechanism-design.
Definitions There are <math>n</math> jobs and <math>m</math> workers ("m" stands for "machine", since the problem comes from scheduling jobs to computers). Worker <math>i</math> can do job <math>j</math> in time <math>T_{i,j}</math>. If worker <math>i</math> is assigned a set of jobs <math>J_i</math>, then he can execute them in time: :<math>T_i(J_i) = \sum_{j\in J_i} t_{i,j}</math>
Given an allocation <math>J_1,\dots,J_m</math> of jobs to workers, The makespan of a project is: :<math>MakeSpan(J_1,\dots,J_n) = \max_{i} {T_i(J_i)}</math>
An optimal allocation is an allocation of jobs to workers in which the makespan is minimized. The minimum makespan is denoted by <math>MinMakeSpan</math>.
A mechanism is a function that takes as input the matrix <math>T</math> (the time each worker needs to do each job) and returns as output: An allocation of jobs to workers, <math>J_1,\dots,J_n</math>; A payment to each worker, <math>p_1,\dots,p_n</math>.
The utility of worker <math>i</math>, under such mechanism, is: :<math>u_i = p_i - T_i(J_i)</math> I.e, the agent gains the payment, but loses the time that it spends in executing the tasks. Note that payment and time are measured in the same units (e.g., we can assume that the payments are in dollars and that each time-unit costs the worker one dollar).
A mechanism is called truthful (or incentive compatible) if every worker can attain a maximum utility by reporting his true timing vector (i.e., no worker has an incentive to lie about his timings).
The approximation factor of a mechanism is the largest ratio between <math>Makespan</math> and <math>MinMakespan</math> (smaller is better; an approximation factor of 1 means that the mechanism is optimal).
The research on truthful job scheduling aims to find upper (positive) and lower (negative) bounds on approximation factors of truthful mechanisms.
Positive bound – m – VCG mechanism The first solution that comes to mind is VCG mechanism, which is a generic truthful mechanism. A VCG mechanism can be used to minimize the sum of costs. Here, we can use VCG to find an allocation which minimizes the "make-total", defined as: :<math>MakeTotal(J_1,\dots,J_n) = \sum_{i} {T_i(J_i)}</math> Here, minimizing the sum can be done by simply allocating each job to the worker who needs the shortest time for that job. To keep the mechanism truthful, each worker that accepts a job is paid the second-shortest time for that job (like in a vickrey-auction).
Let OPT be an allocation which minimizes the makespan. Then: :<math>MakeSpan[VCG] \leq MakeTotal[VCG] \leq MakeTotal[OPT] \leq m\cdot MakeSpan[OPT]</math> (where the last inequality follows from the pigeonhole principle). Hence, the approximation factor of the VCG solution is at most <math>m</math> – the number of workers.
The following example shows that the approximation factor of the VCG solution can indeed be exactly <math>m</math>. Suppose there are <math>n=m</math> jobs and the timings of the workers are as follows: Worker 1 can do every job in time 1. The other workers can do every job in time <math>1+\epsilon</math>, where <math>\epsilon>0</math> is a small constant. Then, the VCG mechanism allocates all tasks to worker 1. Both the "make-total" and the makespan are <math>n=m</math>. But, when each job is assigned to a different worker, the makespan is <math>1+\epsilon</math>.
An approximation factor of <math>m</math> is not very good, and many researchers have tried to improve it over the following years.
On the other hand, there are some impossibility results that prove that the approximation factor cannot be too small.
Negative bound – 2 The approximation factor of every truthful deterministic mechanism is at least 2. prove that a scheduling algorithm is truthful if and only if it is monotone. This means that, if a machine reports a higher speed, and all other inputs remain the same, then the total processing time allocated to the machine weakly increases. For this problem:
- Auletta, De Prisco, Penna and Persiano presented a 4-approximation monotone algorithm, which runs in polytime when the number of machines is fixed.
- Ambrosio and Auletta proved that the Longest Processing Time algorithm is monotone whenever the machine speeds are powers of some c ≥ 2, but not when c ≤ 1.78. In contrast, List scheduling is not monotone for c > 2.
- Andelman, Azar and Sorani presented a 5-approximation monotone algorithm, which runs in polytime even when the number of machines is variable.
- Kovacz presented a 3-approximation monotone algorithm.