SlideShare a Scribd company logo
World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

On the Joint Optimization of Performance and
Power Consumption in Data Centers
Samee Ullah Khan and Cemal Ardil

International Science Index 32, 2009 waset.org/publications/9996745

Abstract—We model the process of a data center as a multiobjective problem of mapping independent tasks onto a set of data
center machines that simultaneously minimizes the energy consumption and response time (makespan) subject to the constraints of
deadlines and architectural requirements. A simple technique based
on multi-objective goal programming is proposed that guarantees
Pareto optimal solution with excellence in convergence process. The
proposed technique also is compared with other traditional approach.
The simulation results show that the proposed technique achieves
superior performance compared to the min-min heuristics, and competitive performance relative to the optimal solution implemented in
LINDO for small-scale problems.
Keywords—Energy-efficient
multi-objective optimization.

computing,

distributed

systems,

I. I NTRODUCTION
Data Centers are huge structures that house services for
customers. Owing to their structural services they are continuously demanded for increase in throughput and reduced
energy consumption. Energy-efficient techniques for managing
a system at runtime can bring down the amount of energy it
consumes. These management techniques are mostly for
• reducing the energy wasted by transitioning a system to
its sleep mode when it is idle and
• reducing the energy consumed by slowing down the
system during lean (but not idle) periods.
The former technique is called Dynamic Power Management
(DPM) [9], while the latter is called Dynamic Voltage Scaling
(DVS) [12] (or Speed Scaling in the more theoretical literature [2]).
DPM considers a system (in the simplest case a processor)
that can be in one of the two states, which we call the active
state and the sleep state. The system can handle requests only
in its active state, but the active state consumes far more energy
per unit time compared to the sleep state. However, when a
request arrives while the system is in the sleep state, it must
“wake up” and assume the active state before the request can
be served. This transition from sleep to active state has a high
transition cost, and is not a favorable approach undertaken by
researches and vendors [4].
DVS on the other hand, seeks to exploit the convex relationship between the CPU supply voltage (that impacts the
speed of execution) and the power consumption. The power
consumption in CMOS circuits is given by P = V 2 ×
f × CEF F , where V , f , and CEF F are the supply voltage,
S. U. Khan is with Department of Electrical and Computer Engineering, North Dakota State University, Fargo, ND 58108, E-mail:
samee.khan@ndsu.edu.
C. Ardil is with the National Academy of Aviation, Baku, Azerbaijan, Email: cemalardil@gmail.com

clock frequency, and effective switched capacitance of the
circuits, respectively. Moreover, we also know that the time to
finish an operation is inversely proportional to the frequency.
Furthermore, power is the rate at which energy is consumed.
Therefore, the energy per operation is proportional to V 2 ,
which implies that lowering the supply voltage quadratically
decreases the energy. However, lowering the supply voltage
reduces the maximum allowable clock speed (or frequency) in
an approximately linear manner. This leads us to the cube rule
in CMOS circuits which states that the instantaneous power
is roughly proportional to the clock speed cubed. The main
objective, therefore, is to keep the supply voltage (or clock
speed) as low as possible so that the power consumption
is minimal, but without compromising QoS measures [22].
In this paper, we will investigate the joint optimization of
energy consumption and response time. Because response
time improves whence the makespan improves, we must use
makespan as the primary criteria to determine improvement
in response time. Moreover, because power is simply the
rate at which energy is consumed, we must optimize the
instantaneous power.
The remainder of this paper is organized as following.
The system model and problem formulation are discussed
in Section 2. Section 3 provides some essential information
pertaining to goal programming and details our proposed
approach. Simulation results and related work are provided
in Sections 4 and 5, respectively. Finally, in Section 6, we
summarize our investigation.
II. S YSTEM M ODEL AND P ROBLEM D ESCRIPTION
A. The System Model
Consider a data center comprising of a set of machines,
M = {m1 , m2 , · · · , mm }. Assume that each machine is
equipped with a DVS module and is characterized by:
1) The frequency of the CPU, fj , given in cycles per unit
min
time. With the help of a DVS, fj can vary from fj
max
min
max
to fj
, where 0 < fj
< fj . From frequency,
it is easy to obtain the speed of the CPU, Sj , which
is approximately proportional to the frequency of the
machine [14], [23].
2) The specific machine architecture, A(mj ). The architecture would include the type of CPU, bus types, and
speeds in GHz, I/O, and memory in bytes.
Consider a metatask, T = {t1 , t2 , · · · , tn }. Each task is
characterized by:
1) The computational cycles, ci , that it needs to complete.
The assumption here is that the ci is known a priori.

48
International Science Index 32, 2009 waset.org/publications/9996745

World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

2) The specific machine architecture, A(ti ), that it needs
to complete its execution.
3) The deadline, di , before it has to complete its execution.
Moreover, we also assume that the metatask, T , also has
a deadline, D, which is met if and only if the deadlines
of all its tasks are met.
The number of computational cycles required by ti to
execute on mj is assumed to be a finite positive number,
denoted by cij . The execution time of ti under a constant
t
speed Sij , given in cycles per second is cij = Sij . For the
ij
associated data and instructions of a task, we assume that the
processor always retrieves it from the level-1 (primary) data
cache. A task, ti , when executed on machine mj draws, pij
amount of instantaneous power. Lowering the instantaneous
power will lower the CPU frequency and consequently will
decrease the speed of the CPU and hence cause ti to possibly
miss its deadline.
The architectural requirements of each task are recorded as
a tuple with each element bearing a specific requirement. We
assume that the mapping of architectural requirements is a
Boolean operation. That is, the architectural mapping is only
fulfilled when all of the architectural constraints are satisfied,
otherwise not.
B. Problem Formulating
Find the task to machine mapping, where the cumulative
instantaneous power consumed by the data center, M and the
makespan of the metatask, T , is minimized.
Mathematically, we can say
⎛
⎞
n

minimize ⎝

n

m

pij xij and max
i=1 j=1

j

tij xij ⎠

(1)

i=1

subject to xij ∈ {0, 1},

(5)

(tij xij ≤ di ) = 1|xij = 1.

(6)

Goal programming implicitly assumes that a desired goal
is obtainable that can be used during each of the iteration of
the solution convergence process through some high-level intervention [24]. The information attainable during each of the
iteration is the current best compromise solution, referred to as
the Main Solution (MS), and a set of Possible Solutions (PS)
that are the compromise solutions obtainable if each of the
goals are satisfied serially [10]. Iteratively, goal programming,
identifies non-inferior solutions and refines them to achieve
the best possible compromise solution. An iteration can be
classified as a two-step calculation and evaluation process.
During the calculation step the MS and PS are obtained, which
are analyzed to proceed towards a compromise solution during
the evaluation process. During the iterative process, if the
evaluation procedure determines that either the MS or the one
of the PS is the best compromise solution, then the procedure
terminates [11]. Below we describe a generalized procedure
for goal programming.
Let the multi-objective problem to be solved be

(4)

(tij xij ≤ di ) ∈ {0, 1},

A. A Generalized Goal Programming Procedure

(3)

tij xij ≤ di |xij = 1,

III. G OAL P ROGRAMMING

(2)

ti → mj ; ifA(ti ) = A(mj ) then xij = 1,

first, then make that as a constraint for the rest of the
objectives.
To optimize one objective first, then make that as a constraint for the other objectives, the only plausible framework
is when one can ensure that the objective functions have an
acceptable overlap [8]. Because, the multi-objective problem
(described in this paper) has the objectives of optimizing
instantaneous power and makespan that are are opposite to
each other, we must choose to optimize both the objectives
concurrently.

n
i=1

Constraint (2) is the mapping constraint. When xij = 1, a
task, ti , is mapped to machine, mj , and xij = 0 otherwise.
Constraint (3) elaborates on this mapping in conjunction to
the architectural requirements, and it states that a mapping
can only exists if the architecture is mapped. Constraint
(4) relates to the fulfillment of the deadline of each task,
and constraint (5) tells us about the Boolean relationship
between the deadline and the actual time of execution of the
tasks. Constraint (6) relates to the deadline constraints of the
metatask that will hold if all of the deadlines of the tasks, di ,
are satisfied.
The above problem formulation is in a form of multiobjective optimization problem. In the literature, there are two
standard ways to tackle such multi-objective problems: (a)
optimize objectives concurrently or (b) optimize one objective

min (f1 (x), f2 (x), · · · , f (k (x)) ,

(7)

such that gj (x) ≤ 0, i = 1, 2, · · · , m,
where x is an n dimensional decision variable vector. The
following steps must be present for a generalized goal programming approach.
Step 0: Determine fi∗ and f∗i , as
1) min fi (x) such that g(x) ≤ 0.
The solution to the above, referred to as x∗i and f∗i is
known as the ideal solution [11]. Let fij = fi (x), then
2) fi∗ = maxj fji .
The functions fi∗ and f∗i provide the upper and lower
bounds on the objective function values, respectively. Such
values are important to guide the solution towards the desirable compromise solution. Moreover, they also determine the
feasibility of the solution space.
Step 1: Set initial goals, b = {b1 , b2 , · · · , k}. As mentioned
previously a high-level intervention must determine a desirable
goal for each and every objective function. However, one can
approximate these goals by determine the necessary and sufficient conditions of optimality — the Kuhn-Tucker conditions.
It should be clear that f∗i < bi ≤ fi∗ .

49
World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

