A Load-Balancing Algorithm for Cluster-based Multi-core Web Servers

Size: px
Start display at page:

Download "A Load-Balancing Algorithm for Cluster-based Multi-core Web Servers"

Transcription

1 Journal of Computatonal Informaton Systems 7: 13 (2011) Avalable at A Load-Balancng Algorthm for Cluster-based Mult-core Web Servers Guohua YOU, Yng ZHAO College of Informaton Scence and Technology, Beng Unversty of Chemcal Technology, Beng , Chna Abstract The demand for hgh performance web servers leads to the utlzaton of mult-core cluster-based web servers. Furthermore, a lot of dynamc requests are changng tradtonal web envronment. So the load-balancng algorthm s crucal to the cluster-based web servers. However, tradtonal load balance algorthm dd not consder the servce tme dstrbuton of the dynamc requests and the characterstcs of mult-core web servers. Ths paper proposes a new load-balancng algorthm. The new approach, accordng to the servce tme dstrbuton of dynamc requests, assgns the dynamc requests, and keeps load balance n mult-core web servers by Genetc Algorthm. Smulaton experments have been done to evaluate the new algorthm. The obtaned results prove that the new algorthm s farer and has better performance. Keywords: Dynamc Requests; Web Server; Cluster; Mult-core; Genetc Algorthm 1. Introducton Wth the rapd development of Internet ndustry, people are more lke to rely on the web for ther daly actvtes. Consequently, the web servers played a crucal role n the world of nformaton and busness-orented servces. To meet demands of users, the web servers must be made wth hgher performance. One of the most popular schemes for addressng ths problem s cluster-based web servers [1, 2]. Fg.1 descrbes ts archtecture. The archtecture manly conssts of a web swtch and a set of web servers [3]. In ths desgn, we assume all the web server nodes are homogeneous. Conceptually, the web swtch acts as a centralzed global scheduler that assgns the requests based on load-balancng algorthm. Furthermore, wth the emergence of mult-core technology, most web servers began to adopt mult-core CPUs to mprove the hardware performance n past few years. Mult-core system ntegrates two or more processng cores nto one slcon chp [4]. In ths desgn, every processng core has ts own prvate L1 cache and shared L2 cache [5]. All the processng cores share the man memory and the system bandwdth. Fg.2 shows the archtecture of mult-core system. When the cluster-based web servers employ mult-core CPUs, there wll be some new problems. Each node of cluster has a servce applcaton ncludng multple threads, whch serve the requests. When the mult-thread applcaton n the mult-core node serves dynamc requests, t s easer to gve brth to png-pong effect [6], whch wll greatly degrade the performance of the mult-core system. To elmnate the png-pong effect, we ntroduce CPU affnty. CPU affnty s the capacty of bndng a process or thread to Correspondng author. Emal addresses: alan_you@163.com (Guohua YOU) / Copyrght 2011 Bnary Informaton Press December, 2011

2 4741 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) a specfc CPU core [7]. Some works [8-12] for mprovng the performance of applcatons n mult-core system by CPU affnty have been done. The processng of the dynamc requests s complcated. Some dynamc requests are very smple, but some dynamc requests are very complex. So the servce tme of the dynamc requests dffers greatly, and usually obeys heavy-taled dstrbuton [13]. Actually, some tradtonal load-balancng algorthms n cluster-based web servers, such as Round-Robn (RR), Content Aware Polcy (CAP) [14] and Weghted Round-Robn (WRR), ddn t consder the characterstcs of mult-core web servers and the servce tme dstrbuton of the dynamc requests. As a result, we proposed a load-balancng algorthm, whch could addresses the above-mentoned problems, and mprove the performance of the cluster-based mult-core web servers effectvely. Fg.1 Web Server Cluster Archtecture Fg.2 Archtecture of Mult-core CPUs [5] The remander of the paper s organzed as follows: The new load-balancng algorthm s descrbed n Secton 2. Secton 3 ntroduces the smulaton experments of the new algorthm and presents an evaluaton of the performance. And fnally, we present our conclusons n Secton New Load-balancng Algorthm 2.1. Descrpton of Algorthm In a webste, although there are a lot of dynamc requests, the types of dynamc requests are lmted. Many dynamc requests are dfferent ust because ther parameters are dfferent (For example, testexample.com/web.aspx?name=tom and but the requested pages are the same one. We consder the dynamc requests that request same page as same type. Generally, at a mult-core node of cluster, ncomng requests wll be assgned to the threads from a thread pool. When the same type dynamc requests are assgned to threads, these threads would execute the same code. Thus, these threads have shared data. Furthermore, accordng to the thread schedulng strategy of the mult-core system, O/S always tres to assgn these threads to dfferent processng cores due to load balance

3 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) between cores [15], so the shared data wll be contnually transferred between both L1 caches of the dfferent processng cores back and forth, whch s the png-pong effect. Fg.3 Load-balancng Algorthm Because the web server nodes n cluster are homogenous, we can assume that each web server node has the same amount of threads. So we can consder all the mult-core CPUs n the cluster as a Super Mult-core CPU. The Super CPU ncludes all cores of the cluster. Consequently, we can assgn the threads that serve the same type requests to the same core by hard affnty method. Moreover, for the load balancng between dfferent cores, we calculate the thread allocaton strategy by Genetc Algorthm. The load balance between cores could ensure the load balance between nodes n the cluster. As t s shown n Fg. 3, when they arrve at classfer from TCP queue, dynamc requests are classfed based on ther URLs and the same type requests wll be assgned to the same request queue. The weght of each request queue can be calculated based on the access frequency and the mean servce tme of ths knd of dynamc requests, whch can be ganed from log fle [16]. In a multple-threads system, CPU tme s allocated to every thread equally durng a CPU cycle, so the number of threads represents the proportons of CPU capacty. The number of threads that serve a request queue could be calculated based on the weght of the request queue. To avod the png-pong effect, all threads that process the same request queue should be assgned to the same core. After the thread allocaton scheme s determned, the dynamc requests n the request queues are assgned to these threads. Then these threads begn to execute. After executon, the results generate the new dynamc pages, whch are sent to network scheduled by I/O management, and these are responses. In the desgn, we deploy the new load-balancng algorthm nto web swtch Calculaton of Algorthm Parameter Weght of Dynamc Request Queue After ganng the number of vsts of each knd of requests at a specfed tme nterval from log fles, we can calculate the percentage C of the access tmes of the request queue n total access tmes of all

4 4743 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) request queues. Lkewse, we can calculate the average servce tme T of requests n the request queue. Thus, the weght W of the request queue can be calculated gven by W= CT (1) where M = 1 C = 1 and M s the total of the request queues Threads Number of Request Queue Accordng to the weght W of the request queue, the number λ of the threads that serve the request queue can be calculated based on the followng formula λ = M W = 1 W H (2) where H s the total of the threads n the thread pool, and M s the total of the request queues. λ s the number of threads that are used to handle the request queue, and t s an nteger through roundng Load Balance between Cores In order to avod the png-pong effect between threads, the threads servng the same request queue should be assgned to the same processng core as a whole. After these threads are allocated to the processng cores as a whole, the number of threads on cores dffers greatly too. Thus, ths wll gve rse to a new queston: load balance between cores. To keep load balance between cores, we must allocate the threads servng the same request queue to the same processng core and keep the number of threads on the dfferent cores evenly. We can solve the problem by means of the Genetc Algorthm. If the Super Mult-core CPU has N cores,and the number of the request queues s M. So we can defne the chromosome of the Genetc Algorthm as followng where R s an nteger and 0 R N 1. R s a gene n chromosome and represents the seral number of the core, to whch the threads servng the request queue are assgned. So a chromosome stands for a thread assgnment soluton. For purpose of brevty, we defne the threads that serve the same request queue as a Servce Thread Group ( STG ). If a STG serves the request queue, then t s STG. And the number of threads n STG s λ, whch has been calculated accordng to Formula (2). From chromosome, we can acqure all the

