-
Notifications
You must be signed in to change notification settings - Fork 0
/
PriorityManager.cc
575 lines (440 loc) · 19.8 KB
/
PriorityManager.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
/*
* PriorityManager.cc
*
*
* Created by Ewnetu Bayuh on 11/9/13.
* Copyright 2013 Umeå. All rights reserved.
*/
#include "PriorityManager.hh"
#include <json/json.h>//libjson_linux-gcc-4.6_libmt.so must be copied to /usr/lib
#include <json/reader.h>
#include <fstream>
#include<math.h>
#include "Optimizer.hh"
#include "PriorityClass.hh"
PriorityManager::PriorityManager()
{
//default constructor
//applications=new Applications();
priorityList=new Priorities();
}
//-------------------------------------------------------------------------------------------------
PriorityManager::~PriorityManager()
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
delete apps;
}
delete priorityList;
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::removeApplication(std::string name)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->removeApplication(name);// remove application
if(apps->size()==0)//if the class is empty then remove it from the list(this may need also upgrading lower classes????)
{
priorityList->erase(iter);
delete apps;
}
}
}
//-------------------------------------------------------------------------------------------------
/*Model PriorityManager::getModel(std::string _name)
{
Model model;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
Application*app=apps->getApplication(_name);
if( app!=NULL)
model=apps->getModel(_name);
}
return model;
}*/
//-------------------------------------------------------------------------------------------------
void PriorityManager::addApplication(int priority,Application &_app)
{
Priorities::iterator iter = priorityList->find(priority);
if (iter != priorityList->end()) // add the application in the list of application with the same priority
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->addApplication(_app);
}
else// create a new list if the application is the first in this priority class
{
//cout<<"inside PriorityManager\n";
PriorityClass *apps=new PriorityClass(priority);
apps->addApplication(_app);
priorityList->insert(priority2PriorityClass(priority,apps));
}
}
//-------------------------------------------------------------------------------------------------
Application* PriorityManager::getApplication(std::string name)
{
Application *app = NULL;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
app=apps->getApplication(name);
if( app!=NULL)
return app;
}
return app;
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::updateMeasuredPerformance(std::string name,double throughput,double responseTime)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->updateMeasuredPerformance(name, throughput, responseTime);
}
}
void PriorityManager::updateArrivalRate(std::string name){
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->updateArrivalRate(name);
}
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::resetMeasuredPerformance(std::string name)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->resetMeasuredPerformance(name);
}
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::setCapacity(double _cap,std::string name, double controlInterval)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->setCapacity(_cap,name, controlInterval);
}
}
//-------------------------------------------------------------------------------------------------
PriorityClass::Applications* PriorityManager::getApplications(int priority)
{
PriorityClass::Applications *apps = NULL;
Priorities::iterator iter = priorityList->find(priority);
if (iter != priorityList->end())
{
PriorityClass* pClass = (PriorityClass*)iter->second;
apps=pClass->getApplications();
}
return apps;
}
//-------------------------------------------------------------------------------------------------
PriorityClass* PriorityManager::getClass(int priority)
{
//PriorityClass::Applications *apps = NULL;
Priorities::iterator iter = priorityList->find(priority);
if (iter != priorityList->end())
{
return (PriorityClass*)iter->second;
}
return NULL;
}
//-------------------------------------------------------------------------------------------------
//This is not a well thought method. It doesn't work if the json structure changes
void PriorityManager::init(std::string _configFile)
{
Json::Value root; // will contains the root value after parsing.
Json::Reader reader;
std::ifstream file(_configFile.c_str());
bool parsingSuccessful = reader.parse( file, root );
if ( !parsingSuccessful )
{
std::cout<< "Failed to parse configuration\n";//<<reader.getFormattedErrorMessages().c_str();
return;
}
totalCores = root.get("totalcores",0 ).asInt();
const Json::Value classes = root["classes"];
for(Json::Value::iterator it = classes.begin(); it !=classes.end(); ++it) // Iterates over the classes and generate c++ data structure( look the json file to understand this).
{
Json::Value key = it.key();
int _priority= atoi(key.asString().c_str());
Json::Value priorityClass = (*it);
//cout<<"\n\npriority: "<<_priority<<"\n";
//cout<<"Value: "<<priorityClass.toStyledString()<<"\n";
for(Json::Value::iterator classIt = priorityClass.begin(); classIt !=priorityClass.end(); ++classIt)
{
//Json::Value key = classIt.key();
Json::Value value = (*classIt);
for(Json::Value::iterator apps = value.begin(); apps !=value.end(); ++apps)
{
Json::Value key = apps.key();
Json::Value value = (*apps);
std::string _name=key.asString();
double _targetPerformance=value.get("targetThroughput",0.0).asDouble();
double _targetResponseTime=value.get("targetResponseTime",0.0).asDouble();
double _baseCapacity=value.get("baseCapacity",0.0).asDouble();
double _capacity=value.get("capacity",0.0).asDouble();
double _alpha=value.get("alpha",0.0).asDouble();
printf("alpha:%f",_alpha);
std::string ip=value.get("ip","0.0").asString();
printf("IP:%s",ip.c_str());
//cout<<"Key: "<<_name;
//cout<<"\ntargetPerformance: "<<_targetPerformance<<"\n";
//cout<<"baseC: "<<_baseCapacity<<"\n";
//cout<<"Cap: "<<_capacity<<"\n";
Application *_app= new Application(_name,_baseCapacity,_capacity,ip, _targetPerformance,_alpha,_targetResponseTime);
//_app->setAlpha(_alpha);
addApplication(_priority,*_app);//copy the application object it is proper priority group
delete _app;// to avoid memory leak
}
}
}
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::print()
{
fprintf(stderr,"TotalCores:%d \n",totalCores);
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->print();
}
}
//__________________________________________________________________________
int PriorityManager::getTotalNApplication()
{
int total=0;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
total+=apps->size();
}
return total;
}
//__________________________________________________________________________
void PriorityManager::save(double _controlInterval)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
apps->save(_controlInterval);
}
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::resetMeasuredPerformance()
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
app->resetMeasuredResponseTime();
app->resetMeasuredPerformance();
app->resetArrivalRate();
}
}
}
//-------------------------------------------------------------------------------------------------
//return value <0 - insuficient(meaning we need optimization),>=0 sufficient
double PriorityManager::checkCapacity(double controlInterval)
{
double totalCoresNeeded=0;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
double coresPerApp=app->getTargetPerformance()/app->getAlpha();
if(app->getTargetPerformance()==0){
double alpha=app->getAlpha();
double arrivalRate=app->getArrivalRate();
double throughput=app->getMeasuredPerformance();
//coresPerApp=(((fabsf(arrivalRate-throughput))+1)/app->getTargetResponseTime())*alpha;
//printf("cores:%f\n",coresPerApp);
//coresPerApp=(((fabsf(arrivalRate-throughput))+1)/app->getTargetResponseTime())*alpha;
coresPerApp=(((fabsf(app->getAverageQueueLength()))+1)/app->getTargetResponseTime())*alpha;
//app->saveDebug(alpha,arrivalRate,throughput,app->getTargetResponseTime());
//double arrivals=std::max(arrivalRate/controlInterval,throughput/controlInterval);
//coresPerApp=(((fabsf(arrivalRate-throughput))+1)/app->getTargetResponseTime())/alpha;
//coresPerApp=(arrivalRate+1/app->getTargetResponseTime())/alpha;
//coresPerApp=((app->getMeasuredPerformance()/controlInterval)+1/(app->getTargetResponseTime()))/(app->getAlpha());
////coresPerApp=1/(app->getAlpha()*app->getTargetResponseTime());
//coresPerApp=((app->getMeasuredPerformance()/controlInterval)/app->getTargetResponseTime())/(app->getAlpha());
//coresPerApp=1/(app->getTargetResponseTime()*app->getAlpha());//coresPerApp=((app->getMeasuredPerformance()/controlInterval)+1/(app->getTargetResponseTime()))/(app->getAlpha());
//coresPerApp=1/(app->getAlpha()*app->getTargetResponseTime());
//coresPerApp=(app->getAlpha()/app->getTargetResponseTime());
printf("measured performance:%f alpha:%f arrival:%f core:%f\n",throughput,app->getAlpha(),arrivalRate,coresPerApp);
}
app->setCapacity(coresPerApp,controlInterval,true);
//printf("measured performance:%f alpha:%f cores:%f\n",app->getMeasuredPerformance()/controlInterval,app->getAlpha(),coresPerApp);
totalCoresNeeded+=coresPerApp;
}
}
return totalCores-totalCoresNeeded;
}
//-------------------------------------------------------------------------------------------------
//return value <0 - insuficient(meaning we need optimization),>=0 sufficient
double PriorityManager::checkCapacity(PriorityClass *apps,double _coresToDistribute, double controlInterval)
{
double totalCoresNeeded=0;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
//printf("measured performance:%f",app->getMeasuredPerformance()/_controlInterval);
double coresPerApp=app->getTargetPerformance()/app->getAlpha();
if(app->getTargetPerformance()==0)//for response time
{
double alpha=app->getAlpha();
double arrivalRate=app->getArrivalRate();
double throughput=app->getMeasuredPerformance();
double arrivals=std::max(arrivalRate/controlInterval,throughput/controlInterval);
//coresPerApp=(((fabsf(arrivalRate-throughput))+1)/app->getTargetResponseTime())*alpha;
coresPerApp=(((fabsf(app->getAverageQueueLength()))+1)/app->getTargetResponseTime())*alpha;
// coresPerApp=(((fabsf(arrivalRate-throughput))+1)/app->getTargetResponseTime())/alpha;
//coresPerApp=(((fabsf(arrivalRate/controlInterval-throughput/controlInterval))+1)/app->getTargetResponseTime())*alpha;
//coresPerApp=(arrivals+1/app->getTargetResponseTime())/alpha;
// coresPerApp=((app->getMeasuredPerformance()/controlInterval)+1/(app->getTargetResponseTime()))/(app->getAlpha()); //coresPerApp=((app->getMeasuredPerformance()/controlInterval)+1/app->getTargetResponseTime())*(app->getAlpha());
//coresPerApp=app->getAlpha()*(((app->getMeasuredPerformance()/_controlInterval)*app->getTargetResponseTime()+1)/(app->getTargetResponseTime()));// coresPerApp=1/(app->getAlpha()*app->getTargetResponseTime());
//coresPerApp=1/(app->getTargetResponseTime()*app->getAlpha()); //coresPerApp=((app->getMeasuredPerformance()/_controlInterval)+1/(app->getTargetResponseTime()))*(app->getAlpha());
//coresPerApp=1/(app->getAlpha()*app->getTargetResponseTime());
//coresPerApp=(app->getAlpha()/app->getTargetResponseTime());
} // coresPerApp=((app->getMeasuredPerformance()/_controlInterval)+1/app->getTargetResponseTime())*(app->getAlpha());//coresPerApp=1/(app->getAlpha()*app->getTargetResponseTime());///
app->setCapacity(coresPerApp,controlInterval,true);
totalCoresNeeded+=coresPerApp;
}
return _coresToDistribute-totalCoresNeeded;
}
//-------------------------------------------------------------------------------------------------
//allocate capacity to applications. The steps of capacity allocations are:
// 1)Online Model Estimation-estimate the value of alpha for each application using RLS
//2)check if the capacity is sufficient for all applications
//3) Optimization-if the capcity is not sufficient then perform optimization
//-------------------------------------------------------------------------------------------------
void PriorityManager::allocate(double controlInterval, bool _usingRelativePenalty)
{
//Model estimation using RLS for each applications
estimate(controlInterval);
if(_usingRelativePenalty)//across class optimization
{
if(checkCapacity(controlInterval)<0)
{
Optimizer opt;
opt.optimizeBasedOnRelativePenalty(this, controlInterval);
}
}
else//per class optimization(strict priority)
{
double extra=setMinimumCapacity(controlInterval);//allocate minimum capacity to each app and return the surpless.
int p=1;//the first priority class
//distribute the extra capacity to each application down the class hierarchy
double remainingBalance=0,capToBeDistributed=0;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *pClass =getClass(p);
double totalMinCapPerClass=getPerClassMinCap(pClass,controlInterval);
//per class model estimation using RLS
//estimate(pClass,controlInterval);
if(p==1)
capToBeDistributed=extra+totalMinCapPerClass;
else
capToBeDistributed=remainingBalance+totalMinCapPerClass;
remainingBalance=checkCapacity(pClass, capToBeDistributed, controlInterval);
if(remainingBalance<0)
{
Optimizer opt;
opt.optimisePerPriority(pClass, controlInterval,capToBeDistributed);
return;
}
p++;//advance to the next priority class
}
}
}
//-------------------------------------------------------------------------------------------------
void PriorityManager::estimate(double controlInterval)//non-strict estimation
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator it = applications->begin(); it != applications->end(); it++)
{
Application *app = (Application*)it->second;
//double currentPerformance =app->getMeasuredPerformance();
double newAlpha=app->estimateAlpha(controlInterval);
app->setAlpha(newAlpha);
//double coresPerApp=app->getTargetPerformance()/newAlpha;
//(app->getModel()).setInput((coresPerApp,getMeasuredPerformance()/_controlInterval);// store cores and througput for computing the next interval alpha estimation
//app->setAlpha(newAlpha);
}
}
}
//-------------------------------------------------------------------------------------------------
/*void PriorityManager::estimate(PriorityClass *_obj,double controlInterval)//per class estimation
{
PriorityClass::Applications *applications =_obj->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
double currentPerformance =app->getMeasuredPerformance()/controlInterval;
double newAlpha=app->estimateAlpha(currentPerformance);
app->setAlpha(newAlpha);
}
}
*/
//-------------------------------------------------------------------------------------------------
double PriorityManager::setMinimumCapacity(double controlInterval)//set minimum capacity and return the extra
{
double capacityUsed=0;
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator it = applications->begin(); it != applications->end(); it++)
{
Application *app = (Application*)it->second;
double minCap=app->getBaseCapacity();
app->setCapacity(minCap,controlInterval,false);
capacityUsed+=minCap;
}
}
return totalCores-capacityUsed;
}
//_________________________________________________________________________________
double PriorityManager::getPerClassMinCap(PriorityClass *_obj, double controlInterval)
{
double totalMinCap=0;
PriorityClass::Applications *applications =_obj->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
double minCap=app->getBaseCapacity();
app->setCapacity(minCap,controlInterval,false);
totalMinCap+=minCap;
}
return totalMinCap;
}
//-------------------------------------------------------------------------------
void PriorityManager::setCapToVM(VirtualManager & _vmMgr)
{
for (Priorities::iterator iter = priorityList->begin(); iter != priorityList->end(); iter++)
{
PriorityClass *apps = (PriorityClass*)iter->second;
PriorityClass::Applications *applications =apps->getApplications();
for ( PriorityClass::Applications::iterator iter = applications->begin(); iter != applications->end(); iter++)
{
Application *app = (Application*)iter->second;
std::string vm=app->getName();
int cap=static_cast< int>(app->getCapacity()*100);
_vmMgr.setVmCap(vm,cap );
//(app->getModel()).setInput((app->getCapacity(),(app->getMeasuredPerformance())/_controlInterval);// store cores and througput for computing the next interval alpha estimation
}
}
}