Input: T and M .
Output: Task to machine mapping.
Initialize: ∀j, DVSj is set to the highest level.
while T = ∅ do
I ← argmini (di ) foreach mj ∈ M do
if A(tI ) = A(mj ) then
M ← M ∪ mj ;
end
if M = ∅ then
EXIT;
end
end
foreach mj ∈ M do
ΔIj ← dI − tIj ;
if ΔIj > 0 then
Δ ← Δ ∪ ΔIj ;
end
end
if Δ = ∅ then
foreach mj ∈ M do
Reset DVSj to the highest level;
ΔIj ← dI − tIj ;
if ΔIj > 0 then
Δ ← Δ ∪ ΔIj ;
end
if Δ = ∅ then
EXIT;
end
end
end
J ← argminj (Δ);
while {tIJ xIJ ≤ dI |xIJ = 1} do
Reduce DVSJ by one level;
end
i ← I;
j ← J;
xij ← 1;
T ← T − {ti };
end
Algorithm 1: The goal programming based task to machine
mapping technique (GP).

Step 2: Solve for MS.
min a =
i

d−
i

−d+
i

,
i

,

(8)

such that g(x) ≤ 0,
fi (x) + wi × d− − wi × d+ = bi ,
i
i

(9)

d− × d+ = 0,
i
i
d− ≤ 1,
i
d− , d+ ≥ 0,
i
i

International Science Index 32, 2009 waset.org/publications/9996745

where wi = bi − f∗i . The optimization of the MS would
result in x0 and f 0 , which is known in the literature as the
core solution [11]. The weight w has been derived from a
normalizing scheme that makes the variation between f∗i and
bi equal to one. That is,
bi − f∗i
fi (x) − f∗i
+ d− − d∗ =
= 1,
i
i
bi − f∗i
bi − f∗i

(10)

where f∗i < bi ≤ fi∗ ; hence, we obtain the following
fi (x) + (bi − f∗i ) d− − (bi − f∗i ) d+ = bi ,
i
i

(11)

which is the same as (9) after substituting wi = bi − f∗i .
Moreover, the constraint d− ≤ 1 ensures that fi (x) does not
i
violate the lower bound, f∗i . Furthermore, the weights w have
the following two additional properties: (a) the value of the
weight is dynamically adjusted whence the value of a goal
alters in between an iteration, and (b) the weight increases
whence the value of goal decreases and vice versa.
Step 2: Solve for PS.
⎞
⎛⎛
⎞
d− ⎠ ,
i

min ar = ⎝⎝
i,r=i

i

−d+ ⎠ ,
i

(12)

such that g(x) ≤ 0,
fi (x) − wi × d+ = bi ,
i
fi (x) + wi × d− − wi × d+ = bi ,
i
i
d− × d+ = 0,
i
i
d− ≤ 1,
i
d− , d+ ≥ 0,
i
i
where wi = bi − f∗i . The optimization of the PS would result
in xr and f r , which is known in the literature as the achievable
solution [24].
The goal programming approach must iterate between steps
2 and 3 to arrive at a compromised solution. The question
that how does one obtain a proper weightage for an given
optimization problem is the topic of the subsequent section.
Moreover, by deriving the necessary and sufficient conditions
of optimality, one ensures that the optimization process is
convergent. Furthermore, the solution space is reduced only
to Pareto frontier [6].

B. Conditions of Optimality
Because we must have an upper bound on the power
consumption, we introduce power conservation conditions to
the set of constraints (2), (3), (4), (5), and (6).
n

m

pij ≤ P,

(13)

i=1 m=1

pij ≥ 0, i = 1, 2, · · · , n; j = 1, 2, · · · , m.

(14)

The power conservation condition of (13) states that the
instantaneous power allocated is bounded. That is, at any given
instance, the total power consumption of all of the machines
must be less than when all of the machines are running at their
peak power consumption. Clearly, the instantaneous power
consumption must be a positive number, as in (14). These
constraints make the multi-objective problem convex that in

50
World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

turn makes the optimization problem tractable [20]. Moreover,
because the instantaneous power regulates the time to complete
a task, it is sufficient to utilize power as the only tunable
variable to derive the conditions of optimality. Let α ≤ 0
and ηj ≤ 0 denote the Lagrange multipliers, and γj be the
gradient of the binding constraints [13]. Then, we can say
that the Lagrangian is

n

m

L(γj , α, ηj ) =

⎛

ln ⎝γj (α) − pij +

i=1 j=1

n

m

C. Goal Programming Based Technique (GP)

⎞
(γj − P )⎠

i=1 j=1
n

m

ηj (γj − pij ) .

+
i=1 j=1

International Science Index 32, 2009 waset.org/publications/9996745

The first-order Kuhn-Tucker conditions are given in (15) and
(16), with a constraint given in (17):
δL
−1
=
+ αηj = 0,
δγj
γj − pij
δL
=
δα

(15)

m

γj − P = 0,

(16)

j=1

γj − pij ≥ 0, ηj (γj − pij ) = 0, ηj ≤ 0.

(17)

If γj − pij = 0, then the current instantaneous power consumption is the best instantaneous power. If γj − pij > 0,
then ηj = 0. The solution (or the derivative) of (15) and (16)
is given in (18) and (19), respectively.
1
− α = 0,
γj − pij

(18)

m

γj = P.

(19)

j=1

It then follows that
γj =

P−

n
i=1

m
j=1

pij

P−

n
i=1

m
j=1

pij

.
(20)
m
Because γj by definition is the gradient of the binding constraints, we can replace γj with pij . That gives us
.
(21)
m
Now, for a specific machine j, the optimality must oscillate
between the instantaneous power consumed by machine j and
the rest of m−1 machines. Therefore, the following must hold
pij =

pij =

P−

n
i=1

∀ k∈M,k=j

pik

optimality are sufficient to consider only one single constraint
— instantaneous power. Utilizing both of the constraints would
have resulted in a similar conditions of optimality; however,
the derivation would have been complicated. In the next
section, we will outline our goal programming based task to
machine mapping technique.

.
(22)
m
The Kuhn-Tucker conditions verify the following: (a) The
non-inferior solutions form the Pareto frontier when the instantaneous power consumption of a machine j (that has mapped
a task) is below the peak power consumption of machine j.
(b) The goal is achieved whence machine j is operating on an
instantaneous power that is scaled as the m-th lowest power
consumption of machine j. It also is worth reporting that
due to the linearity relationship between power consumption
and the associated task completion time, the conditions of

We have all the necessary components to propose a goal programming based task to machine mapping technique, acronym
GP. The GP technique must take in as an input the sets M and
T with all machines initialized to their corresponding highest
level of DVS, and produce a task to machine mapping.
To derive an upper and lower bound on the desired goal
(corresponding to Step 0 of Section III-A), we must utilize
the earliest deadline first approach. This will ensure that
the classical claim by the earliest deadline first approach
is satisfied. That is, if T can be scheduled (by an optimal
algorithm) such that constraint (4) is satisfied, then the earliest
deadline first approach will schedule T such that constraint (6)
is satisfied. The earliest deadline first approach also will ensure
that the GP technique has a corresponding upper and lower
bound on instantaneous power consumption and makespan
given deadlines of the metatask. The corresponding bounds
will be dictated by the tightness of the associated deadlines.
That is, the tighter the deadline for a given task, the more
instantaneous power a mapped machine would consume, and
vice versa.
The Kuhn-Tucker conditions derived in Section III-B set the
initial goals corresponding to Step 1 of Section III-A. They are
not depicted in Algorithm 1 that describes the GP technique.
Instead, implicitly, Steps 2 and 3 guide the solution towards a
best possible compromise [21].
To develop a MS (corresponding to Step 2 of Section
III-A.), we must satisfy constraint (3). First, we limit our
solution space to only those machines, M, that can satisfy
the architectural constraint. To ensure a feasible MS, we must
identify machines that without altering their current DVS level
can finish the task within the specified deadline. Such an
assurance is also known as laxity [16]. A laxity set, Δ , is
constructed. Using Δ, we determine the best possible task to
machine mapping without any alteration to the DVS levels.
This is accomplished by picking the machine that exhibits the
minimum laxity. The MS is not complete until an optimum
level of DVS is determined. The DVS level of the chosen
machine j is lowered until constraint (4) is violated. This
ensures that the mapped task is running on a machine that can
fulfill all of the constraints and consuming an instantaneous
power that results in a compromised solution.
The MS will be stable as long as Δ can be constructed.
However, mapped tasks stack-up on machines, thereby reducing the laxity, and possibly to a level that Δ is empty. Once
that happens PS must be constructed corresponding to Step 3
of Section III-A. Because only set M can potentially satisfy
constraint (4), the PS must be from within M. To increase laxity, the machines must operate on their corresponding highest
speed levels (or highest DVS levels), respectively. These new

51
International Science Index 32, 2009 waset.org/publications/9996745

World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

DVS levels will pad (down) the stacked tasks on machines
to levels that can ensure that we have one feasible (positive)
laxity. (The pad down is achieved by running all the maped
tasks on the highest speed. This will lower the makespan;
hence ensuring a feasible laxity.) Set Δ is reconstructed and
the machine that ensures the minimum laxity is chosen as the
PS.
The GP heuristic as mandated in Section III-A oscillates
between MS and PS. A number of important conclusions also
can be deduced from the GP technique. Namely,
1) A feasible solution if it exists is always identified; otherwise the EXIT statements identify unfeasible solutions
based on constraint (3) or the laxity criterion.
2) If the algorithm maps all of the tasks on machines within
the MS construction, then the solution is the optimal.
Moreover, deadlines must be very loose. Furthermore,
the laxity must be very high.
3) If the algorithm constructs PS, then the solution is on
the Pareto frontier (definition of Kuhn-Tucker conditions
of Section III-B). Moreover, PS ensure that optimum
solution is identified (definition of PS, Section III-A).
Furthermore, PS revisits MS to rectify anomalies by
altering the corresponding DVS levels such that the
resultant is a feasible optimal compromise.
Finally, to ensure that the GP technique is tractable, we
analyze the termination time. It is easy to congregate that the
exact worst-case bound is O n2 log n + 3mn + mn log m .
Because it is assumed that m
n, the worst-case bound
reduces to O n2 log n .