5 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) STGs that are allocated to core. If we defne the number of STGs on core as B, then we can enumerate all the STGs on core : STG, STG,..., STG,..., STG, 1 k B. A A A A 1 2 k B STG A k s the Servce Thread Group that serves request queue A k. If the number of threads on core s X, then X could be calculated by the followng formula: X B = λa k (3) k= 1 So we can get the number of threads on every core: X, X,..., X. We defne D( X ) as the 1 2 N varance of X, X,..., X. If D( X ) s large, t means that the numbers of threads on dfferent cores 1 2 N dffer greatly. So as to keep load balance between cores, the lower value of D( X ) s favorable. Therefore, we defne the ftness functon n the Genetc Algorthm as followng 1 f() e = DX ( ) + 1 (4) where e s a chromosome. Because the lower value of D( X ) s helpful to keep load balance between cores, and sometmes D( X ) mght be zero. So we use the recprocal of D( X ) + 1 as ftness functon. So the larger value of f ( e ) means better load balance between cores. Genetc Algorthm has the followng procedure: (1) Intal Populaton: a populaton s a collecton of chromosomes. The populaton sze L can be determned expermentally. The ntal populaton s usually generated randomly. We can generate L chromosomes by assgnng a random nteger, whch ranges from 0 to N 1, to every gene n chromosome. (2) Calculaton of the Ftness Value: we can use the ftness functon formula (4) and above method to calculate the ftness value of every chromosome n the populaton. (3) Selecton: we select the ftter chromosomes by the roulette wheel method. The greater the ftness values of a chromosome, the larger the probablty to be chosen. We repeat the selecton operaton as many tmes as the number of chromosomes. (4) Crossover: For the randomly selected couple of chromosomes, we decde whether to perform crossover or not based on crossover probablty. If the crossover s allowed, t wll generate a new couple of chromosomes by exchangng portons of the two old chromosomes. (5) Mutaton: we randomly choose a chromosome from the populaton. For a gene of the chromosome, we allow a random change wth very small probablty. If t happens, the gene wll be assgned to random nteger, whch ranges from 0 to N 1 and s dfferent from the orgn value of the gene. (6) Termnaton Condton: n Genetc Algorthm, the generatonal processes (2), (3), (4), and (5) are repeated. The chromosome wth the largest ftness value wll be recorded at each teraton. If the largest ftness value doesn t change for fve tmes, we thnk the teratons should be ended. Fnally, we gan the recorded chromosome wth the largest ftness value. From the chromosome, we can

6 4745 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) gan the best threads assgnment soluton, whch could keep the load balance between cores effectvely. And then the load balance between cores could ensure the load balance between nodes n the cluster. 3. Experments and Evaluaton 3.1. Experments Setup To valdate the new load-balancng algorthm, we developed a smulaton program, whch was called RSSP, deployed t n Web Swtch. Classfer n RSSP parses the request s URL, assgns the requests wth the same URL to the same request queue. After classfcaton, RSSP calculates the weghts of each request queue, and decde the number of threads that serve the request queues. Then the thread assgnment scheme could be determned based on the Genetc Algorthm. After the threads are assgned to the cores on the bass of thread assgnment soluton, the scheduler n RSSP could assgn the requests to the correspondng cores. We can utlze the hard affnty method to accomplsh the threads assgnment. In order to smulate the generaton of dynamc pages, we created 50 DLL fles nstead of 50 dynamc pages. When a request s assgned to a thread, the correspondng DLL fle would be loaded and executed so as to smulate the generaton procedure of the dynamc page. The functons of these DLL fles are dstnct. So the executon tme of these DLL fles s dfferent. Furthermore, the threads that execute the same dynamc web page have shared data. So we could set shared data n these DLL fles. The default value of shared data s 2k. So as to smulate the vst behavor of users to webstes, we desgned a sendng requests module, whch can automatcally send requests to the cluster-based web servers n a specfc arrval process. In our experment, the default arrval process s heavy-taled dstrbuton Results Evaluaton In ths secton, we dscuss the results of smulaton experments. We changed load ntensty and measured the cluster response tme, throughput and scalablty for the three schedulng polces: WRR, CAP and RSSP Mean Response Tme From Fg. 4 (a), we can see the mean response tme curves of three polces. For all algorthms, the average response tme curves are exponental. The average response tme curves are relatvely smooth at frst, and then begn to ncrease sharply wth the ncrease of clents. The average response tme of CAP algorthm s smlar to RSSP. However, they dffer greatly for hgher number of clents. As t can be seen n Fg.4 (a), the WRR has hgher average response tme than CAP and RSSP for all the number of clents. That s because one or more web servers n the cluster wth WRR scheme reaches to CPU bottleneck sooner due to shortcomng of load balance Throughput Evaluaton Fg.4 (b) llustrates the throughput of these algorthms n the cluster. Generally, throughput rses at frst as the number of clents ncrease, and then peaks when the CPU resource becomes bottleneck on web servers. From Fg.4 (b), we can see that WRR s easer to acheve a peak than CAP and RSSP because t reaches CPU bottleneck more easly. CAP ndcates comparable throughput to the throughput that s obtaned by

7 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) RSSP. However, because of better load balance, RSSP can respond to more clents than the WRR and CAP schemes, and can reach hgher throughput Scalablty for Three Schedulng Polces One of the mportant characterstc of a cluster s scalablty and load-balancng algorthm has great nfluence on the scalablty of the cluster. So we evaluate the scalablty of the cluster n terms of maxmum throughput. We measured the cluster maxmum throughput wth the change of number of servers. Fg. 4(c) demonstrates the scalablty of cluster wth ncreasng server nodes. RSSP has better scalablty than WRR and CAP due to better load balance. As the number of nodes ncreases, the throughput for CAP becomes more flat. That s because the overhead exsts n CAP algorthm. WRR has worse throughput than RSSP and CAP, because t has neffcent request assgnment scheme and blndness regardng type of requests. Fg.4 Evaluaton for Three Load Balance Algorthms (a) Mean Response Tme (b) Throughput (c) Scalablty (d) Mean Response Tme when Sze of Shared Data s Changed Changng the Shared Data In our experment, the DLL fles have the shared-data to smulate the dynamc web pages wth shared data. When we changed the sze of the shared data n 50 DLL fles, the mean response tme for three strateges was measured and shown on Fg. 4 (d). We can see that the mean response tme of WRR and CAP ncreases as the sze of the shared data ncreases. However, the mean response tme of RSSP changes lttle. The reason s that we adopted the new load-balancng algorthm, whch dspels the png-pong effect. When the sze of the shared data ncreases, the mpact on the mean response tme of RSSP s slght.

8 4747 G. You et al. /Journal of Computatonal Informaton Systems 7:13 (2011) Conclusons In order to avod the png-pong effect and mprove the performance of load balance n a cluster-based mult-core web server, we propose a new load-balancng algorthm, whch apples the affnty method to the cluster-based web server and tres to keep load balance between cores and nodes n cluster-based mult-core web server. We descrbe the prncple of the new algorthm and gve the calculaton formulas. Furthermore, we developed RSSP, a smulaton program based on the new method, and dd the smulaton experments usng t. We analyze the key ndces of performance and do compare wth WRR and CAP strateges. The new algorthm has better performance, and can avod the png-pong effect effectvely. Acknowledgement Ths paper has been partally supported by the Natonal Grand Fundamental Research 973 Program of Chna (No. 2011CB706900). References [1] E. Casalccho, V. Cardelln, and M. Colaann. Content-aware dspatchng algorthms for cluster-based web servers. Cluster Computng, 5: 65 74, [2] J. Yang, G. Tan, F. Wang, and D. Pan. Soluton to new task allocaton problem on mult-core clusters. Journal of Computatonal Informaton Systems, 7(5): , [3] S. Sharfan, S.A. Motamed, and M.K. Akbar. A predctve and probablstc load-balancng algorthm for cluster-based web servers. Appled Soft Computng, 11: , [4] P. Kongetra, K. Angaran, and K. Olukotun. Nagara: a 32-way multthreaded sparc processor. IEEE Mcro, 25: 21-29, [5] J. M. Calandrno, J. H. Anderson, and D. P. Baumberger. A hybrd real-tme schedulng approach for large-scale multcore platforms. In 19th Euromcro Conference on Real-Tme Systems (ECRTS'07), pages , [6] G. You, Y. Zhao. Dynamc requests schedulng model n mult-core web server. In the 9th Internatonal Conference on Grd and Cloud Computng (GCC2010), pages , [7] R. Bolla, R. Brusch. PC-based software routers: hgh performance and applcaton servce support. In Workshop on Programmable Routers for Extensble Servce of Tomorrow (PRESTO 08), pages 27-32, [8] A. Chonka, W. Zhou, K. Knapp, and Y. Xang. Protectng nformaton systems from DDoS attack usng mult-core methodology. In Proceedngs of the IEEE 8th Internatonal Conference on Computer and Informaton Technology, pages , [9] Y. Lu, J. Tang, J. Zhao, and X. L. A case study for montorng-orented programmng n mult-core archtecture. In Proceedngs of the 1st nternatonal workshop on Multcore software engneerng (IWMSE 08), pages 47-52, [10] R. Islam, W. Zhou, Y. Xang, and A. N. Mahmood. Spam flterng for network traffc securty on a mult-core envronment. Concurrency Computat.: Pract. Exper, 21: , [11] H. Feng, E. L, Y. Chen, and Y. Zhang. Parallelzaton and characterzaton of SIFT on mult-core systems. In IEEE Internatonal Symposum on Workload Characterzaton (IISWC 2008), pages 14-23, [12] C. Terboven, D. an Mey, D. Schmdl, H. Jn, and T. Rechsten. Data and thread affnty n openmp programs. In Proceedng of the 2008 workshop on Memory access on future processor (MAW 08), pages , [13] E. Hernández-Orallo, J. Vla-Carbó. Web server performance analyss usng hstogram workload models. Computer Networks, 53: , [14] M.Andreoln, E.Casalccho, M.Colaann, and M.Mambell. Acluster-based web system provdng dfferentated and guaranteed servces. Cluster Computng, 7 (1): 7 19, [15] S.B. Sddha. Mult-core and Lnux Kernel. pdf. [16] S. Sharfan, S. A. Motamed, and M. K. Akbar. A content-based load balancng algorthm wth admsson control for cluster webservers. Future Generaton Computer Systems, 24: , 2008.

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna wangtngzhong2@sna.cn Abstract.

More information

A New Task Scheduling Algorithm Based on Improved Genetic Algorithm

A New Task Scheduling Algorithm Based on Improved Genetic Algorithm A New Task Schedulng Algorthm Based on Improved Genetc Algorthm n Cloud Computng Envronment Congcong Xong, Long Feng, Lxan Chen A New Task Schedulng Algorthm Based on Improved Genetc Algorthm n Cloud Computng

More information

PAS: A Packet Accounting System to Limit the Effects of DoS & DDoS. Debish Fesehaye & Klara Naherstedt University of Illinois-Urbana Champaign

PAS: A Packet Accounting System to Limit the Effects of DoS & DDoS. Debish Fesehaye & Klara Naherstedt University of Illinois-Urbana Champaign PAS: A Packet Accountng System to Lmt the Effects of DoS & DDoS Debsh Fesehaye & Klara Naherstedt Unversty of Illnos-Urbana Champagn DoS and DDoS DDoS attacks are ncreasng threats to our dgtal world. Exstng

More information

Forecasting the Direction and Strength of Stock Market Movement

Forecasting the Direction and Strength of Stock Market Movement Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye cjngwe@stanford.edu mchen5@stanford.edu nanye@stanford.edu Abstract - Stock market s one of the most complcated systems

More information

Dynamic Fleet Management for Cybercars

Dynamic Fleet Management for Cybercars Proceedngs of the IEEE ITSC 2006 2006 IEEE Intellgent Transportaton Systems Conference Toronto, Canada, September 17-20, 2006 TC7.5 Dynamc Fleet Management for Cybercars Fenghu. Wang, Mng. Yang, Ruqng.

More information

Network Security Situation Evaluation Method for Distributed Denial of Service

Network Security Situation Evaluation Method for Distributed Denial of Service Network Securty Stuaton Evaluaton Method for Dstrbuted Denal of Servce Jn Q,2, Cu YMn,2, Huang MnHuan,2, Kuang XaoHu,2, TangHong,2 ) Scence and Technology on Informaton System Securty Laboratory, Bejng,

More information

Open Access A Load Balancing Strategy with Bandwidth Constraint in Cloud Computing. Jing Deng 1,*, Ping Guo 2, Qi Li 3, Haizhu Chen 1

Open Access A Load Balancing Strategy with Bandwidth Constraint in Cloud Computing. Jing Deng 1,*, Ping Guo 2, Qi Li 3, Haizhu Chen 1 Send Orders for Reprnts to reprnts@benthamscence.ae The Open Cybernetcs & Systemcs Journal, 2014, 8, 115-121 115 Open Access A Load Balancng Strategy wth Bandwdth Constrant n Cloud Computng Jng Deng 1,*,

More information

Improved SVM in Cloud Computing Information Mining

Improved SVM in Cloud Computing Information Mining Internatonal Journal of Grd Dstrbuton Computng Vol.8, No.1 (015), pp.33-40 http://dx.do.org/10.1457/jgdc.015.8.1.04 Improved n Cloud Computng Informaton Mnng Lvshuhong (ZhengDe polytechnc college JangSu

More information

An Interest-Oriented Network Evolution Mechanism for Online Communities

An Interest-Oriented Network Evolution Mechanism for Online Communities An Interest-Orented Network Evoluton Mechansm for Onlne Communtes Cahong Sun and Xaopng Yang School of Informaton, Renmn Unversty of Chna, Bejng 100872, P.R. Chna {chsun,yang}@ruc.edu.cn Abstract. Onlne

More information

Data Broadcast on a Multi-System Heterogeneous Overlayed Wireless Network *

Data Broadcast on a Multi-System Heterogeneous Overlayed Wireless Network * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 24, 819-840 (2008) Data Broadcast on a Mult-System Heterogeneous Overlayed Wreless Network * Department of Computer Scence Natonal Chao Tung Unversty Hsnchu,

More information