(a) Makespan ratio over the optimal.

(b) Makespan ratio over the optimal.

IV. S IMULATIONS , R ESULTS , AND D ISCUSSION
We set forth two major goals for our simulation study:
(a) To measure and compare the performance of the proposed technique against the optimal solution and the min-min
heuristic [23]. (b) To measure the impact of system parameter
variations. Based on the size of the problems, the experiments
were divided in two parts.
For small size problems, we used an Integer Linear Programming tool called LINDO [19]. LINDO is useful to obtain
optimal solutions, provided the problem size is relatively
small. Hence for small problem sizes, the performance of the
proposed is compared against 1) the optimal solution using
LINDO and 2) the min-min heuristic. The LINDO implementation and the min-min heuristic do not consider power as
an optimization constraint; however, they are very effective
for the optimization of the makespan. Thus, the comparison
provides us with a wide range of results. On one extreme
we have the optimal algorithm, on the other a technique
which scales well with the corresponding increase in the
problem size. For large size problems, it becomes impractical
to compute the optimal solution by LINDO. Hence, we only
consider comparisons against the min-min heuristic.
The system heterogeneity is captured by the distribution of
the number of CPU cycles, cij , on different mj s. Let C denote
the matrix composed by cij . The C matrix was generated
using the coefficient of variation method described in [23].
The deadline, di , of task ti was generated using the method

(c) Makespan.

(d) Makespan.
Fig. 1.

52

Simulation results.
World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

described in [23]. For this study, we keep the architectural
affinity requirements confined to memory. (Adding other requirements such as, I/O, processor type, etc. will bear no affect
on our experimental setup or theoretical results.) Each machine
is assigned a memory on random from within the range [5005000] GB, while each task is associated a corresponding
memory requirement on random from within the range [20-50]
MB.

International Science Index 32, 2009 waset.org/publications/9996745

For small size problems, the number of machines was
fixed at 5, while the number of tasks varied from 20 to 40.
The number of DVS levels per machine was set to 4. The
frequencies of the machines were randomly mapped from
within the range [200MHz-2000MHz]. We assumed that the
potential difference of 1mV across a CMOS circuit generates
a frequency of 1MHz. For large size problems, the number of
machines was fixed at 16, while the number of tasks varied
from 1000 to 5000. The number of DVS levels per mj was
set to 8. Other parameters were the same as those for small
size problems.

(a) Power comsumption.

The experimental results for small size problems with K
equal to 1.5 and 1.0 are reported in Figs. 1(a) and 1(b). These
figures show the ratio of the makespan obtained from the two
techniques and the optimal. The plots clearly show that the GP
(proposed) technique performs extremely well and achieves a
performance level of 10%–15% of the optimal when K was
set at a very tight bound 1.0.
For large problem instances, first, we compare the makespan
identified by the min-min and the GP technique. Since the
min-min heuristic does not optimize power consumption, we
compared the min-min with a version of GP that ran on
full power and also compared it with the (original) version
that optimized power. Figs. 1(c) and 3(d) show the relative
performance of the techniques with various values of K, Vtask ,
and Vmach . The results indicate that GP outperforms the minmin technique in identifying a smaller makespan when power
is not considered as an optimization criteria. The performance
of GP is notably superior to the min-min technique when
the deadline constraints are relatively loose. It can also be
observed that GP, when considering power as an optimization
resource, identifies a task to machine mapping that produces
a makespan that is within 5%-10% of the min-min technique.
It was noticed that the relative performance of the min-min
technique was much better for large size problems, compared
with small size problems, because with the increase in the
size of the C matrix, the probability of obtaining larger values
of wis also increases. Moreover, the relative performance of
GP was also much better for large size problems, compared
with small size problems, because the DVS levels for the large
problem size are twice more than the DVS levels for the small
problem size.
Next, we compare the power consumption of both the
techniques. Figs. 2(a) and 2(b) reveal that on average the GP
technique utilizes 60%–65% less power as compared to the
min-min technique. That is a significant amount of savings
considering that the makespan identified by GP is within 5%–
10% of the makespan identified by the min-min technique.

(b) Power consumption.
Fig. 2.

Power consumption simulation results.

V. R ELATED W ORK
Most DPM techniques utilize instantaneous power management features supported by hardware. For example, Ref. [1]
extends the operating system’s power manager by an adaptive power manager (APM) that uses the processor’s DVS
capabilities to reduce or increase the CPU frequency, thereby
minimizing the overall energy consumption [3]. The DVS
technique at the processor-level together with a turn on/off
technique at the cluster-level to achieve high-power savings
while maintaining the response time is proposed in [18].
In [17], the authors introduce a scheme to concentrate the
workload on a limited number of servers in a cluster such that
the rest of the servers can remain switched-off for a longer
period of time.
While the closest techniques to combining device power
models to build a whole system has been presented in [5], our
approach aims at building a general framework for autonomic
power and performance management. Furthermore, while most
power management techniques are either heuristic-based approaches [7], [15] or stochastic optimization techniques [22],
we use goal programming to seek radically fast and efficient
solutions compared to the traditional approaches.
VI. C ONCLUSIONS
This paper presented an energy optimizing power-aware resource allocation strategy in data centers. A solution from goal
programming was proposed for this multi-objective problem.

53
World Academy of Science, Engineering and Technology
International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009

The solution quality of the proposed technique was compared
against the optimal for small-scale problems, and greedy and
linear relaxation heuristics for large-scale problems. The simulation results confirm superior performance of the proposed
scheme in terms of reduction in energy consumption and
makespan compared to the heuristics and the optimal solution
obtained using LINDO.

International Science Index 32, 2009 waset.org/publications/9996745

R EFERENCES
[1] T. F. Abdelzaher and C. Lu. Schedulability analysis and utilization bounds
for highly scalable real-time services. In 7th Real-Time Technology and
Applications Symposium, p. 15, 2001.
[2] N. Bansal, T. Kimbrel, and K. Pruhs. Dynamic speed scaling to manage
energy and temperature. In 45th Annual IEEE Symposium on Foundations
of Computer Science, pp. 520–529, 2004.
[3] R. Bianchini and R. Rajamony. Power and energy management for server
systems. IEEE Computer, 37(11):68–74, 2004.
[4] D. P. Bunde. Power-aware scheduling for makespan and flow. In 8th ACM
Symposium on Parallelism in Algorithms and Architectures, pp. 190–196,
2006.
[5] J. Chen, M. Dubois, and P. Stenstr¨ m. Simwattch: Integrating completeo
system and user-level performance and power simulators. IEEE Micro,
27(4):34–48, 2007.
[6] J. S. Dyer. Interactive goal programming. Operations Research, 19:62–
70, 1972.
[7] T. Heath, B. Diniz, E. V. Carrera, W. M. Jr., and R. Bianchini. Energy
conservation in heterogeneous server clusters. In 10th ACM SIGPLAN
Symposium on Principles and Practice of Parallel Programming, pp. 186–
195, 2005.
[8] C. L. Hwang and A. S. M. Masud. Multiple Objective Decision Making—
Methods and Applications: A State-pf-the-Art Survey. Springer Verlag,
berlin, 1979.
[9] S. Irani, R. Gupta, and S. Shukla. Competitive analysis of dynamic power
management strategies for systems with multiple power savings states. In
Conference on Design, Automation and test in Europe, p. 117, 2002.
[10] L. Li and K. K. Lai. A fuzzy approach to the multiobjective transportation problem. Computers and Operations Research, 27(1):43–57,
2000.
[11] T.-F. Liang. Fuzzy multi-objective production/distribution planning
decisions with multi-product and multi-time period in a supply chain.
Computers in Industrial Engineering, 55(3):676–694, 2008.
[12] J. R. Lorch and A. J. Smith. Improving dynamic voltage scaling algorithms with pace. In 2001 ACM SIGMETRICS International Conference
on Measurement and Modeling of Computer Systems, pp. 50–61, 2001.
[13] D. Luenberger. Linear and Nonlinear Programming. Addison-Wesley,
1984.
[14] P. Mejia-Alvarez, E. Levner, and D. Moss´ . Adaptive scheduling
e
server for power-aware real-time tasks. IEEE Transactions on Embedded
Computing Systems, 3(2):284–306, 2004.
[15] R. Nathuji, C. Isci, and E. Gorbatov. Exploiting platform heterogeneity
for power efficient data centers. In 4th International Conference on
Autonomic Computing, p. 5, 2007.
[16] P. A. Laplante. Real-Time System Design and Analysis. John Wiley &
Sons, 2004.
[17] E. Pinheiro, R. Bianchini, E. V. Carrera, and T. Heath. Load balancing
and unbalancing for power and performance in cluster-based systems. In
Workshop on Compilers and Operating Systems for Low Power, 2001.
[18] C. Rusu, A. Ferreira, C. Scordino, and A. Watson. Energy-efficient
real-time heterogeneous server clusters. In 12th IEEE Real-Time and
Embedded Technology and Applications Symposium, pp. 418–428, 2006.
[19] L. Schrage. Linear, Integer, and Quadratic Programming with LINDO.
Scientific Press, 1986.
[20] A. Stefanescu and M. Stefanescu. The arbitrated solution for multiobjective convex programming. Revue Roumaine de Mathematical Pures
et Appliquees, 29:593–598, 1984.
[21] J. Wallenius. Comparative evaluation of some interactive approaches to
multicriterion optimization. Management Sciences, 21:1387–1396, 1975.
[22] M. Weiser, B. Welch, A. Demers, and S. Shenker. Scheduling for
reduced cpu energy. In 1st USENIX conference on Operating Systems
Design and Implementation, p. 2, 1994.
[23] Y. Yu and V. K. Prasanna. Power-aware resource allocation for independent tasks in heterogeneous real-time systems. In 9th International
Conference on Parallel and Distributed Systems, p. 341, 2002.
[24] M. Zangiabadi and H. R. Maleki. Fuzzy goal programming for
multiobjective transportation problems. Journal of Applied Mathematical
Computing, 24(1):449–460, 2007.