Study on Model of Risks Assessment of Standard Operation in Rural Power Network

Study on Model of Risks Assessment of Standard Operation in Rural Power Network Study on Model of Rsks Assessment of Standard Operaton n Rural Power Network Qngj L 1, Tao Yang 2 1 Qngj L, College of Informaton and Electrcal Engneerng, Shenyang Agrculture Unversty, Shenyang 110866,

More information

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ).

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ). REVIEW OF RISK MANAGEMENT CONCEPTS LOSS DISTRIBUTIONS AND INSURANCE Loss and nsurance: When someone s subject to the rsk of ncurrng a fnancal loss, the loss s generally modeled usng a random varable or

More information

Optimization Model of Reliable Data Storage in Cloud Environment Using Genetic Algorithm

Optimization Model of Reliable Data Storage in Cloud Environment Using Genetic Algorithm Internatonal Journal of Grd Dstrbuton Computng, pp.175-190 http://dx.do.org/10.14257/gdc.2014.7.6.14 Optmzaton odel of Relable Data Storage n Cloud Envronment Usng Genetc Algorthm Feng Lu 1,2,3, Hatao

More information

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7):1884-1889 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A hybrd global optmzaton algorthm based on parallel

More information

Survey on Virtual Machine Placement Techniques in Cloud Computing Environment

Survey on Virtual Machine Placement Techniques in Cloud Computing Environment Survey on Vrtual Machne Placement Technques n Cloud Computng Envronment Rajeev Kumar Gupta and R. K. Paterya Department of Computer Scence & Engneerng, MANIT, Bhopal, Inda ABSTRACT In tradtonal data center

More information

Resource Sharing Models and Heuristic Load Balancing Methods for

Resource Sharing Models and Heuristic Load Balancing Methods for Resource Sharng Models and Heurstc Load Balancng Methods for Grd Schedulng Problems Wanneng Shu 1,2, Lxn Dng 2,3,*, Shenwen Wang 2,3 1 College of Computer Scence, South-Central Unversty for Natonaltes,

More information

An Analysis of Central Processor Scheduling in Multiprogrammed Computer Systems

An Analysis of Central Processor Scheduling in Multiprogrammed Computer Systems STAN-CS-73-355 I SU-SE-73-013 An Analyss of Central Processor Schedulng n Multprogrammed Computer Systems (Dgest Edton) by Thomas G. Prce October 1972 Techncal Report No. 57 Reproducton n whole or n part

More information

A New Quality of Service Metric for Hard/Soft Real-Time Applications

A New Quality of Service Metric for Hard/Soft Real-Time Applications A New Qualty of Servce Metrc for Hard/Soft Real-Tme Applcatons Shaoxong Hua and Gang Qu Electrcal and Computer Engneerng Department and Insttute of Advanced Computer Study Unversty of Maryland, College

More information

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network

Forecasting the Demand of Emergency Supplies: Based on the CBR Theory and BP Neural Network 700 Proceedngs of the 8th Internatonal Conference on Innovaton & Management Forecastng the Demand of Emergency Supples: Based on the CBR Theory and BP Neural Network Fu Deqang, Lu Yun, L Changbng School

More information

Load Balancing By Max-Min Algorithm in Private Cloud Environment