54

More Related Content

What's hot

A vm scheduling algorithm for reducing power consumption of a virtual machine...
A vm scheduling algorithm for reducing power consumption of a virtual machine...A vm scheduling algorithm for reducing power consumption of a virtual machine...
A vm scheduling algorithm for reducing power consumption of a virtual machine...
eSAT Publishing House
 
D0212326
D0212326D0212326
ICC paper
ICC paperICC paper
ICC paperQi Chen
 
40120140507002
4012014050700240120140507002
40120140507002
IAEME Publication
 
Vol 3 No 1 - July 2013
Vol 3 No 1 - July 2013Vol 3 No 1 - July 2013
Vol 3 No 1 - July 2013
ijcsbi
 
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPINGTOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
ijdkp
 
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
ijcax
 
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
Nur Mohammad
 
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
IJORCS
 
Optimized Assignment of Independent Task for Improving Resources Performance ...
Optimized Assignment of Independent Task for Improving Resources Performance ...Optimized Assignment of Independent Task for Improving Resources Performance ...
Optimized Assignment of Independent Task for Improving Resources Performance ...
ijgca
 
https:::arxiv.org:pdf:2105.13813.pdf
https:::arxiv.org:pdf:2105.13813.pdfhttps:::arxiv.org:pdf:2105.13813.pdf
https:::arxiv.org:pdf:2105.13813.pdf
Ketson Roberto Maximiano dos Santos
 
F017423643
F017423643F017423643
F017423643
IOSR Journals
 
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
VLSICS Design
 

What's hot (15)

A vm scheduling algorithm for reducing power consumption of a virtual machine...
A vm scheduling algorithm for reducing power consumption of a virtual machine...A vm scheduling algorithm for reducing power consumption of a virtual machine...
A vm scheduling algorithm for reducing power consumption of a virtual machine...
 
D0212326
D0212326D0212326
D0212326
 
ICC paper
ICC paperICC paper
ICC paper
 
40120140507002
4012014050700240120140507002
40120140507002
 
Vol 3 No 1 - July 2013
Vol 3 No 1 - July 2013Vol 3 No 1 - July 2013
Vol 3 No 1 - July 2013
 
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPINGTOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
TOWARDS MORE ACCURATE CLUSTERING METHOD BY USING DYNAMIC TIME WARPING
 
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
 
E01113138
E01113138E01113138
E01113138
 
Final Report
Final ReportFinal Report
Final Report
 
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
Competitive Demand Response Trading in Electricity Markets: Aggregator and En...
 
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
 
Optimized Assignment of Independent Task for Improving Resources Performance ...
Optimized Assignment of Independent Task for Improving Resources Performance ...Optimized Assignment of Independent Task for Improving Resources Performance ...
Optimized Assignment of Independent Task for Improving Resources Performance ...
 
https:::arxiv.org:pdf:2105.13813.pdf
https:::arxiv.org:pdf:2105.13813.pdfhttps:::arxiv.org:pdf:2105.13813.pdf
https:::arxiv.org:pdf:2105.13813.pdf
 
F017423643
F017423643F017423643
F017423643
 
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
A MULTI-OBJECTIVE PERSPECTIVE FOR OPERATOR SCHEDULING USING FINEGRAINED DVS A...
 

Viewers also liked

The feedback-control-for-distributed-systems
The feedback-control-for-distributed-systemsThe feedback-control-for-distributed-systems
The feedback-control-for-distributed-systemsCemal Ardil
 
A frugal-bidding-procedurefor-replicating-www-content
A frugal-bidding-procedurefor-replicating-www-contentA frugal-bidding-procedurefor-replicating-www-content
A frugal-bidding-procedurefor-replicating-www-contentCemal Ardil
 
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniques
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniquesModel reduction-of-linear-systems-by conventional-and-evolutionary-techniques
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniquesCemal Ardil
 
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...Cemal Ardil
 
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-design
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-designReal coded-genetic-algorithm-for-robust-power-system-stabilizer-design
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-designCemal Ardil
 
A new-quantile-based-fuzzy-time-series-forecasting-model
A new-quantile-based-fuzzy-time-series-forecasting-modelA new-quantile-based-fuzzy-time-series-forecasting-model
A new-quantile-based-fuzzy-time-series-forecasting-modelCemal Ardil
 
Identification of-aircraft-gas-turbine-engine-s-temperature-condition
Identification of-aircraft-gas-turbine-engine-s-temperature-conditionIdentification of-aircraft-gas-turbine-engine-s-temperature-condition
Identification of-aircraft-gas-turbine-engine-s-temperature-conditionCemal Ardil
 
On the-optimal-number-of-smart-dust-particles
On the-optimal-number-of-smart-dust-particlesOn the-optimal-number-of-smart-dust-particles
On the-optimal-number-of-smart-dust-particlesCemal Ardil
 
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...Cemal Ardil
 
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-application
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-applicationAcute coronary-syndrome-prediction-using-data-mining-techniques--an-application
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-applicationCemal Ardil
 
Library aware-power-conscious-realization-of-complementary-boolean-functions-
Library aware-power-conscious-realization-of-complementary-boolean-functions-Library aware-power-conscious-realization-of-complementary-boolean-functions-
Library aware-power-conscious-realization-of-complementary-boolean-functions-Cemal Ardil
 
Sonic localization-cues-for-classrooms-a-structural-model-proposal
Sonic localization-cues-for-classrooms-a-structural-model-proposalSonic localization-cues-for-classrooms-a-structural-model-proposal
Sonic localization-cues-for-classrooms-a-structural-model-proposalCemal Ardil
 
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...Cemal Ardil
 
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...Cemal Ardil
 
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...Cemal Ardil
 
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systems
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systemsEvolutionary techniques-for-model-order-reduction-of-large-scale-linear-systems
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systemsCemal Ardil
 
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidents
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidentsMultivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidents
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidentsCemal Ardil
 
Interpolation of-geofield-parameters
Interpolation of-geofield-parametersInterpolation of-geofield-parameters
Interpolation of-geofield-parametersCemal Ardil
 
Automatic generation-control-of-interconnected-power-system-with-generation-r...
Automatic generation-control-of-interconnected-power-system-with-generation-r...Automatic generation-control-of-interconnected-power-system-with-generation-r...
Automatic generation-control-of-interconnected-power-system-with-generation-r...Cemal Ardil
 

Viewers also liked (19)

The feedback-control-for-distributed-systems
The feedback-control-for-distributed-systemsThe feedback-control-for-distributed-systems
The feedback-control-for-distributed-systems
 
A frugal-bidding-procedurefor-replicating-www-content
A frugal-bidding-procedurefor-replicating-www-contentA frugal-bidding-procedurefor-replicating-www-content
A frugal-bidding-procedurefor-replicating-www-content
 
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniques
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniquesModel reduction-of-linear-systems-by conventional-and-evolutionary-techniques
Model reduction-of-linear-systems-by conventional-and-evolutionary-techniques
 
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...
A fast-replica-placement-methodology-for-large-scale-distributed-computing-sy...
 
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-design
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-designReal coded-genetic-algorithm-for-robust-power-system-stabilizer-design
Real coded-genetic-algorithm-for-robust-power-system-stabilizer-design
 
A new-quantile-based-fuzzy-time-series-forecasting-model
A new-quantile-based-fuzzy-time-series-forecasting-modelA new-quantile-based-fuzzy-time-series-forecasting-model
A new-quantile-based-fuzzy-time-series-forecasting-model
 
Identification of-aircraft-gas-turbine-engine-s-temperature-condition
Identification of-aircraft-gas-turbine-engine-s-temperature-conditionIdentification of-aircraft-gas-turbine-engine-s-temperature-condition
Identification of-aircraft-gas-turbine-engine-s-temperature-condition
 
On the-optimal-number-of-smart-dust-particles
On the-optimal-number-of-smart-dust-particlesOn the-optimal-number-of-smart-dust-particles
On the-optimal-number-of-smart-dust-particles
 
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...
A neural-network-approach-in-predicting-the-blood-glucose-level-for-diabetic-...
 
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-application
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-applicationAcute coronary-syndrome-prediction-using-data-mining-techniques--an-application
Acute coronary-syndrome-prediction-using-data-mining-techniques--an-application
 
Library aware-power-conscious-realization-of-complementary-boolean-functions-
Library aware-power-conscious-realization-of-complementary-boolean-functions-Library aware-power-conscious-realization-of-complementary-boolean-functions-
Library aware-power-conscious-realization-of-complementary-boolean-functions-
 
Sonic localization-cues-for-classrooms-a-structural-model-proposal
Sonic localization-cues-for-classrooms-a-structural-model-proposalSonic localization-cues-for-classrooms-a-structural-model-proposal
Sonic localization-cues-for-classrooms-a-structural-model-proposal
 
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...
Fuzzy metric-approach-for-fuzzy-time-series-forecasting-based-on-frequency-de...
 
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...
Response quality-evaluation-in-heterogeneous-question-answering-system-a-blac...
 
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...
Optimal straight-line-trajectory-generation-in-3 d-space-using-deviation-algo...
 
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systems
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systemsEvolutionary techniques-for-model-order-reduction-of-large-scale-linear-systems
Evolutionary techniques-for-model-order-reduction-of-large-scale-linear-systems
 
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidents
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidentsMultivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidents
Multivariate high-order-fuzzy-time-series-forecasting-for-car-road-accidents
 
Interpolation of-geofield-parameters
Interpolation of-geofield-parametersInterpolation of-geofield-parameters
Interpolation of-geofield-parameters
 