Load Balancing By Max-Min Algorithm in Private Cloud Environment Internatonal Journal of Scence and Research (IJSR ISSN (Onlne: 2319-7064 Index Coperncus Value (2013: 6.14 Impact Factor (2013: 4.438 Load Balancng By Max-Mn Algorthm n Prvate Cloud Envronment S M S Suntharam

More information

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo.

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo. ICSV4 Carns Australa 9- July, 007 RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL Yaoq FENG, Hanpng QIU Dynamc Test Laboratory, BISEE Chna Academy of Space Technology (CAST) yaoq.feng@yahoo.com Abstract

More information

LITERATURE REVIEW: VARIOUS PRIORITY BASED TASK SCHEDULING ALGORITHMS IN CLOUD COMPUTING

LITERATURE REVIEW: VARIOUS PRIORITY BASED TASK SCHEDULING ALGORITHMS IN CLOUD COMPUTING LITERATURE REVIEW: VARIOUS PRIORITY BASED TASK SCHEDULING ALGORITHMS IN CLOUD COMPUTING 1 MS. POOJA.P.VASANI, 2 MR. NISHANT.S. SANGHANI 1 M.Tech. [Software Systems] Student, Patel College of Scence and

More information

Case Study: Load Balancing

Case Study: Load Balancing Case Study: Load Balancng Thursday, 01 June 2006 Bertol Marco A.A. 2005/2006 Dmensonamento degl mpant Informatc LoadBal - 1 Introducton Optmze the utlzaton of resources to reduce the user response tme

More information

Fault tolerance in cloud technologies presented as a service

Fault tolerance in cloud technologies presented as a service Internatonal Scentfc Conference Computer Scence 2015 Pavel Dzhunev, PhD student Fault tolerance n cloud technologes presented as a servce INTRODUCTION Improvements n technques for vrtualzaton and performance

More information

IWFMS: An Internal Workflow Management System/Optimizer for Hadoop

IWFMS: An Internal Workflow Management System/Optimizer for Hadoop IWFMS: An Internal Workflow Management System/Optmzer for Hadoop Lan Lu, Yao Shen Department of Computer Scence and Engneerng Shangha JaoTong Unversty Shangha, Chna lustrve@gmal.com, yshen@cs.sjtu.edu.cn

More information

Optimal Choice of Random Variables in D-ITG Traffic Generating Tool using Evolutionary Algorithms

Optimal Choice of Random Variables in D-ITG Traffic Generating Tool using Evolutionary Algorithms Optmal Choce of Random Varables n D-ITG Traffc Generatng Tool usng Evolutonary Algorthms M. R. Mosav* (C.A.), F. Farab* and S. Karam* Abstract: Impressve development of computer networks has been requred

More information

INVESTIGATION OF VEHICULAR USERS FAIRNESS IN CDMA-HDR NETWORKS

INVESTIGATION OF VEHICULAR USERS FAIRNESS IN CDMA-HDR NETWORKS 21 22 September 2007, BULGARIA 119 Proceedngs of the Internatonal Conference on Informaton Technologes (InfoTech-2007) 21 st 22 nd September 2007, Bulgara vol. 2 INVESTIGATION OF VEHICULAR USERS FAIRNESS

More information

A Secure Password-Authenticated Key Agreement Using Smart Cards

A Secure Password-Authenticated Key Agreement Using Smart Cards A Secure Password-Authentcated Key Agreement Usng Smart Cards Ka Chan 1, Wen-Chung Kuo 2 and Jn-Chou Cheng 3 1 Department of Computer and Informaton Scence, R.O.C. Mltary Academy, Kaohsung 83059, Tawan,

More information

Cloud Auto-Scaling with Deadline and Budget Constraints

Cloud Auto-Scaling with Deadline and Budget Constraints Prelmnary verson. Fnal verson appears In Proceedngs of 11th ACM/IEEE Internatonal Conference on Grd Computng (Grd 21). Oct 25-28, 21. Brussels, Belgum. Cloud Auto-Scalng wth Deadlne and Budget Constrants

More information

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification IDC IDC A Herarchcal Anomaly Network Intruson Detecton System usng Neural Network Classfcaton ZHENG ZHANG, JUN LI, C. N. MANIKOPOULOS, JAY JORGENSON and JOSE UCLES ECE Department, New Jersey Inst. of Tech.,

More information

Dynamic Scheduling of Emergency Department Resources

Dynamic Scheduling of Emergency Department Resources Dynamc Schedulng of Emergency Department Resources Junchao Xao Laboratory for Internet Software Technologes, Insttute of Software, Chnese Academy of Scences P.O.Box 8718, No. 4 South Fourth Street, Zhong

More information

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP)

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP) 6.3 / -- Communcaton Networks II (Görg) SS20 -- www.comnets.un-bremen.de Communcaton Networks II Contents. Fundamentals of probablty theory 2. Emergence of communcaton traffc 3. Stochastc & Markovan Processes

More information

Rate Monotonic (RM) Disadvantages of cyclic. TDDB47 Real Time Systems. Lecture 2: RM & EDF. Priority-based scheduling. States of a process

Rate Monotonic (RM) Disadvantages of cyclic. TDDB47 Real Time Systems. Lecture 2: RM & EDF. Priority-based scheduling. States of a process Dsadvantages of cyclc TDDB47 Real Tme Systems Manual scheduler constructon Cannot deal wth any runtme changes What happens f we add a task to the set? Real-Tme Systems Laboratory Department of Computer

More information

Sciences Shenyang, Shenyang, China.

Sciences Shenyang, Shenyang, China. Advanced Materals Research Vols. 314-316 (2011) pp 1315-1320 (2011) Trans Tech Publcatons, Swtzerland do:10.4028/www.scentfc.net/amr.314-316.1315 Solvng the Two-Obectve Shop Schedulng Problem n MTO Manufacturng

More information

Profit-Aware DVFS Enabled Resource Management of IaaS Cloud

Profit-Aware DVFS Enabled Resource Management of IaaS Cloud IJCSI Internatonal Journal of Computer Scence Issues, Vol. 0, Issue, No, March 03 ISSN (Prnt): 694-084 ISSN (Onlne): 694-0784 www.ijcsi.org 37 Proft-Aware DVFS Enabled Resource Management of IaaS Cloud

More information

Analysis of Energy-Conserving Access Protocols for Wireless Identification Networks

Analysis of Energy-Conserving Access Protocols for Wireless Identification Networks From the Proceedngs of Internatonal Conference on Telecommuncaton Systems (ITC-97), March 2-23, 1997. 1 Analyss of Energy-Conservng Access Protocols for Wreless Identfcaton etworks Imrch Chlamtac a, Chara

More information

Enabling P2P One-view Multi-party Video Conferencing

Enabling P2P One-view Multi-party Video Conferencing Enablng P2P One-vew Mult-party Vdeo Conferencng Yongxang Zhao, Yong Lu, Changja Chen, and JanYn Zhang Abstract Mult-Party Vdeo Conferencng (MPVC) facltates realtme group nteracton between users. Whle P2P

More information

A DYNAMIC CRASHING METHOD FOR PROJECT MANAGEMENT USING SIMULATION-BASED OPTIMIZATION. Michael E. Kuhl Radhamés A. Tolentino-Peña

A DYNAMIC CRASHING METHOD FOR PROJECT MANAGEMENT USING SIMULATION-BASED OPTIMIZATION. Michael E. Kuhl Radhamés A. Tolentino-Peña Proceedngs of the 2008 Wnter Smulaton Conference S. J. Mason, R. R. Hll, L. Mönch, O. Rose, T. Jefferson, J. W. Fowler eds. A DYNAMIC CRASHING METHOD FOR PROJECT MANAGEMENT USING SIMULATION-BASED OPTIMIZATION

More information

Software project management with GAs

Software project management with GAs Informaton Scences 177 (27) 238 241 www.elsever.com/locate/ns Software project management wth GAs Enrque Alba *, J. Francsco Chcano Unversty of Málaga, Grupo GISUM, Departamento de Lenguajes y Cencas de

More information

Efficient Bandwidth Management in Broadband Wireless Access Systems Using CAC-based Dynamic Pricing

Efficient Bandwidth Management in Broadband Wireless Access Systems Using CAC-based Dynamic Pricing Effcent Bandwdth Management n Broadband Wreless Access Systems Usng CAC-based Dynamc Prcng Bader Al-Manthar, Ndal Nasser 2, Najah Abu Al 3, Hossam Hassanen Telecommuncatons Research Laboratory School of

More information

On the Optimal Control of a Cascade of Hydro-Electric Power Stations

On the Optimal Control of a Cascade of Hydro-Electric Power Stations On the Optmal Control of a Cascade of Hydro-Electrc Power Statons M.C.M. Guedes a, A.F. Rbero a, G.V. Smrnov b and S. Vlela c a Department of Mathematcs, School of Scences, Unversty of Porto, Portugal;

More information

AN APPOINTMENT ORDER OUTPATIENT SCHEDULING SYSTEM THAT IMPROVES OUTPATIENT EXPERIENCE

AN APPOINTMENT ORDER OUTPATIENT SCHEDULING SYSTEM THAT IMPROVES OUTPATIENT EXPERIENCE AN APPOINTMENT ORDER OUTPATIENT SCHEDULING SYSTEM THAT IMPROVES OUTPATIENT EXPERIENCE Yu-L Huang Industral Engneerng Department New Mexco State Unversty Las Cruces, New Mexco 88003, U.S.A. Abstract Patent

More information

An Optimal Model for Priority based Service Scheduling Policy for Cloud Computing Environment

An Optimal Model for Priority based Service Scheduling Policy for Cloud Computing Environment An Optmal Model for Prorty based Servce Schedulng Polcy for Cloud Computng Envronment Dr. M. Dakshayn Dept. of ISE, BMS College of Engneerng, Bangalore, Inda. Dr. H. S. Guruprasad Dept. of ISE, BMS College

More information

An Evolutionary Game Theoretic Approach to Adaptive and Stable Application Deployment in Clouds

An Evolutionary Game Theoretic Approach to Adaptive and Stable Application Deployment in Clouds An Evolutonary Game Theoretc Approach to Adaptve and Stable Applcaton Deployment n Clouds Chonho Lee Unversty of Massachusetts, Boston Boston, MA 5, USA chonho@csumbedu Yuj Yamano OGIS Internatonal, Inc

More information

Project Networks With Mixed-Time Constraints

Project Networks With Mixed-Time Constraints Project Networs Wth Mxed-Tme Constrants L Caccetta and B Wattananon Western Australan Centre of Excellence n Industral Optmsaton (WACEIO) Curtn Unversty of Technology GPO Box U1987 Perth Western Australa

More information

Feature selection for intrusion detection. Slobodan Petrović NISlab, Gjøvik University College

Feature selection for intrusion detection. Slobodan Petrović NISlab, Gjøvik University College Feature selecton for ntruson detecton Slobodan Petrovć NISlab, Gjøvk Unversty College Contents The feature selecton problem Intruson detecton Traffc features relevant for IDS The CFS measure The mrmr measure

More information

Pricing Model of Cloud Computing Service with Partial Multihoming

Pricing Model of Cloud Computing Service with Partial Multihoming Prcng Model of Cloud Computng Servce wth Partal Multhomng Zhang Ru 1 Tang Bng-yong 1 1.Glorous Sun School of Busness and Managment Donghua Unversty Shangha 251 Chna E-mal:ru528369@mal.dhu.edu.cn Abstract

More information

Politecnico di Torino. Porto Institutional Repository

Politecnico di Torino. Porto Institutional Repository Poltecnco d Torno Porto Insttutonal Repostory [Artcle] A cost-effectve cloud computng framework for acceleratng multmeda communcaton smulatons Orgnal Ctaton: D. Angel, E. Masala (2012). A cost-effectve

More information

On File Delay Minimization for Content Uploading to Media Cloud via Collaborative Wireless Network

On File Delay Minimization for Content Uploading to Media Cloud via Collaborative Wireless Network On Fle Delay Mnmzaton for Content Uploadng to Meda Cloud va Collaboratve Wreless Network Ge Zhang and Yonggang Wen School of Computer Engneerng Nanyang Technologcal Unversty Sngapore Emal: {zh0001ge, ygwen}@ntu.edu.sg

More information

Resource Scheduling in Desktop Grid by Grid-JQA

Resource Scheduling in Desktop Grid by Grid-JQA The 3rd Internatonal Conference on Grd and Pervasve Computng - Worshops esource Schedulng n Destop Grd by Grd-JQA L. Mohammad Khanl M. Analou Assstant professor Assstant professor C.S. Dept.Tabrz Unversty

More information

Network Services Definition and Deployment in a Differentiated Services Architecture

Network Services Definition and Deployment in a Differentiated Services Architecture etwork Servces Defnton and Deployment n a Dfferentated Servces Archtecture E. kolouzou, S. Manats, P. Sampatakos,. Tsetsekas, I. S. Veners atonal Techncal Unversty of Athens, Department of Electrcal and

More information

An ILP Formulation for Task Mapping and Scheduling on Multi-core Architectures

An ILP Formulation for Task Mapping and Scheduling on Multi-core Architectures An ILP Formulaton for Task Mappng and Schedulng on Mult-core Archtectures Yng Y, We Han, Xn Zhao, Ahmet T. Erdogan and Tughrul Arslan Unversty of Ednburgh, The Kng's Buldngs, Mayfeld Road, Ednburgh, EH9

More information

A heuristic task deployment approach for load balancing

A heuristic task deployment approach for load balancing Xu Gaochao, Dong Yunmeng, Fu Xaodog, Dng Yan, Lu Peng, Zhao Ja Abstract A heurstc task deployment approach for load balancng Gaochao Xu, Yunmeng Dong, Xaodong Fu, Yan Dng, Peng Lu, Ja Zhao * College of

More information

Design and Development of a Security Evaluation Platform Based on International Standards

Design and Development of a Security Evaluation Platform Based on International Standards Internatonal Journal of Informatcs Socety, VOL.5, NO.2 (203) 7-80 7 Desgn and Development of a Securty Evaluaton Platform Based on Internatonal Standards Yuj Takahash and Yoshm Teshgawara Graduate School

More information

An Alternative Way to Measure Private Equity Performance

An Alternative Way to Measure Private Equity Performance An Alternatve Way to Measure Prvate Equty Performance Peter Todd Parlux Investment Technology LLC Summary Internal Rate of Return (IRR) s probably the most common way to measure the performance of prvate

More information

A Design Method of High-availability and Low-optical-loss Optical Aggregation Network Architecture

A Design Method of High-availability and Low-optical-loss Optical Aggregation Network Architecture A Desgn Method of Hgh-avalablty and Low-optcal-loss Optcal Aggregaton Network Archtecture Takehro Sato, Kuntaka Ashzawa, Kazumasa Tokuhash, Dasuke Ish, Satoru Okamoto and Naoak Yamanaka Dept. of Informaton

More information

A Programming Model for the Cloud Platform

A Programming Model for the Cloud Platform Internatonal Journal of Advanced Scence and Technology A Programmng Model for the Cloud Platform Xaodong Lu School of Computer Engneerng and Scence Shangha Unversty, Shangha 200072, Chna luxaodongxht@qq.com

More information

Network Aware Load-Balancing via Parallel VM Migration for Data Centers

Network Aware Load-Balancing via Parallel VM Migration for Data Centers Network Aware Load-Balancng va Parallel VM Mgraton for Data Centers Kun-Tng Chen 2, Chen Chen 12, Po-Hsang Wang 2 1 Informaton Technology Servce Center, 2 Department of Computer Scence Natonal Chao Tung

More information

IMPACT ANALYSIS OF A CELLULAR PHONE

IMPACT ANALYSIS OF A CELLULAR PHONE 4 th ASA & μeta Internatonal Conference IMPACT AALYSIS OF A CELLULAR PHOE We Lu, 2 Hongy L Bejng FEAonlne Engneerng Co.,Ltd. Bejng, Chna ABSTRACT Drop test smulaton plays an mportant role n nvestgatng

More information

SCHEDULING OF CONSTRUCTION PROJECTS BY MEANS OF EVOLUTIONARY ALGORITHMS

SCHEDULING OF CONSTRUCTION PROJECTS BY MEANS OF EVOLUTIONARY ALGORITHMS SCHEDULING OF CONSTRUCTION PROJECTS BY MEANS OF EVOLUTIONARY ALGORITHMS Magdalena Rogalska 1, Wocech Bożeko 2,Zdzsław Heduck 3, 1 Lubln Unversty of Technology, 2- Lubln, Nadbystrzycka 4., Poland. E-mal:rogalska@akropols.pol.lubln.pl

More information

The Load Balancing of Database Allocation in the Cloud

The Load Balancing of Database Allocation in the Cloud , March 3-5, 23, Hong Kong The Load Balancng of Database Allocaton n the Cloud Yu-lung Lo and Mn-Shan La Abstract Each database host n the cloud platform often has to servce more than one database applcaton

More information

P2P/ Grid-based Overlay Architecture to Support VoIP Services in Large Scale IP Networks

P2P/ Grid-based Overlay Architecture to Support VoIP Services in Large Scale IP Networks PP/ Grd-based Overlay Archtecture to Support VoIP Servces n Large Scale IP Networks We Yu *, Srram Chellappan # and Dong Xuan # * Dept. of Computer Scence, Texas A&M Unversty, U.S.A. {weyu}@cs.tamu.edu

More information

BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK. 0688, dskim@ssu.ac.kr

BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK. 0688, dskim@ssu.ac.kr Proceedngs of the 41st Internatonal Conference on Computers & Industral Engneerng BUSINESS PROCESS PERFORMANCE MANAGEMENT USING BAYESIAN BELIEF NETWORK Yeong-bn Mn 1, Yongwoo Shn 2, Km Jeehong 1, Dongsoo

More information

A GENETIC ALGORITHM-BASED METHOD FOR CREATING IMPARTIAL WORK SCHEDULES FOR NURSES

A GENETIC ALGORITHM-BASED METHOD FOR CREATING IMPARTIAL WORK SCHEDULES FOR NURSES 82 Internatonal Journal of Electronc Busness Management, Vol. 0, No. 3, pp. 82-93 (202) A GENETIC ALGORITHM-BASED METHOD FOR CREATING IMPARTIAL WORK SCHEDULES FOR NURSES Feng-Cheng Yang * and We-Tng Wu

More information

Genetic Algorithm Based Optimization Model for Reliable Data Storage in Cloud Environment

Genetic Algorithm Based Optimization Model for Reliable Data Storage in Cloud Environment Advanced Scence and Technology Letters, pp.74-79 http://dx.do.org/10.14257/astl.2014.50.12 Genetc Algorthm Based Optmzaton Model for Relable Data Storage n Cloud Envronment Feng Lu 1,2,3, Hatao Wu 1,3,

More information

ivoip: an Intelligent Bandwidth Management Scheme for VoIP in WLANs

ivoip: an Intelligent Bandwidth Management Scheme for VoIP in WLANs VoIP: an Intellgent Bandwdth Management Scheme for VoIP n WLANs Zhenhu Yuan and Gabrel-Mro Muntean Abstract Voce over Internet Protocol (VoIP) has been wdely used by many moble consumer devces n IEEE 802.11

More information

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur Module LOSSLESS IMAGE COMPRESSION SYSTEMS Lesson 3 Lossless Compresson: Huffman Codng Instructonal Objectves At the end of ths lesson, the students should be able to:. Defne and measure source entropy..

More information

A Replication-Based and Fault Tolerant Allocation Algorithm for Cloud Computing

A Replication-Based and Fault Tolerant Allocation Algorithm for Cloud Computing A Replcaton-Based and Fault Tolerant Allocaton Algorthm for Cloud Computng Tork Altameem Dept of Computer Scence, RCC, Kng Saud Unversty, PO Box: 28095 11437 Ryadh-Saud Araba Abstract The very large nfrastructure

More information

A Passive Network Measurement-based Traffic Control Algorithm in Gateway of. P2P Systems

A Passive Network Measurement-based Traffic Control Algorithm in Gateway of. P2P Systems roceedngs of the 7th World Congress The Internatonal Federaton of Automatc Control A assve Network Measurement-based Traffc Control Algorthm n Gateway of 2 Systems Ybo Jang, Weje Chen, Janwe Zheng, Wanlang

More information

The OC Curve of Attribute Acceptance Plans

The OC Curve of Attribute Acceptance Plans The OC Curve of Attrbute Acceptance Plans The Operatng Characterstc (OC) curve descrbes the probablty of acceptng a lot as a functon of the lot s qualty. Fgure 1 shows a typcal OC Curve. 10 8 6 4 1 3 4

More information

length LenS is less than the AppL packet length LenL,they are both poisson input process. Its data rate to rates = λs S S

length LenS is less than the AppL packet length LenL,they are both poisson input process. Its data rate to rates = λs S S COPYRIGHT IJCIT, IN 78-588 (PRINT, IN 8-54 (ONINE, VOUME 3, IUE, MANUCRIPT CODE: 7 Multple ervces chedulng wth Prorty-Queung Model Peng Ke, YuanXang and FuChuan N tate Key aboratory of oftware Engneerng,

More information

Watermark-based Provable Data Possession for Multimedia File in Cloud Storage

Watermark-based Provable Data Possession for Multimedia File in Cloud Storage Vol.48 (CIA 014), pp.103-107 http://dx.do.org/10.1457/astl.014.48.18 Watermar-based Provable Data Possesson for Multmeda Fle n Cloud Storage Yongjun Ren 1,, Jang Xu 1,, Jn Wang 1,, Lmng Fang 3, Jeong-U

More information

A Performance Analysis of View Maintenance Techniques for Data Warehouses

A Performance Analysis of View Maintenance Techniques for Data Warehouses A Performance Analyss of Vew Mantenance Technques for Data Warehouses Xng Wang Dell Computer Corporaton Round Roc, Texas Le Gruenwald The nversty of Olahoma School of Computer Scence orman, OK 739 Guangtao

More information

"Research Note" APPLICATION OF CHARGE SIMULATION METHOD TO ELECTRIC FIELD CALCULATION IN THE POWER CABLES *

Research Note APPLICATION OF CHARGE SIMULATION METHOD TO ELECTRIC FIELD CALCULATION IN THE POWER CABLES * Iranan Journal of Scence & Technology, Transacton B, Engneerng, ol. 30, No. B6, 789-794 rnted n The Islamc Republc of Iran, 006 Shraz Unversty "Research Note" ALICATION OF CHARGE SIMULATION METHOD TO ELECTRIC

More information

An Integrated Dynamic Resource Scheduling Framework in On-Demand Clouds *

An Integrated Dynamic Resource Scheduling Framework in On-Demand Clouds * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 30, 1537-1552 (2014) An Integrated Dynamc Resource Schedulng Framework n On-Demand Clouds * College of Computer Scence and Technology Zhejang Unversty Hangzhou,

More information

Hosting Virtual Machines on Distributed Datacenters

Hosting Virtual Machines on Distributed Datacenters Hostng Vrtual Machnes on Dstrbuted Datacenters Chuan Pham Scence and Engneerng, KyungHee Unversty, Korea pchuan@khu.ac.kr Jae Hyeok Son Scence and Engneerng, KyungHee Unversty, Korea sonaehyeok@khu.ac.kr

More information

A Dynamic Load Balancing for Massive Multiplayer Online Game Server

A Dynamic Load Balancing for Massive Multiplayer Online Game Server A Dynamc Load Balancng for Massve Multplayer Onlne Game Server Jungyoul Lm, Jaeyong Chung, Jnryong Km and Kwanghyun Shm Dgtal Content Research Dvson Electroncs and Telecommuncatons Research Insttute Daejeon,

More information

Stochastic Protocol Modeling for Anomaly Based Network Intrusion Detection

Stochastic Protocol Modeling for Anomaly Based Network Intrusion Detection Stochastc Protocol Modelng for Anomaly Based Network Intruson Detecton Juan M. Estevez-Tapador, Pedro Garca-Teodoro, and Jesus E. Daz-Verdejo Department of Electroncs and Computer Technology Unversty of

More information

Multi-sensor Data Fusion for Cyber Security Situation Awareness

Multi-sensor Data Fusion for Cyber Security Situation Awareness Avalable onlne at www.scencedrect.com Proceda Envronmental Scences 0 (20 ) 029 034 20 3rd Internatonal Conference on Envronmental 3rd Internatonal Conference on Envronmental Scence and Informaton Applcaton

More information

Cloud-based Social Application Deployment using Local Processing and Global Distribution

Cloud-based Social Application Deployment using Local Processing and Global Distribution Cloud-based Socal Applcaton Deployment usng Local Processng and Global Dstrbuton Zh Wang *, Baochun L, Lfeng Sun *, and Shqang Yang * * Bejng Key Laboratory of Networked Multmeda Department of Computer

More information

Self-Adaptive SLA-Driven Capacity Management for Internet Services

Self-Adaptive SLA-Driven Capacity Management for Internet Services Self-Adaptve SLA-Drven Capacty Management for Internet Servces Bruno Abrahao, Vrglo Almeda and Jussara Almeda Computer Scence Department Federal Unversty of Mnas Geras, Brazl Alex Zhang, Drk Beyer and

More information

End-to-end measurements of GPRS-EDGE networks have

End-to-end measurements of GPRS-EDGE networks have End-to-end measurements over GPRS-EDGE networks Juan Andrés Negrera Facultad de Ingenería, Unversdad de la Repúblca Montevdeo, Uruguay Javer Perera Facultad de Ingenería, Unversdad de la Repúblca Montevdeo,

More information

A Dynamic Energy-Efficiency Mechanism for Data Center Networks

A Dynamic Energy-Efficiency Mechanism for Data Center Networks A Dynamc Energy-Effcency Mechansm for Data Center Networks Sun Lang, Zhang Jnfang, Huang Daochao, Yang Dong, Qn Yajuan A Dynamc Energy-Effcency Mechansm for Data Center Networks 1 Sun Lang, 1 Zhang Jnfang,

More information

A Hierarchical Reliability Model of Service-Based Software System

A Hierarchical Reliability Model of Service-Based Software System 2009 33rd Annual IEEE Internatonal Computer Software and Applcatons Conference A Herarchcal Relablty Model of Servce-Based Software System Lun Wang, Xaoyng Ba, Lzhu Zhou Department of Computer Scence and

More information

THE APPLICATION OF DATA MINING TECHNIQUES AND MULTIPLE CLASSIFIERS TO MARKETING DECISION

THE APPLICATION OF DATA MINING TECHNIQUES AND MULTIPLE CLASSIFIERS TO MARKETING DECISION Internatonal Journal of Electronc Busness Management, Vol. 3, No. 4, pp. 30-30 (2005) 30 THE APPLICATION OF DATA MINING TECHNIQUES AND MULTIPLE CLASSIFIERS TO MARKETING DECISION Yu-Mn Chang *, Yu-Cheh

More information

A role based access in a hierarchical sensor network architecture to provide multilevel security

A role based access in a hierarchical sensor network architecture to provide multilevel security 1 A role based access n a herarchcal sensor network archtecture to provde multlevel securty Bswajt Panja a Sanjay Kumar Madra b and Bharat Bhargava c a Department of Computer Scenc Morehead State Unversty

More information

Optimized ready mixed concrete truck scheduling for uncertain factors using bee algorithm

Optimized ready mixed concrete truck scheduling for uncertain factors using bee algorithm Songklanakarn J. Sc. Technol. 37 (2), 221-230, Mar.-Apr. 2015 http://www.sst.psu.ac.th Orgnal Artcle Optmzed ready mxed concrete truck schedulng for uncertan factors usng bee algorthm Nuntana Mayteekreangkra

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy

Course outline. Financial Time Series Analysis. Overview. Data analysis. Predictive signal. Trading strategy Fnancal Tme Seres Analyss Patrck McSharry patrck@mcsharry.net www.mcsharry.net Trnty Term 2014 Mathematcal Insttute Unversty of Oxford Course outlne 1. Data analyss, probablty, correlatons, vsualsaton

More information

Ants Can Schedule Software Projects

Ants Can Schedule Software Projects Ants Can Schedule Software Proects Broderck Crawford 1,2, Rcardo Soto 1,3, Frankln Johnson 4, and Erc Monfroy 5 1 Pontfca Unversdad Católca de Valparaíso, Chle FrstName.Name@ucv.cl 2 Unversdad Fns Terrae,

More information

Computer Networks 55 (2011) 3503 3516. Contents lists available at ScienceDirect. Computer Networks. journal homepage: www.elsevier.

Computer Networks 55 (2011) 3503 3516. Contents lists available at ScienceDirect. Computer Networks. journal homepage: www.elsevier. Computer Networks 55 (2011) 3503 3516 Contents lsts avalable at ScenceDrect Computer Networks journal homepage: www.elsever.com/locate/comnet Bonded defct round robn schedulng for mult-channel networks

More information

Research on Evaluation of Customer Experience of B2C Ecommerce Logistics Enterprises

Research on Evaluation of Customer Experience of B2C Ecommerce Logistics Enterprises 3rd Internatonal Conference on Educaton, Management, Arts, Economcs and Socal Scence (ICEMAESS 2015) Research on Evaluaton of Customer Experence of B2C Ecommerce Logstcs Enterprses Yle Pe1, a, Wanxn Xue1,

More information

Resource Scheduling Based on Dynamic Dependence Injection in Virtualization-based Simulation Grid

Resource Scheduling Based on Dynamic Dependence Injection in Virtualization-based Simulation Grid Proceedngs of the 200 4th Internatonal Conference on Computer Supported Cooperatve Work n Desgn Resource Schedulng Based on Dynamc Dependence Injecton n Vrtualzaton-based Smulaton Grd Hanbng Lu,Hongy Su,

More information

Preventive Maintenance and Replacement Scheduling: Models and Algorithms

Preventive Maintenance and Replacement Scheduling: Models and Algorithms Preventve Mantenance and Replacement Schedulng: Models and Algorthms By Kamran S. Moghaddam B.S. Unversty of Tehran 200 M.S. Tehran Polytechnc 2003 A Dssertaton Proposal Submtted to the Faculty of the

More information

EVALUATING THE PERCEIVED QUALITY OF INFRASTRUCTURE-LESS VOIP. Kun-chan Lan and Tsung-hsun Wu

EVALUATING THE PERCEIVED QUALITY OF INFRASTRUCTURE-LESS VOIP. Kun-chan Lan and Tsung-hsun Wu EVALUATING THE PERCEIVED QUALITY OF INFRASTRUCTURE-LESS VOIP Kun-chan Lan and Tsung-hsun Wu Natonal Cheng Kung Unversty klan@cse.ncku.edu.tw, ryan@cse.ncku.edu.tw ABSTRACT Voce over IP (VoIP) s one of

More information

Schedulability Bound of Weighted Round Robin Schedulers for Hard Real-Time Systems

Schedulability Bound of Weighted Round Robin Schedulers for Hard Real-Time Systems Schedulablty Bound of Weghted Round Robn Schedulers for Hard Real-Tme Systems Janja Wu, Jyh-Charn Lu, and We Zhao Department of Computer Scence, Texas A&M Unversty {janjaw, lu, zhao}@cs.tamu.edu Abstract

More information

A Cluster Based Replication Architecture for Load Balancing in Peer-to-Peer Content Distribution

A Cluster Based Replication Architecture for Load Balancing in Peer-to-Peer Content Distribution A Cluster Based Replcaton Archtecture for Load Balancng n Peer-to-Peer Content Dstrbuton S.Ayyasamy 1 and S.N. Svanandam 2 1 Asst. Professor, Department of Informaton Technology, Tamlnadu College of Engneerng

More information

Selfish Constraint Satisfaction Genetic Algorithm for Planning a Long-distance Transportation Network

Selfish Constraint Satisfaction Genetic Algorithm for Planning a Long-distance Transportation Network JOURNAL OF COMPUTERS, VOL. 3, NO. 8, AUGUST 2008 77 Selfsh Constrant Satsfacton Genetc Algorthm for Plannng a Long-dstance Transportaton Network Takash Onoyama and Takuya Maekawa Htach Software Engneerng

More information

Adaptive and Dynamic Load Balancing in Grid Using Ant Colony Optimization

Adaptive and Dynamic Load Balancing in Grid Using Ant Colony Optimization Sandp Kumar Goyal et al. / Internatonal Journal of Engneerng and Technology (IJET) Adaptve and Dynamc Load Balancng n Grd Usng Ant Colony Optmzaton Sandp Kumar Goyal 1, Manpreet Sngh 1 Department of Computer

More information

行 政 院 國 家 科 學 委 員 會 補 助 專 題 研 究 計 畫 成 果 報 告 期 中 進 度 報 告

行 政 院 國 家 科 學 委 員 會 補 助 專 題 研 究 計 畫 成 果 報 告 期 中 進 度 報 告 行 政 院 國 家 科 學 委 員 會 補 助 專 題 研 究 計 畫 成 果 報 告 期 中 進 度 報 告 畫 類 別 : 個 別 型 計 畫 半 導 體 產 業 大 型 廠 房 之 設 施 規 劃 計 畫 編 號 :NSC 96-2628-E-009-026-MY3 執 行 期 間 : 2007 年 8 月 1 日 至 2010 年 7 月 31 日 計 畫 主 持 人 : 巫 木 誠 共 同

More information