Automatic generation-control-of-interconnected-power-system-with-generation-r...
Automatic generation-control-of-interconnected-power-system-with-generation-r...Automatic generation-control-of-interconnected-power-system-with-generation-r...
Automatic generation-control-of-interconnected-power-system-with-generation-r...
 

Similar to On the-joint-optimization-of-performance-and-power-consumption-in-data-centers

DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
cscpconf
 
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...IJERD Editor
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
csandit
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
ijassn
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
ijassn
 
Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...
IJECEIAES
 
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHMPROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
ecij
 
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
IJEACS
 
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
IJPEDS-IAES
 
Adaptive check-pointing and replication strategy to tolerate faults in comput...
Adaptive check-pointing and replication strategy to tolerate faults in comput...Adaptive check-pointing and replication strategy to tolerate faults in comput...
Adaptive check-pointing and replication strategy to tolerate faults in comput...
IOSR Journals
 
Temporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware schedulingTemporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware scheduling
ijesajournal
 
Temporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware schedulingTemporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware scheduling
ijesajournal
 
Security Constrained UCP with Operational and Power Flow Constraints
Security Constrained UCP with Operational and Power Flow ConstraintsSecurity Constrained UCP with Operational and Power Flow Constraints
Security Constrained UCP with Operational and Power Flow Constraints
IDES Editor
 
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Editor IJCATR
 
K017617786
K017617786K017617786
K017617786
IOSR Journals
 
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
iosrjce
 
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
IDES Editor
 
Economic dipatch
Economic dipatch Economic dipatch
Economic dipatch
Doni Wahyudi
 
A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...
eSAT Publishing House
 
A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...
eSAT Journals
 

Similar to On the-joint-optimization-of-performance-and-power-consumption-in-data-centers (20)

DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
DYNAMIC VOLTAGE SCALING FOR POWER CONSUMPTION REDUCTION IN REAL-TIME MIXED TA...
 
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...
IJERD(www.ijerd.com)International Journal of Engineering Research and Develop...
 
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETSFAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
FAST ALGORITHMS FOR UNSUPERVISED LEARNING IN LARGE DATA SETS
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
 
Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...Operation cost reduction in unit commitment problem using improved quantum bi...
Operation cost reduction in unit commitment problem using improved quantum bi...
 
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHMPROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
PROCESS OF LOAD BALANCING IN CLOUD COMPUTING USING GENETIC ALGORITHM
 
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
DCHEFT approach-for-task-scheduling-to-efficient-resource-allocation-in-cloud...
 
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
Multi-Objective Optimization Based Design of High Efficiency DC-DC Switching ...
 
Adaptive check-pointing and replication strategy to tolerate faults in comput...
Adaptive check-pointing and replication strategy to tolerate faults in comput...Adaptive check-pointing and replication strategy to tolerate faults in comput...
Adaptive check-pointing and replication strategy to tolerate faults in comput...
 
Temporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware schedulingTemporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware scheduling
 
Temporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware schedulingTemporal workload analysis and its application to power aware scheduling
Temporal workload analysis and its application to power aware scheduling
 
Security Constrained UCP with Operational and Power Flow Constraints
Security Constrained UCP with Operational and Power Flow ConstraintsSecurity Constrained UCP with Operational and Power Flow Constraints
Security Constrained UCP with Operational and Power Flow Constraints
 
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
Proposing a Scheduling Algorithm to Balance the Time and Energy Using an Impe...
 
K017617786
K017617786K017617786
K017617786
 
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
Efficient Dynamic Scheduling Algorithm for Real-Time MultiCore Systems
 
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
An Improved Particle Swarm Optimization for Proficient Solving of Unit Commit...
 
Economic dipatch
Economic dipatch Economic dipatch
Economic dipatch
 
A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...
 
A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...A survey on energy efficient with task consolidation in the virtualized cloud...
A survey on energy efficient with task consolidation in the virtualized cloud...
 

More from Cemal Ardil

Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...
Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...
Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...Cemal Ardil
 
The main-principles-of-text-to-speech-synthesis-system
The main-principles-of-text-to-speech-synthesis-systemThe main-principles-of-text-to-speech-synthesis-system
The main-principles-of-text-to-speech-synthesis-systemCemal Ardil
 
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...Cemal Ardil
 
Robust fuzzy-observer-design-for-nonlinear-systems
Robust fuzzy-observer-design-for-nonlinear-systemsRobust fuzzy-observer-design-for-nonlinear-systems
Robust fuzzy-observer-design-for-nonlinear-systemsCemal Ardil
 
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-pso
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-psoReduction of-linear-time-invariant-systems-using-routh-approximation-and-pso
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-psoCemal Ardil
 
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...Cemal Ardil
 
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcga
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcgaOptimal supplementary-damping-controller-design-for-tcsc-employing-rcga
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcgaCemal Ardil
 
On the-approximate-solution-of-a-nonlinear-singular-integral-equation
On the-approximate-solution-of-a-nonlinear-singular-integral-equationOn the-approximate-solution-of-a-nonlinear-singular-integral-equation
On the-approximate-solution-of-a-nonlinear-singular-integral-equationCemal Ardil
 
On problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectOn problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectCemal Ardil
 
Numerical modeling-of-gas-turbine-engines
Numerical modeling-of-gas-turbine-enginesNumerical modeling-of-gas-turbine-engines
Numerical modeling-of-gas-turbine-enginesCemal Ardil
 
New technologies-for-modeling-of-gas-turbine-cooled-blades
New technologies-for-modeling-of-gas-turbine-cooled-bladesNew technologies-for-modeling-of-gas-turbine-cooled-blades
New technologies-for-modeling-of-gas-turbine-cooled-bladesCemal Ardil
 
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...Cemal Ardil
 
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engine
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engineMultistage condition-monitoring-system-of-aircraft-gas-turbine-engine
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engineCemal Ardil
 
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...Cemal Ardil
 
Modeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesModeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesCemal Ardil
 
Mimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmMimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmCemal Ardil
 
Mimo broadcast-scheduling-for-weighted-sum-rate-maximization
Mimo broadcast-scheduling-for-weighted-sum-rate-maximizationMimo broadcast-scheduling-for-weighted-sum-rate-maximization
Mimo broadcast-scheduling-for-weighted-sum-rate-maximizationCemal Ardil
 
Mathematical modeling-of-gas-turbine-blade-cooling
Mathematical modeling-of-gas-turbine-blade-coolingMathematical modeling-of-gas-turbine-blade-cooling
Mathematical modeling-of-gas-turbine-blade-coolingCemal Ardil
 
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Cemal Ardil
 
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...Cemal Ardil
 

More from Cemal Ardil (20)

Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...
Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...
Upfc supplementary-controller-design-using-real-coded-genetic-algorithm-for-d...
 
The main-principles-of-text-to-speech-synthesis-system
The main-principles-of-text-to-speech-synthesis-systemThe main-principles-of-text-to-speech-synthesis-system
The main-principles-of-text-to-speech-synthesis-system
 
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...
System overflow blocking-transients-for-queues-with-batch-arrivals-using-a-fa...
 
Robust fuzzy-observer-design-for-nonlinear-systems
Robust fuzzy-observer-design-for-nonlinear-systemsRobust fuzzy-observer-design-for-nonlinear-systems
Robust fuzzy-observer-design-for-nonlinear-systems
 
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-pso
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-psoReduction of-linear-time-invariant-systems-using-routh-approximation-and-pso
Reduction of-linear-time-invariant-systems-using-routh-approximation-and-pso
 
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...
Performance of-block-codes-using-the-eigenstructure-of-the-code-correlation-m...
 
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcga
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcgaOptimal supplementary-damping-controller-design-for-tcsc-employing-rcga
Optimal supplementary-damping-controller-design-for-tcsc-employing-rcga
 
On the-approximate-solution-of-a-nonlinear-singular-integral-equation
On the-approximate-solution-of-a-nonlinear-singular-integral-equationOn the-approximate-solution-of-a-nonlinear-singular-integral-equation
On the-approximate-solution-of-a-nonlinear-singular-integral-equation
 
On problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-objectOn problem-of-parameters-identification-of-dynamic-object
On problem-of-parameters-identification-of-dynamic-object
 
Numerical modeling-of-gas-turbine-engines
Numerical modeling-of-gas-turbine-enginesNumerical modeling-of-gas-turbine-engines
Numerical modeling-of-gas-turbine-engines
 
New technologies-for-modeling-of-gas-turbine-cooled-blades
New technologies-for-modeling-of-gas-turbine-cooled-bladesNew technologies-for-modeling-of-gas-turbine-cooled-blades
New technologies-for-modeling-of-gas-turbine-cooled-blades
 
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...
Neuro -fuzzy-networks-for-identification-of-mathematical-model-parameters-of-...
 
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engine
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engineMultistage condition-monitoring-system-of-aircraft-gas-turbine-engine
Multistage condition-monitoring-system-of-aircraft-gas-turbine-engine
 
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...
Multi objective-optimization-with-fuzzy-based-ranking-for-tcsc-supplementary-...
 
Modeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-bladesModeling and-simulating-of-gas-turbine-cooled-blades
Modeling and-simulating-of-gas-turbine-cooled-blades
 
Mimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithmMimo system-order-reduction-using-real-coded-genetic-algorithm
Mimo system-order-reduction-using-real-coded-genetic-algorithm
 
Mimo broadcast-scheduling-for-weighted-sum-rate-maximization
Mimo broadcast-scheduling-for-weighted-sum-rate-maximizationMimo broadcast-scheduling-for-weighted-sum-rate-maximization
Mimo broadcast-scheduling-for-weighted-sum-rate-maximization
 
Mathematical modeling-of-gas-turbine-blade-cooling
Mathematical modeling-of-gas-turbine-blade-coolingMathematical modeling-of-gas-turbine-blade-cooling
Mathematical modeling-of-gas-turbine-blade-cooling
 
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
Levenberg marquardt-algorithm-for-karachi-stock-exchange-share-rates-forecast...
 
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...
Investigation of-combined-use-of-mfcc-and-lpc-features-in-speech-recognition-...
 

Recently uploaded

UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
UiPathCommunity
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
Peter Spielvogel
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
UiPathCommunity
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Nexer Digital
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
nkrafacyberclub
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 

Recently uploaded (20)

UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..UiPath Community Day Dubai: AI at Work..
UiPath Community Day Dubai: AI at Work..
 
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdfSAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
SAP Sapphire 2024 - ASUG301 building better apps with SAP Fiori.pdf
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?Elizabeth Buie - Older adults: Are we really designing for our future selves?
Elizabeth Buie - Older adults: Are we really designing for our future selves?
 
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptxSecstrike : Reverse Engineering & Pwnable tools for CTF.pptx
Secstrike : Reverse Engineering & Pwnable tools for CTF.pptx
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 

On the-joint-optimization-of-performance-and-power-consumption-in-data-centers

  • 1. World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 On the Joint Optimization of Performance and Power Consumption in Data Centers Samee Ullah Khan and Cemal Ardil International Science Index 32, 2009 waset.org/publications/9996745 Abstract—We model the process of a data center as a multiobjective problem of mapping independent tasks onto a set of data center machines that simultaneously minimizes the energy consumption and response time (makespan) subject to the constraints of deadlines and architectural requirements. A simple technique based on multi-objective goal programming is proposed that guarantees Pareto optimal solution with excellence in convergence process. The proposed technique also is compared with other traditional approach. The simulation results show that the proposed technique achieves superior performance compared to the min-min heuristics, and competitive performance relative to the optimal solution implemented in LINDO for small-scale problems. Keywords—Energy-efficient multi-objective optimization. computing, distributed systems, I. I NTRODUCTION Data Centers are huge structures that house services for customers. Owing to their structural services they are continuously demanded for increase in throughput and reduced energy consumption. Energy-efficient techniques for managing a system at runtime can bring down the amount of energy it consumes. These management techniques are mostly for • reducing the energy wasted by transitioning a system to its sleep mode when it is idle and • reducing the energy consumed by slowing down the system during lean (but not idle) periods. The former technique is called Dynamic Power Management (DPM) [9], while the latter is called Dynamic Voltage Scaling (DVS) [12] (or Speed Scaling in the more theoretical literature [2]). DPM considers a system (in the simplest case a processor) that can be in one of the two states, which we call the active state and the sleep state. The system can handle requests only in its active state, but the active state consumes far more energy per unit time compared to the sleep state. However, when a request arrives while the system is in the sleep state, it must “wake up” and assume the active state before the request can be served. This transition from sleep to active state has a high transition cost, and is not a favorable approach undertaken by researches and vendors [4]. DVS on the other hand, seeks to exploit the convex relationship between the CPU supply voltage (that impacts the speed of execution) and the power consumption. The power consumption in CMOS circuits is given by P = V 2 × f × CEF F , where V , f , and CEF F are the supply voltage, S. U. Khan is with Department of Electrical and Computer Engineering, North Dakota State University, Fargo, ND 58108, E-mail: samee.khan@ndsu.edu. C. Ardil is with the National Academy of Aviation, Baku, Azerbaijan, Email: cemalardil@gmail.com clock frequency, and effective switched capacitance of the circuits, respectively. Moreover, we also know that the time to finish an operation is inversely proportional to the frequency. Furthermore, power is the rate at which energy is consumed. Therefore, the energy per operation is proportional to V 2 , which implies that lowering the supply voltage quadratically decreases the energy. However, lowering the supply voltage reduces the maximum allowable clock speed (or frequency) in an approximately linear manner. This leads us to the cube rule in CMOS circuits which states that the instantaneous power is roughly proportional to the clock speed cubed. The main objective, therefore, is to keep the supply voltage (or clock speed) as low as possible so that the power consumption is minimal, but without compromising QoS measures [22]. In this paper, we will investigate the joint optimization of energy consumption and response time. Because response time improves whence the makespan improves, we must use makespan as the primary criteria to determine improvement in response time. Moreover, because power is simply the rate at which energy is consumed, we must optimize the instantaneous power. The remainder of this paper is organized as following. The system model and problem formulation are discussed in Section 2. Section 3 provides some essential information pertaining to goal programming and details our proposed approach. Simulation results and related work are provided in Sections 4 and 5, respectively. Finally, in Section 6, we summarize our investigation. II. S YSTEM M ODEL AND P ROBLEM D ESCRIPTION A. The System Model Consider a data center comprising of a set of machines, M = {m1 , m2 , · · · , mm }. Assume that each machine is equipped with a DVS module and is characterized by: 1) The frequency of the CPU, fj , given in cycles per unit min time. With the help of a DVS, fj can vary from fj max min max to fj , where 0 < fj < fj . From frequency, it is easy to obtain the speed of the CPU, Sj , which is approximately proportional to the frequency of the machine [14], [23]. 2) The specific machine architecture, A(mj ). The architecture would include the type of CPU, bus types, and speeds in GHz, I/O, and memory in bytes. Consider a metatask, T = {t1 , t2 , · · · , tn }. Each task is characterized by: 1) The computational cycles, ci , that it needs to complete. The assumption here is that the ci is known a priori. 48
  • 2. International Science Index 32, 2009 waset.org/publications/9996745 World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 2) The specific machine architecture, A(ti ), that it needs to complete its execution. 3) The deadline, di , before it has to complete its execution. Moreover, we also assume that the metatask, T , also has a deadline, D, which is met if and only if the deadlines of all its tasks are met. The number of computational cycles required by ti to execute on mj is assumed to be a finite positive number, denoted by cij . The execution time of ti under a constant t speed Sij , given in cycles per second is cij = Sij . For the ij associated data and instructions of a task, we assume that the processor always retrieves it from the level-1 (primary) data cache. A task, ti , when executed on machine mj draws, pij amount of instantaneous power. Lowering the instantaneous power will lower the CPU frequency and consequently will decrease the speed of the CPU and hence cause ti to possibly miss its deadline. The architectural requirements of each task are recorded as a tuple with each element bearing a specific requirement. We assume that the mapping of architectural requirements is a Boolean operation. That is, the architectural mapping is only fulfilled when all of the architectural constraints are satisfied, otherwise not. B. Problem Formulating Find the task to machine mapping, where the cumulative instantaneous power consumed by the data center, M and the makespan of the metatask, T , is minimized. Mathematically, we can say ⎛ ⎞ n minimize ⎝ n m pij xij and max i=1 j=1 j tij xij ⎠ (1) i=1 subject to xij ∈ {0, 1}, (5) (tij xij ≤ di ) = 1|xij = 1. (6) Goal programming implicitly assumes that a desired goal is obtainable that can be used during each of the iteration of the solution convergence process through some high-level intervention [24]. The information attainable during each of the iteration is the current best compromise solution, referred to as the Main Solution (MS), and a set of Possible Solutions (PS) that are the compromise solutions obtainable if each of the goals are satisfied serially [10]. Iteratively, goal programming, identifies non-inferior solutions and refines them to achieve the best possible compromise solution. An iteration can be classified as a two-step calculation and evaluation process. During the calculation step the MS and PS are obtained, which are analyzed to proceed towards a compromise solution during the evaluation process. During the iterative process, if the evaluation procedure determines that either the MS or the one of the PS is the best compromise solution, then the procedure terminates [11]. Below we describe a generalized procedure for goal programming. Let the multi-objective problem to be solved be (4) (tij xij ≤ di ) ∈ {0, 1}, A. A Generalized Goal Programming Procedure (3) tij xij ≤ di |xij = 1, III. G OAL P ROGRAMMING (2) ti → mj ; ifA(ti ) = A(mj ) then xij = 1, first, then make that as a constraint for the rest of the objectives. To optimize one objective first, then make that as a constraint for the other objectives, the only plausible framework is when one can ensure that the objective functions have an acceptable overlap [8]. Because, the multi-objective problem (described in this paper) has the objectives of optimizing instantaneous power and makespan that are are opposite to each other, we must choose to optimize both the objectives concurrently. n i=1 Constraint (2) is the mapping constraint. When xij = 1, a task, ti , is mapped to machine, mj , and xij = 0 otherwise. Constraint (3) elaborates on this mapping in conjunction to the architectural requirements, and it states that a mapping can only exists if the architecture is mapped. Constraint (4) relates to the fulfillment of the deadline of each task, and constraint (5) tells us about the Boolean relationship between the deadline and the actual time of execution of the tasks. Constraint (6) relates to the deadline constraints of the metatask that will hold if all of the deadlines of the tasks, di , are satisfied. The above problem formulation is in a form of multiobjective optimization problem. In the literature, there are two standard ways to tackle such multi-objective problems: (a) optimize objectives concurrently or (b) optimize one objective min (f1 (x), f2 (x), · · · , f (k (x)) , (7) such that gj (x) ≤ 0, i = 1, 2, · · · , m, where x is an n dimensional decision variable vector. The following steps must be present for a generalized goal programming approach. Step 0: Determine fi∗ and f∗i , as 1) min fi (x) such that g(x) ≤ 0. The solution to the above, referred to as x∗i and f∗i is known as the ideal solution [11]. Let fij = fi (x), then 2) fi∗ = maxj fji . The functions fi∗ and f∗i provide the upper and lower bounds on the objective function values, respectively. Such values are important to guide the solution towards the desirable compromise solution. Moreover, they also determine the feasibility of the solution space. Step 1: Set initial goals, b = {b1 , b2 , · · · , k}. As mentioned previously a high-level intervention must determine a desirable goal for each and every objective function. However, one can approximate these goals by determine the necessary and sufficient conditions of optimality — the Kuhn-Tucker conditions. It should be clear that f∗i < bi ≤ fi∗ . 49
  • 3. World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 Input: T and M . Output: Task to machine mapping. Initialize: ∀j, DVSj is set to the highest level. while T = ∅ do I ← argmini (di ) foreach mj ∈ M do if A(tI ) = A(mj ) then M ← M ∪ mj ; end if M = ∅ then EXIT; end end foreach mj ∈ M do ΔIj ← dI − tIj ; if ΔIj > 0 then Δ ← Δ ∪ ΔIj ; end end if Δ = ∅ then foreach mj ∈ M do Reset DVSj to the highest level; ΔIj ← dI − tIj ; if ΔIj > 0 then Δ ← Δ ∪ ΔIj ; end if Δ = ∅ then EXIT; end end end J ← argminj (Δ); while {tIJ xIJ ≤ dI |xIJ = 1} do Reduce DVSJ by one level; end i ← I; j ← J; xij ← 1; T ← T − {ti }; end Algorithm 1: The goal programming based task to machine mapping technique (GP). Step 2: Solve for MS. min a = i d− i −d+ i , i , (8) such that g(x) ≤ 0, fi (x) + wi × d− − wi × d+ = bi , i i (9) d− × d+ = 0, i i d− ≤ 1, i d− , d+ ≥ 0, i i International Science Index 32, 2009 waset.org/publications/9996745 where wi = bi − f∗i . The optimization of the MS would result in x0 and f 0 , which is known in the literature as the core solution [11]. The weight w has been derived from a normalizing scheme that makes the variation between f∗i and bi equal to one. That is, bi − f∗i fi (x) − f∗i + d− − d∗ = = 1, i i bi − f∗i bi − f∗i (10) where f∗i < bi ≤ fi∗ ; hence, we obtain the following fi (x) + (bi − f∗i ) d− − (bi − f∗i ) d+ = bi , i i (11) which is the same as (9) after substituting wi = bi − f∗i . Moreover, the constraint d− ≤ 1 ensures that fi (x) does not i violate the lower bound, f∗i . Furthermore, the weights w have the following two additional properties: (a) the value of the weight is dynamically adjusted whence the value of a goal alters in between an iteration, and (b) the weight increases whence the value of goal decreases and vice versa. Step 2: Solve for PS. ⎞ ⎛⎛ ⎞ d− ⎠ , i min ar = ⎝⎝ i,r=i i −d+ ⎠ , i (12) such that g(x) ≤ 0, fi (x) − wi × d+ = bi , i fi (x) + wi × d− − wi × d+ = bi , i i d− × d+ = 0, i i d− ≤ 1, i d− , d+ ≥ 0, i i where wi = bi − f∗i . The optimization of the PS would result in xr and f r , which is known in the literature as the achievable solution [24]. The goal programming approach must iterate between steps 2 and 3 to arrive at a compromised solution. The question that how does one obtain a proper weightage for an given optimization problem is the topic of the subsequent section. Moreover, by deriving the necessary and sufficient conditions of optimality, one ensures that the optimization process is convergent. Furthermore, the solution space is reduced only to Pareto frontier [6]. B. Conditions of Optimality Because we must have an upper bound on the power consumption, we introduce power conservation conditions to the set of constraints (2), (3), (4), (5), and (6). n m pij ≤ P, (13) i=1 m=1 pij ≥ 0, i = 1, 2, · · · , n; j = 1, 2, · · · , m. (14) The power conservation condition of (13) states that the instantaneous power allocated is bounded. That is, at any given instance, the total power consumption of all of the machines must be less than when all of the machines are running at their peak power consumption. Clearly, the instantaneous power consumption must be a positive number, as in (14). These constraints make the multi-objective problem convex that in 50
  • 4. World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 turn makes the optimization problem tractable [20]. Moreover, because the instantaneous power regulates the time to complete a task, it is sufficient to utilize power as the only tunable variable to derive the conditions of optimality. Let α ≤ 0 and ηj ≤ 0 denote the Lagrange multipliers, and γj be the gradient of the binding constraints [13]. Then, we can say that the Lagrangian is n m L(γj , α, ηj ) = ⎛ ln ⎝γj (α) − pij + i=1 j=1 n m C. Goal Programming Based Technique (GP) ⎞ (γj − P )⎠ i=1 j=1 n m ηj (γj − pij ) . + i=1 j=1 International Science Index 32, 2009 waset.org/publications/9996745 The first-order Kuhn-Tucker conditions are given in (15) and (16), with a constraint given in (17): δL −1 = + αηj = 0, δγj γj − pij δL = δα (15) m γj − P = 0, (16) j=1 γj − pij ≥ 0, ηj (γj − pij ) = 0, ηj ≤ 0. (17) If γj − pij = 0, then the current instantaneous power consumption is the best instantaneous power. If γj − pij > 0, then ηj = 0. The solution (or the derivative) of (15) and (16) is given in (18) and (19), respectively. 1 − α = 0, γj − pij (18) m γj = P. (19) j=1 It then follows that γj = P− n i=1 m j=1 pij P− n i=1 m j=1 pij . (20) m Because γj by definition is the gradient of the binding constraints, we can replace γj with pij . That gives us . (21) m Now, for a specific machine j, the optimality must oscillate between the instantaneous power consumed by machine j and the rest of m−1 machines. Therefore, the following must hold pij = pij = P− n i=1 ∀ k∈M,k=j pik optimality are sufficient to consider only one single constraint — instantaneous power. Utilizing both of the constraints would have resulted in a similar conditions of optimality; however, the derivation would have been complicated. In the next section, we will outline our goal programming based task to machine mapping technique. . (22) m The Kuhn-Tucker conditions verify the following: (a) The non-inferior solutions form the Pareto frontier when the instantaneous power consumption of a machine j (that has mapped a task) is below the peak power consumption of machine j. (b) The goal is achieved whence machine j is operating on an instantaneous power that is scaled as the m-th lowest power consumption of machine j. It also is worth reporting that due to the linearity relationship between power consumption and the associated task completion time, the conditions of We have all the necessary components to propose a goal programming based task to machine mapping technique, acronym GP. The GP technique must take in as an input the sets M and T with all machines initialized to their corresponding highest level of DVS, and produce a task to machine mapping. To derive an upper and lower bound on the desired goal (corresponding to Step 0 of Section III-A), we must utilize the earliest deadline first approach. This will ensure that the classical claim by the earliest deadline first approach is satisfied. That is, if T can be scheduled (by an optimal algorithm) such that constraint (4) is satisfied, then the earliest deadline first approach will schedule T such that constraint (6) is satisfied. The earliest deadline first approach also will ensure that the GP technique has a corresponding upper and lower bound on instantaneous power consumption and makespan given deadlines of the metatask. The corresponding bounds will be dictated by the tightness of the associated deadlines. That is, the tighter the deadline for a given task, the more instantaneous power a mapped machine would consume, and vice versa. The Kuhn-Tucker conditions derived in Section III-B set the initial goals corresponding to Step 1 of Section III-A. They are not depicted in Algorithm 1 that describes the GP technique. Instead, implicitly, Steps 2 and 3 guide the solution towards a best possible compromise [21]. To develop a MS (corresponding to Step 2 of Section III-A.), we must satisfy constraint (3). First, we limit our solution space to only those machines, M, that can satisfy the architectural constraint. To ensure a feasible MS, we must identify machines that without altering their current DVS level can finish the task within the specified deadline. Such an assurance is also known as laxity [16]. A laxity set, Δ , is constructed. Using Δ, we determine the best possible task to machine mapping without any alteration to the DVS levels. This is accomplished by picking the machine that exhibits the minimum laxity. The MS is not complete until an optimum level of DVS is determined. The DVS level of the chosen machine j is lowered until constraint (4) is violated. This ensures that the mapped task is running on a machine that can fulfill all of the constraints and consuming an instantaneous power that results in a compromised solution. The MS will be stable as long as Δ can be constructed. However, mapped tasks stack-up on machines, thereby reducing the laxity, and possibly to a level that Δ is empty. Once that happens PS must be constructed corresponding to Step 3 of Section III-A. Because only set M can potentially satisfy constraint (4), the PS must be from within M. To increase laxity, the machines must operate on their corresponding highest speed levels (or highest DVS levels), respectively. These new 51
  • 5. International Science Index 32, 2009 waset.org/publications/9996745 World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 DVS levels will pad (down) the stacked tasks on machines to levels that can ensure that we have one feasible (positive) laxity. (The pad down is achieved by running all the maped tasks on the highest speed. This will lower the makespan; hence ensuring a feasible laxity.) Set Δ is reconstructed and the machine that ensures the minimum laxity is chosen as the PS. The GP heuristic as mandated in Section III-A oscillates between MS and PS. A number of important conclusions also can be deduced from the GP technique. Namely, 1) A feasible solution if it exists is always identified; otherwise the EXIT statements identify unfeasible solutions based on constraint (3) or the laxity criterion. 2) If the algorithm maps all of the tasks on machines within the MS construction, then the solution is the optimal. Moreover, deadlines must be very loose. Furthermore, the laxity must be very high. 3) If the algorithm constructs PS, then the solution is on the Pareto frontier (definition of Kuhn-Tucker conditions of Section III-B). Moreover, PS ensure that optimum solution is identified (definition of PS, Section III-A). Furthermore, PS revisits MS to rectify anomalies by altering the corresponding DVS levels such that the resultant is a feasible optimal compromise. Finally, to ensure that the GP technique is tractable, we analyze the termination time. It is easy to congregate that the exact worst-case bound is O n2 log n + 3mn + mn log m . Because it is assumed that m n, the worst-case bound reduces to O n2 log n . (a) Makespan ratio over the optimal. (b) Makespan ratio over the optimal. IV. S IMULATIONS , R ESULTS , AND D ISCUSSION We set forth two major goals for our simulation study: (a) To measure and compare the performance of the proposed technique against the optimal solution and the min-min heuristic [23]. (b) To measure the impact of system parameter variations. Based on the size of the problems, the experiments were divided in two parts. For small size problems, we used an Integer Linear Programming tool called LINDO [19]. LINDO is useful to obtain optimal solutions, provided the problem size is relatively small. Hence for small problem sizes, the performance of the proposed is compared against 1) the optimal solution using LINDO and 2) the min-min heuristic. The LINDO implementation and the min-min heuristic do not consider power as an optimization constraint; however, they are very effective for the optimization of the makespan. Thus, the comparison provides us with a wide range of results. On one extreme we have the optimal algorithm, on the other a technique which scales well with the corresponding increase in the problem size. For large size problems, it becomes impractical to compute the optimal solution by LINDO. Hence, we only consider comparisons against the min-min heuristic. The system heterogeneity is captured by the distribution of the number of CPU cycles, cij , on different mj s. Let C denote the matrix composed by cij . The C matrix was generated using the coefficient of variation method described in [23]. The deadline, di , of task ti was generated using the method (c) Makespan. (d) Makespan. Fig. 1. 52 Simulation results.
  • 6. World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 described in [23]. For this study, we keep the architectural affinity requirements confined to memory. (Adding other requirements such as, I/O, processor type, etc. will bear no affect on our experimental setup or theoretical results.) Each machine is assigned a memory on random from within the range [5005000] GB, while each task is associated a corresponding memory requirement on random from within the range [20-50] MB. International Science Index 32, 2009 waset.org/publications/9996745 For small size problems, the number of machines was fixed at 5, while the number of tasks varied from 20 to 40. The number of DVS levels per machine was set to 4. The frequencies of the machines were randomly mapped from within the range [200MHz-2000MHz]. We assumed that the potential difference of 1mV across a CMOS circuit generates a frequency of 1MHz. For large size problems, the number of machines was fixed at 16, while the number of tasks varied from 1000 to 5000. The number of DVS levels per mj was set to 8. Other parameters were the same as those for small size problems. (a) Power comsumption. The experimental results for small size problems with K equal to 1.5 and 1.0 are reported in Figs. 1(a) and 1(b). These figures show the ratio of the makespan obtained from the two techniques and the optimal. The plots clearly show that the GP (proposed) technique performs extremely well and achieves a performance level of 10%–15% of the optimal when K was set at a very tight bound 1.0. For large problem instances, first, we compare the makespan identified by the min-min and the GP technique. Since the min-min heuristic does not optimize power consumption, we compared the min-min with a version of GP that ran on full power and also compared it with the (original) version that optimized power. Figs. 1(c) and 3(d) show the relative performance of the techniques with various values of K, Vtask , and Vmach . The results indicate that GP outperforms the minmin technique in identifying a smaller makespan when power is not considered as an optimization criteria. The performance of GP is notably superior to the min-min technique when the deadline constraints are relatively loose. It can also be observed that GP, when considering power as an optimization resource, identifies a task to machine mapping that produces a makespan that is within 5%-10% of the min-min technique. It was noticed that the relative performance of the min-min technique was much better for large size problems, compared with small size problems, because with the increase in the size of the C matrix, the probability of obtaining larger values of wis also increases. Moreover, the relative performance of GP was also much better for large size problems, compared with small size problems, because the DVS levels for the large problem size are twice more than the DVS levels for the small problem size. Next, we compare the power consumption of both the techniques. Figs. 2(a) and 2(b) reveal that on average the GP technique utilizes 60%–65% less power as compared to the min-min technique. That is a significant amount of savings considering that the makespan identified by GP is within 5%– 10% of the makespan identified by the min-min technique. (b) Power consumption. Fig. 2. Power consumption simulation results. V. R ELATED W ORK Most DPM techniques utilize instantaneous power management features supported by hardware. For example, Ref. [1] extends the operating system’s power manager by an adaptive power manager (APM) that uses the processor’s DVS capabilities to reduce or increase the CPU frequency, thereby minimizing the overall energy consumption [3]. The DVS technique at the processor-level together with a turn on/off technique at the cluster-level to achieve high-power savings while maintaining the response time is proposed in [18]. In [17], the authors introduce a scheme to concentrate the workload on a limited number of servers in a cluster such that the rest of the servers can remain switched-off for a longer period of time. While the closest techniques to combining device power models to build a whole system has been presented in [5], our approach aims at building a general framework for autonomic power and performance management. Furthermore, while most power management techniques are either heuristic-based approaches [7], [15] or stochastic optimization techniques [22], we use goal programming to seek radically fast and efficient solutions compared to the traditional approaches. VI. C ONCLUSIONS This paper presented an energy optimizing power-aware resource allocation strategy in data centers. A solution from goal programming was proposed for this multi-objective problem. 53
  • 7. World Academy of Science, Engineering and Technology International Journal of Computer, Information Science and Engineering Vol:3 No:8, 2009 The solution quality of the proposed technique was compared against the optimal for small-scale problems, and greedy and linear relaxation heuristics for large-scale problems. The simulation results confirm superior performance of the proposed scheme in terms of reduction in energy consumption and makespan compared to the heuristics and the optimal solution obtained using LINDO. International Science Index 32, 2009 waset.org/publications/9996745 R EFERENCES [1] T. F. Abdelzaher and C. Lu. Schedulability analysis and utilization bounds for highly scalable real-time services. In 7th Real-Time Technology and Applications Symposium, p. 15, 2001. [2] N. Bansal, T. Kimbrel, and K. Pruhs. Dynamic speed scaling to manage energy and temperature. In 45th Annual IEEE Symposium on Foundations of Computer Science, pp. 520–529, 2004. [3] R. Bianchini and R. Rajamony. Power and energy management for server systems. IEEE Computer, 37(11):68–74, 2004. [4] D. P. Bunde. Power-aware scheduling for makespan and flow. In 8th ACM Symposium on Parallelism in Algorithms and Architectures, pp. 190–196, 2006. [5] J. Chen, M. Dubois, and P. Stenstr¨ m. Simwattch: Integrating completeo system and user-level performance and power simulators. IEEE Micro, 27(4):34–48, 2007. [6] J. S. Dyer. Interactive goal programming. Operations Research, 19:62– 70, 1972. [7] T. Heath, B. Diniz, E. V. Carrera, W. M. Jr., and R. Bianchini. Energy conservation in heterogeneous server clusters. In 10th ACM SIGPLAN Symposium on Principles and Practice of Parallel Programming, pp. 186– 195, 2005. [8] C. L. Hwang and A. S. M. Masud. Multiple Objective Decision Making— Methods and Applications: A State-pf-the-Art Survey. Springer Verlag, berlin, 1979. [9] S. Irani, R. Gupta, and S. Shukla. Competitive analysis of dynamic power management strategies for systems with multiple power savings states. In Conference on Design, Automation and test in Europe, p. 117, 2002. [10] L. Li and K. K. Lai. A fuzzy approach to the multiobjective transportation problem. Computers and Operations Research, 27(1):43–57, 2000. [11] T.-F. Liang. Fuzzy multi-objective production/distribution planning decisions with multi-product and multi-time period in a supply chain. Computers in Industrial Engineering, 55(3):676–694, 2008. [12] J. R. Lorch and A. J. Smith. Improving dynamic voltage scaling algorithms with pace. In 2001 ACM SIGMETRICS International Conference on Measurement and Modeling of Computer Systems, pp. 50–61, 2001. [13] D. Luenberger. Linear and Nonlinear Programming. Addison-Wesley, 1984. [14] P. Mejia-Alvarez, E. Levner, and D. Moss´ . Adaptive scheduling e server for power-aware real-time tasks. IEEE Transactions on Embedded Computing Systems, 3(2):284–306, 2004. [15] R. Nathuji, C. Isci, and E. Gorbatov. Exploiting platform heterogeneity for power efficient data centers. In 4th International Conference on Autonomic Computing, p. 5, 2007. [16] P. A. Laplante. Real-Time System Design and Analysis. John Wiley & Sons, 2004. [17] E. Pinheiro, R. Bianchini, E. V. Carrera, and T. Heath. Load balancing and unbalancing for power and performance in cluster-based systems. In Workshop on Compilers and Operating Systems for Low Power, 2001. [18] C. Rusu, A. Ferreira, C. Scordino, and A. Watson. Energy-efficient real-time heterogeneous server clusters. In 12th IEEE Real-Time and Embedded Technology and Applications Symposium, pp. 418–428, 2006. [19] L. Schrage. Linear, Integer, and Quadratic Programming with LINDO. Scientific Press, 1986. [20] A. Stefanescu and M. Stefanescu. The arbitrated solution for multiobjective convex programming. Revue Roumaine de Mathematical Pures et Appliquees, 29:593–598, 1984. [21] J. Wallenius. Comparative evaluation of some interactive approaches to multicriterion optimization. Management Sciences, 21:1387–1396, 1975. [22] M. Weiser, B. Welch, A. Demers, and S. Shenker. Scheduling for reduced cpu energy. In 1st USENIX conference on Operating Systems Design and Implementation, p. 2, 1994. [23] Y. Yu and V. K. Prasanna. Power-aware resource allocation for independent tasks in heterogeneous real-time systems. In 9th International Conference on Parallel and Distributed Systems, p. 341, 2002. [24] M. Zangiabadi and H. R. Maleki. Fuzzy goal programming for multiobjective transportation problems. Journal of Applied Mathematical Computing, 24(1):449–460, 2007. 54