The Load Balancing of Database Allocation in the Cloud

Size: px
Start display at page:

Download "The Load Balancing of Database Allocation in the Cloud"

Transcription

1 , 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 system. However, under the resource lmtatons of the host, evenly dstrbuted databases nto each host s an mportant ssue needed to be addressed. The database szes and the number of databases must be taken nto account for workload balancng among database hosts. If too many data or databases are gathered n only few database hosts, the data skew may occur and result n poor qualty of servce. Currently, how to evenly allocatng databases nto hosts has not been concerned yet. In ths research, we wll propose fve database allocaton algorthms for dstrbutng databases to hosts n the cloud platform. The equatons used to evaluate the devaton of database allocaton results are also provded n ths report. In our expermental study, one of proposed approach can perform very near optmal soluton. We hope that t wll help the practcal applcatons n the cloud platform. Index Terms cloud computng, database allocaton, load balancng, Best Ft Decreasng Strategy I. INTRODUCTION HE Cloud computng s an emergng busness soluton T and has brought to much attenton [7][2][8][9]. In the cloud platform, the Storage as a Servce (StaaS) s a busness model n whch a large company rents space n ther storage nfrastructure to a smaller company or ndvdual [2][24]. It can address the requrements of each software servce to dstrbute the storage space and all knds of the servce on the resource pool. Cloud storage servces allow users through the web-based applcatons at any place and any tme va Internet-connected devces for facltate the use of ts storage capabltes wthout the need for extra propretary storage system. The storage layer s the man core of the cloud storage, lke nfrastructure as a servce (IaaS) n cloud computng, whch s composed of varous types of storage devces dspersed n dfferent regons. In ths storage layer, ether DAS, FC SAN, SCSI or NAS of IP storage devces can be ntegrated by consoldaton system of storage vrtualzaton technology. Thus remote montorng and management for all devces can be performed n ths consoldaton system. Moreover, there must be collaboraton between dfferent storage devces, and provdes a sngle ntegrated servces. Due to a great dversty and large volume of data n the cloud, the databases are spread across a broad range of hosts to serve numerous of users and must have suffcent scalablty and management capabltes to face any specfc data needs n real tme. Therefore, several researches on how to effcently manage databases n cloud platform have been proposed [6][][][3][6]. Yu-Lung Lo and Mn-Shan La are wth the Department of Informaton management, Chaoyang Unversty of Technology, Wufong Dstrct, Tachung, 4349 Tawan. Phone: ext. 4274; fax: ; e-mal: yllo@cyut.edu.tw; s468@cyut.edu.tw. A database management system on the database server to serve a large number of users s qute resource consumpton, such as the demand on storage space and memory as well as the executng database engne for servce and management of the database. On the practcal applcaton, a host often serves more than one database applcaton systems concurrently. Accordngly, f too many of them share the lmted resources of a host, t may decrease the effcency of the applcaton systems. Therefore, how to allocate varous szes and the number of databases to every host evenly s one of most mportant ssues for ensurng the good performance n the cloud. However, t has not been dscussed untl now. In ths paper, we would lke to study the load balancng of database allocatons n the cloud by consderng both two factors of the varous szes of databases and the number of databases. The remanng of ths paper s organzed as follows: n secton 2, we revew the related works of data allocatons. Then, n secton 3, we propose fve algorthms for database allocaton n cloud platform. After that, we desgn experments to evaluate the effcences of proposed approaches n secton 4. Fnally, a concluson s gven n the last secton. II. RELATED WORKS Cloud nfrastructure conssts of global master nodes and local slave nodes. Databases are always allocated n slave nodes to serve as database hosts. A database host can serve more than one database and the applcaton systems concurrently. There stll has not any report to address the load balancng ssue for database hosts n the cloud platform. There s a smlar concept by Mackey et al [9] for storng small fles n HDFS effcently and mprovng the space utlzaton for metadata. HDFS stands for Hadoop archtecture conssts of a dstrbuted fle system [25]. We wll brefly ntroduce Mackey's approach n ths secton. Furthermore, snce the deas of Round-robn schedulng and the Best ft decreasng strategy wll be used n our proposed schemes, we would also lke to gve an ntroducton for them. A. Metadata Management for Small Fles n HDFS The Hadoop archtecture conssts of a Dstrbuted fle system (HDFS) and a programmng framework MapReduce [2]. It s formed wth a metadata server called the Name node and a large number of I/O nodes called Data nodes, such that a sngle Name node keeps metadata of all fles on dfferent Data nodes as shown n Fgure [9]. In conventonal mult-user envronments, users are gven quotas to access and use such that the HDFS provdes for a mechansm to put quotas on user drectores. In Hadoop s mplementaton, cluster admnstrators are gven two optons for applyng user quotas; ) maxmum number of fles per drectory 2) maxmum fle space for a user drectory. Mackey et al dscuss ther work on these optons [9]. Fgure 2 shows two cases where an

2 , March 3-5, 23, Hong Kong ncomng request may exceed the quota lmtatons. Assumng the user quota for number of fles s seven and storage s 7GB. N shows the current number of fles and S shows the current storage capacty. User 2 n the fgure has reached the lmt on the number of fles, although the space quota s stll under utlzaton. User n has reached the space lmt, but the number of fles s under utlzaton. In both cases, users wll not be allowed to proceed wth the MapReduce job because of the nablty to create new fles n the respectve drectory [9]. C. Best Ft Decreasng Strategy Best ft decreasng strategy s often used to solve the bn packng problem and look for the near optmal soluton [4][5]. In the problem, objects of dfferent volumes (szes) must be packed nto a fnte number of bns wth lmted capacty each n a way that mnmzes the number of bns used. In another smlar problem that the objects dstrbuted nto all the bns are most evenly. By best ft decreasng strategy, the objects are frst sorted nto decreasng order accordng to szes. In the each teraton, the current largest object s assgned to the bn whch currently owns the smallest volumes of packs assgned. Ths process s repeated untl all the objects have been assgned as shown n Fgure 4. In the fgure, P and P 2 could be bns, and B, B 2,..., B 8 could be packages n decreasng order accordng to sze. Ths scheme s also used n many research felds such as data processng and data allocatons [8][][2]. Fgure. Hadoop fle system [9] Fgure 4. Best Ft Decreasng Strategy III. LOAD BALANCING FOR DATABASE ALLOCATIONS Fgure 2. An ncomng request May be exceedng number of fles quota or storage quota [9] B. Round-Robn Schedulng Round-robn schedulng [4] s a smple algorthm desgned especally for tme-sharng systems for arrangng processes n an operatng system n whch all runnable processes are kept n a crcular queue as shown n Fgure 3. The CPU scheduler goes around ths queue and allocates the CPU to each process for a tme nterval of tme slces wthout prorty. It provdes a complete farness among the processes. Round-robn algorthm has been wdely used n many schedulng approaches [5][3][23]. A database host often serves a number of database management systems. If too many of databases share the lmted resources of a host concurrently, t may decrease the effcency of the applcaton systems. Therefore, evenly desgnatng varous szes and the number of databases to every host can ensure the effcences of applcaton systems n the cloud. In ths secton, we desgn fve allocaton algorthms for allocatng databases to the hosts. The volumes of data and the number of databases are taken nto account for load balancng the allocatons. Suppose that all the databases have been sorted n decreasng order accordng to ther szes and wll be allocated nto hosts n ths sequence. A. Round-Robn Allocaton Round-robn allocaton uses the dea of Round-Robn schedulng to allocate databases n round robn fashon as shown n Fgure 5. In the fgure, D, D 2,..., and etc. denote the databases n decreasng order of szes, and are perodcally allocated to hosts N to N 5. Ths allocaton scheme can guarantee to desgnate the number of databases to every host n an optmal dstrbuton. Nevertheless, t cannot ensure the volumes of data n every host beng evenly. Fgure 3. Round-robn schedulng [23]

3 , March 3-5, 23, Hong Kong B. Z-Dstrbuton Fgure 5. Round-Robn Allocaton Z-Dstrbuton modfes the Round-robn allocaton to allocate databases nto hosts n a Z lke manner. In ths approach, databases are sequentally desgnated to hosts from N to N5 n odd teratons and to hosts from N5 to N n even teratons, as shown n Fgure 6. Ths scheme lke Round-robn allocaton can well dstrbute the number of databases to host. In addton, t can dstrbute the volumes of data to every host more evenly than Round-robn allocaton. E. Quantty Rato Allocaton Quantty Rato Allocaton tres to desgnate the databases wth the smallest volumes of data together wth the largest volumes of data to a same host. Snce databases are sorted n decreasng order, a host allocated a few number of databases but large volumes of data should delay the desgnaton and wat for the smaller ones. The Equaton () s desgned for evaluatng the Quantty Rato (QR ) for the host, where NDB avg and DB avg denote the average number of databases and the average data volume respectvely whch each host can be allocated, NDB and DB denote the number of databases and the data volume respectvely already allocated n the th host concurrently. The next desgnaton of database wll go for the host wth the hghest value of quantty rato. We also note that the lmted number of databases for each host can also be appled n ths approach to evenly desgnate the number of databases to hosts. QR DB DB avg = () NDBavg NDB Let's gve an example for llustraton. Suppose that the known average number of databases (NDB avg ) s and average data volume s 5GB. If host A has already been allocated one database wth data volume of GB, ts quantty rato wll be 5.6 (5/9=). If the other host B has already been allocated fve databases wth total data volume of 9GB, ts quantty rato wll be 2 (6/5=). Snce host B has the hgher quantty rato, the next database wll be desgnated to host B. The host A wll be delayed and wat for allocatng smaller databases. Fgure 6. Z-dstrbuton C. Best Ft Decreasng Strategy wth Sze Frst Best ft decreasng strategy wth sze frst uses the Best ft decreasng strategy [5] to allocate databases nto hosts wth consderng the szes of databases only. The desgnaton of ths scheme s smlar to that of the Fgure 4. Ths allocaton method emphaszes that t tres to evenly dstrbutng the volumes of data nstead of the number of databases to each hosts. D. Best Ft Decreasng Strategy wth Lmted Number of Databases Best ft decreasng strategy wth lmted number of databases also use the Best ft decreasng strategy to allocate databases nto hosts addtonal the number of databases s lmted n each host. When the number of databases allocated reaches the lmtaton of a host, the host won't be assgned database agan and the database s allocated to the next host wth smallest volume of data. In ths approach, we specfy the average number of databases (each host assgned f evenly dstrbuted) for the lmted number of databases for each host. Therefore, we can evenly allocate the number of databases to hosts lke n Round-robn allocaton and Z-dstrbuton. However, the load balance of volume of data for each host may not as good as Best ft decreasng strategy wth sze frst. IV. PERFORMANCE STUDY In order to evaluate the performances of our proposed database allocaton schemes, a seres of experments are performed n ths secton. A. Expermental Model We frst desgn followng 3 equatons to evaluate how balance of our fve allocaton approaches. D N sze = NoOfDBs DR = n = n = D D DB DB = sze total avg NDB NDB 2 N + N NoOfDBs total 2 avg (2) (3) (4) In Equaton (2), D sze denotes the total sze of devaton whch accumulates the dfference between the deally average data volume should be allocated and the actually data s allocated to each host. Where n s the total number of databases, DB s the data volume allocated n the th host and DB avg s the deally average data volume should be allocated to every host. In Equaton (3), N NoOfDBs denotes the total number of database devaton whch gathers the dfference between deally average number of databases should be allocated and the actually number of databases are allocated to each host. Where n s the total number of databases, NDB s the number

4 , March 3-5, 23, Hong Kong of databases allocated n the th host and NDB avg s the deally average number of databases should be allocated to every host. In Equaton (4), DR denotes the normalzed Devaton Rato whch looks devaton ratos of sze (D sze / D total ) and of the number of databases (N NoOfDBs / N total ) as an coordnate n two dmensonal space and computes the dstance to the orgn (, ). Where D total s the total sze (volume) of all databases and N total s the total number of databases beng allocated. We normalze the D sze and N NoOfDBs to the ratos of (D sze / D total ) and (N NoOfDBs / N total ), respectvely, n whch ther values are between and such that no one wll overly domnate the DR value f D zse or N NoOfDBs s too vast. The parameters of our experment are presented n Table. Suppose that the database szes are not unformly dstrbuted. The szes of databases are vared and can be determned by the Zpf-lke dstrbuton as shown s Equaton (5) [7][22]. In ths equaton, B s the sze of the th database, R s the total data volume of all databases, Z b s the database skew, and b s the total number of databases. We note that when Z b =, the equaton becomes a Zpf dstrbuton, and when Z b =, t s a unform dstrbuton. The sze dstrbutons for databases when Z b equals to,.5, and. are shown n Fgure 7. In addton, Szes of the largest database and the smallest database for Z b vared from. to. are presented n Table 2. If Z b =, the largest and smallest databases consst of 3.36TB and.3tb data respectvely. Furthermore, databases are sorted n decreasng order accordng to ther szes before allocated to hosts. Parameter Table. expermental parameters settng Hosts (n) Number of databases (b) Total data volume ( R ) TB Database skew (Z b ).~. B = b R j j= (5) =. =.5 =. Table 2. The szes of largest and smallest DBs for varous Z b Z b Largest DB (TB) Smallest DB(TB) For easer dscusson and labelng, Best Ft Decreasng Strategy wth Sze Frst and Best Ft Decreasng Strategy wth Lmted Number of Databases Allocatons wll be shorten as BestFt_Sze and BestFt_NDB, respectvely, n ths secton. The expermental results are shown n the followng subsectons. Our expermentaton conssts of fve parts: () Analyss of database sze devaton () Analyss of the number of database devaton () Analyss of devaton rato (v) Analyss of Scalablty (v) Optmalty study B. Analyss of database sze devaton In ths study, the database sze devatons after databases allocated n hosts are nvestgated. The Equaton (2) s used for computng the total sze of devaton whch accumulates the dfference between the deally average data volume should be allocated and the actually data s allocated to each host. The expermental result s shown n Fgure 8. There s no doubt that the database sze devatons of all allocaton approaches are ncreasng as rsng the database skew from. to.. It's due to the hgher database skew the more dffculty to dstrbute databases to each host evenly. In the fgure, the Quantty Rato allocaton can most evenly allocate databases to hosts when database skew s mnor such as Z b <=.4. However, the BestFt_Sze outperforms all other allocaton schemes f Z b >=.5. That's because ths study consders the database szes as the only nfluence factor and BestFt_Sze allocaton only focuses on balancng the data volume to every host. Snce the Round-robn allocaton consders evenly dstrbutng the number of databases to all the hosts only and gnores the effect of data volume dstrbutons, t performs the worst n ths study GB TB BestFt_Sze BestFt_NDB Round-Robn Z-Dstrbuton Database IDs Fgure 7. DB szes n Zp-lke dstrbutons Fgure 8. Analyss of database sze devaton

5 , March 3-5, 23, Hong Kong C. Analyss of the number of database devaton In ths secton, we examne the number of database devaton. The Equaton (3) s used for calculatng the total number of database devaton whch gathers the dfference between the deally the average number of databases should be allocated and the actually number of databases are allocated to each host. The expermental result s shown n Fgure 9. In the fgure, all approaches can perfectly allocate the even number of databases to every host except BestFt_Sze. To evenly dstrbute the number of databases to all hosts s not taken nto account by BestFt_Sze allocaton. Therefore, the number of database devaton for BestFt_Sze grows up as ncreasng the database skew. No. of DBs BestFt_Sze BestFt_NDB Round-Robn Z-Dstrbuton Fgure 9. Analyss of the number of database devaton D. Analyss of Devaton Rato Snce the studes of prevous two sectons consdered ether database sze devaton or the number of database devaton only, both of them wll be taken nto account smultaneously n ths secton. To prevent any one of these two devaton factors over domnatng the expermental results, they are normalzed to desgn the total devaton rato calculated by Equaton (5). We use ths equaton to analyze the devaton ratos of fve approaches. The expermental result s presented n Fgure. We can fnd that Quantty rato allocaton performs best n fve schemes. The BestFt_NDB almost acts as good as Quantty rato allacton when Z b >=.7. Nevertheless, the BestFt_NDB performs worse than Quantty rato allocaton and stands n the second best f Z b <.7. We also note that Round-robn allocaton whch consders evenly dstrbutng the number of databases only almost performs the worst except when Z b =. In addton, the Bestft_Sze s very senstve to database skew when ncreasng the skew the devaton ratos of BestFt_Sze grows most rapdly and becomes the worst when Z b =. DR BestFt_Sze BestFt_NDB Round-Robn Z-Dstrbuton E. Analyss of Scalablty The scalablty of our fve allocaton approaches are examned n ths secton. In ths study, the total number of databases s vared from 5 to 3. The total data volume and the number of hosts are stll fxed for TB and, respectvely. The database skew (Z b ) s fxed at.5. The devaton rato by Equaton (4) s used to evaluate the performances of allocaton schemes. The expermental result s shown n Fgure. All the devaton ratos of fve approaches are decreased as we ncreasng the number of databases. It s due to that more number of databases, whch mples smaller data volume for every database, s more easly to balance the database allocatons. Moreover, the Quantty rato allocaton stll outperforms the other four approaches. It benefted greatly by larger number of databases. DR BestFt_Sze BestFt_NDB Round-Robn Z-Dstrbuton No. of DBs Fgure. Analyss of scalablty F. Optmalty study By devaton rato analyss, the Quantty rato allocaton s the best approach for database allocaton. In ths secton, we would lke to nvestgate Quantty rato allocaton comparng to optmal soluton for devaton rato to fnd how well Quantty rato allocaton already be. We defne that the database allocaton wth the smallest devaton rato s the optmal soluton. However, to fnd optmal soluton for smallest devaton rato, there are databases and hosts n our experment whch lke the bn packng problem s an NP hard problem [4] and can result n combnatons of possble database allocatons. It s mpossble to be done n our PC devces. Therefore, we narrow down the expermental scale to 2 databases and 4 hosts whch stll has 4 2 (over one trllon) combnatons of possble database allocatons. The total data volume s also decreased to TB. We look for the smallest devaton rato for the optmal soluton from all the possble combnatons and compare wth Quantty rato allocaton. The expermental result s presented n Fgure 2. We are glad that the devaton ratos for Quantty rato allocaton and optmal soluton are very close. It means that Quantty rato allocaton perform very well and s near optmal soluton. Although ths study s only for small scale expermental envronment, we optmstcally expect that t stll can perform well n real practcal applcatons Fgure. Analyss of devaton rato

6 , March 3-5, 23, Hong Kong DR Optmal Fgure 2. Quantty rato vs. optmal soluton V. CONCLUSION Storage as a Servces (StaaS) s one of the mportant servces n Cloud platform. All the essental applcatons and database servces are gathered here. In ths Cloud platform, databases are dspersed across a broad range of hosts to servce numerous users. A database management system whch needs storage space for data and memory for database engne runnng s qute resource consumpton. On the practcal applcaton, a host often serves more than one database applcaton systems concurrently. Therefore, balance allocated databases to every host can ensure the effcency of each applcaton system. In ths paper, we proposed fve database allocaton schemes n whch both data volume and the number of databases are taken nto account. A devaton rato, whch s derved by normalzed data sze devaton and the number of databases devaton, s desgned for evaluatng the degree of evenly dstrbuted databases. Our expermental results pont out that the Quantty rato allocaton approach has the best performance and s very close to the smallest devaton rato of optmal soluton. Besdes, f evenly dstrbuted data volume to each host s most concerned, the Best Ft Decreasng Strategy wth Sze Frst approach (BestFt_Sze) can perform t well. In addton, f the lmtaton of CPU power and memory s serous to care for, all proposed approaches, except BestFt_Sze, can evenly allocate the number of databases to each host. REFERENCES [] S.A. Cook, The Complexty of Theorem Provng Procedures, In proceedngs of 3rd Annual ACM Symposum on the Theory of Computng, New York: ACM. 97: [2] J. Dean and S. Ghemawat, MapReduce: Smplfed Data Processng on Large Clusters, In Proceedngs of the 6th Symposum on Operatng System Desgn and Implementaton (OSDI 4), Usenx Assoc., pages 37 5, 24. [3] D.J. DeWtt, J. Gray, Parallel Database Systems: The Future of Hgh Performance Database Systems, Comm. ACM 35 (6), 85-98, 992. [4] M.R. Garey and D.S. Johnson, Computers and Intractablty: A Gude to the Theory of NP Completeness, Freeman, San Francsco, 979. [5] D.S. Johnson, Near-optmal bn packng algorthms, Ph.D. Thess, MIT, Cambrdge, MA, 973. [6] J.L. Johnson, SQL n the Clouds, Computng n Scence and Engneerng, pp. 2-28, July/August, 29. [7] Y. Kakuda, H. Yuktomo, S. Kusumoto, and T. Kkuno, "Scentfc Computng n the Cloud, " IEEE Desgn & Test, Vol. 2, Issue 3, IEEE Computer Socety Press, pp , May 2. [8] M. Ktsuregawa and Y. Ogawa. Bucket spreadng parallel hash: A new, robust, parallel hash jon method for data skew n the super database computer (SDC), In Proc. of 6th Int l Conf. on VLDB, pages 2-22, Brsbane, Australa, August 99. [9] G. Mackey, S. Sehrsh and J. Wang, "Improvng metadata management for small fles n HDFS," CLUSTER 9. IEEE Internatonal Conference on Cluster Computng and Workshops, September, 29. [] V. Mateljan, D. Csc, and D. Ogrzovc, Cloud Database-as-a-Servce (DaaS) ROI, proceedngs of the 33rd Internatonal Conventon MIPRO, pp , May 2. [] Z. Man and Z. Nong, The Study of Multmeda Data Model Technology Based on Cloud Computng, The 2nd Internatonal Conference on Sgnal Processng Systems (ICSPS), pp. V3-743-V3-746, July 2. [2] A. Mchael, F. Armando, G. Rean, A. D. Joseph, K. Randy, K. Andy, L. Gunho, P. Davd, R. Arel, S. Ion, and Z. Mate, A Vew of Cloud Computng, Communcatons of the ACM, Vol.53, No. 4, pp. 5-58, 2. [3] J. Rogers,O. Papaemmanoul, and U. Cetntemel, "A Generc Auto-Provsonng Framework for Cloud Databases," IEEE 26th Internatonal Conference on Data Engneerng Workshops (ICDEW), pp , 2. [4] A. Slberschatz, P. B. Galvn, and G. Gagne, " Process Schedulng," Operatng System Concepts, John Wley & Sons, Inc., 8th edton. pp. 94, 2. [5] T. Stöhr, H. Märtens, E. Rahm, Mult-Dmensonal Database Allocaton for Parallel Data Warehouses, Proc. 26th VLDB Conference, Caro, Egypt, Sep. 2. [6] N.E. Taylor and Z.G. Ives, Relable Storage and Queryng for Collaboratve Data Sharng Systems, IEEE 26th Internatonal Conference on Data Engneerng (ICDE), pp. 4-5, 2. [7] C. Turbyfll. Comparatve Benchmark of Relatonal Database System,. PhD thess, Cornell Unversty, September 987. [8] M.A. Vouk, Cloud Computng- Issues, Research and Implementatons, the 3th Internatonal Conference on Informaton Technology Interfaces, pp. 3-4, June 23-26, 28. [9] E. Walker, W. Brsken, and J. Romney, To Lease or Not to Lease from Storage Clouds, Computer, Vol. 43, Issue 4, IEEE Computer Socety Press, pp. 6-9, Aprl 2. [2] J.L. Wolf, D.M. Das, P.S. Yu, and J. Turek, Comparatve performance of parallel jon algorthms, In Proc. of Int l Conf. on Parallel and Dstrbuted Informaton Systems, pages 78-88, Mam, Florda, December 99. [2] S. Zhang, S. Zhang, X. Chen, and X. Huo, Cloud Computng Research and Development Trend, the 2nd Internatonal Conference on Future Networks, pp , Jan. 2. [22] G.K. Zpf, Human Behavor and the Prncple of Least Effort: An Introducton to Human Ecology, Addson-Welsey, Readng, MA [23] Y.F., Zheng, C., Shao, An effcent round-robn algorthm for combned nput-crosspont-queued swtches, In: Dn P, ed. Proc. of the IEEE ICAS/ICNS, Papeete: IEEE Computer Socety, pp , 25. [24] Gartner Says Cloud Computng Wll Be as Influental as E-busness, October 29, [25] The Hadoop archtecture,

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

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

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

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

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

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 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

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

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

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

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

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

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

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

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

J. Parallel Distrib. Comput. Environment-conscious scheduling of HPC applications on distributed Cloud-oriented data centers

J. Parallel Distrib. Comput. Environment-conscious scheduling of HPC applications on distributed Cloud-oriented data centers J. Parallel Dstrb. Comput. 71 (2011) 732 749 Contents lsts avalable at ScenceDrect J. Parallel Dstrb. Comput. ournal homepage: www.elsever.com/locate/pdc Envronment-conscous schedulng of HPC applcatons

More information

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic

Institute of Informatics, Faculty of Business and Management, Brno University of Technology,Czech Republic Lagrange Multplers as Quanttatve Indcators n Economcs Ivan Mezník Insttute of Informatcs, Faculty of Busness and Management, Brno Unversty of TechnologCzech Republc Abstract The quanttatve role of Lagrange

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

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

Methodology to Determine Relationships between Performance Factors in Hadoop Cloud Computing Applications

Methodology to Determine Relationships between Performance Factors in Hadoop Cloud Computing Applications Methodology to Determne Relatonshps between Performance Factors n Hadoop Cloud Computng Applcatons Lus Eduardo Bautsta Vllalpando 1,2, Alan Aprl 1 and Alan Abran 1 1 Department of Software Engneerng and

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

J. Parallel Distrib. Comput.

J. Parallel Distrib. Comput. J. Parallel Dstrb. Comput. 71 (2011) 62 76 Contents lsts avalable at ScenceDrect J. Parallel Dstrb. Comput. journal homepage: www.elsever.com/locate/jpdc Optmzng server placement n dstrbuted systems n

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

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

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

Calculating the high frequency transmission line parameters of power cables

Calculating the high frequency transmission line parameters of power cables < ' Calculatng the hgh frequency transmsson lne parameters of power cables Authors: Dr. John Dcknson, Laboratory Servces Manager, N 0 RW E B Communcatons Mr. Peter J. Ncholson, Project Assgnment Manager,

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

METHODOLOGY TO DETERMINE RELATIONSHIPS BETWEEN PERFORMANCE FACTORS IN HADOOP CLOUD COMPUTING APPLICATIONS

METHODOLOGY TO DETERMINE RELATIONSHIPS BETWEEN PERFORMANCE FACTORS IN HADOOP CLOUD COMPUTING APPLICATIONS METHODOLOGY TO DETERMINE RELATIONSHIPS BETWEEN PERFORMANCE FACTORS IN HADOOP CLOUD COMPUTING APPLICATIONS Lus Eduardo Bautsta Vllalpando 1,2, Alan Aprl 1 and Alan Abran 1 1 Department of Software Engneerng

More information

Can Auto Liability Insurance Purchases Signal Risk Attitude?

Can Auto Liability Insurance Purchases Signal Risk Attitude? Internatonal Journal of Busness and Economcs, 2011, Vol. 10, No. 2, 159-164 Can Auto Lablty Insurance Purchases Sgnal Rsk Atttude? Chu-Shu L Department of Internatonal Busness, Asa Unversty, Tawan Sheng-Chang

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

Fair Virtual Bandwidth Allocation Model in Virtual Data Centers

Fair Virtual Bandwidth Allocation Model in Virtual Data Centers Far Vrtual Bandwdth Allocaton Model n Vrtual Data Centers Yng Yuan, Cu-rong Wang, Cong Wang School of Informaton Scence and Engneerng ortheastern Unversty Shenyang, Chna School of Computer and Communcaton

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

Checkng and Testng in Nokia RMS Process

Checkng and Testng in Nokia RMS Process An Integrated Schedulng Mechansm for Fault-Tolerant Modular Avoncs Systems Yann-Hang Lee Mohamed Youns Jeff Zhou CISE Department Unversty of Florda Ganesvlle, FL 326 yhlee@cse.ufl.edu Advanced System Technology

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

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

1 Example 1: Axis-aligned rectangles

1 Example 1: Axis-aligned rectangles COS 511: Theoretcal Machne Learnng Lecturer: Rob Schapre Lecture # 6 Scrbe: Aaron Schld February 21, 2013 Last class, we dscussed an analogue for Occam s Razor for nfnte hypothess spaces that, n conjuncton

More information

A Novel Auction Mechanism for Selling Time-Sensitive E-Services

A Novel Auction Mechanism for Selling Time-Sensitive E-Services A ovel Aucton Mechansm for Sellng Tme-Senstve E-Servces Juong-Sk Lee and Boleslaw K. Szymansk Optmaret Inc. and Department of Computer Scence Rensselaer Polytechnc Insttute 110 8 th Street, Troy, Y 12180,

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 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

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

A Load-Balancing Algorithm for Cluster-based Multi-core Web Servers Journal of Computatonal Informaton Systems 7: 13 (2011) 4740-4747 Avalable at http://www.jofcs.com A Load-Balancng Algorthm for Cluster-based Mult-core Web Servers Guohua YOU, Yng ZHAO College of Informaton

More information

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION Vson Mouse Saurabh Sarkar a* a Unversty of Cncnnat, Cncnnat, USA ABSTRACT The report dscusses a vson based approach towards trackng of eyes and fngers. The report descrbes the process of locatng the possble

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

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

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

Section 5.4 Annuities, Present Value, and Amortization

Section 5.4 Annuities, Present Value, and Amortization Secton 5.4 Annutes, Present Value, and Amortzaton Present Value In Secton 5.2, we saw that the present value of A dollars at nterest rate per perod for n perods s the amount that must be deposted today

More information

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK Sample Stablty Protocol Background The Cholesterol Reference Method Laboratory Network (CRMLN) developed certfcaton protocols for total cholesterol, HDL

More information

A DATA MINING APPLICATION IN A STUDENT DATABASE

A DATA MINING APPLICATION IN A STUDENT DATABASE JOURNAL OF AERONAUTICS AND SPACE TECHNOLOGIES JULY 005 VOLUME NUMBER (53-57) A DATA MINING APPLICATION IN A STUDENT DATABASE Şenol Zafer ERDOĞAN Maltepe Ünversty Faculty of Engneerng Büyükbakkalköy-Istanbul

More information

Modeling and Analysis of 2D Service Differentiation on e-commerce Servers

Modeling and Analysis of 2D Service Differentiation on e-commerce Servers Modelng and Analyss of D Servce Dfferentaton on e-commerce Servers Xaobo Zhou, Unversty of Colorado, Colorado Sprng, CO zbo@cs.uccs.edu Janbn We and Cheng-Zhong Xu Wayne State Unversty, Detrot, Mchgan

More information

Performance Analysis of Energy Consumption of Smartphone Running Mobile Hotspot Application

Performance Analysis of Energy Consumption of Smartphone Running Mobile Hotspot Application Internatonal Journal of mart Grd and lean Energy Performance Analyss of Energy onsumpton of martphone Runnng Moble Hotspot Applcaton Yun on hung a chool of Electronc Engneerng, oongsl Unversty, 511 angdo-dong,

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

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT Toshhko Oda (1), Kochro Iwaoka (2) (1), (2) Infrastructure Systems Busness Unt, Panasonc System Networks Co., Ltd. Saedo-cho

More information

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression Novel Methodology of Workng Captal Management for Large Publc Constructons by Usng Fuzzy S-curve Regresson Cheng-Wu Chen, Morrs H. L. Wang and Tng-Ya Hseh Department of Cvl Engneerng, Natonal Central Unversty,

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

Ring structure of splines on triangulations

Ring structure of splines on triangulations www.oeaw.ac.at Rng structure of splnes on trangulatons N. Vllamzar RICAM-Report 2014-48 www.rcam.oeaw.ac.at RING STRUCTURE OF SPLINES ON TRIANGULATIONS NELLY VILLAMIZAR Introducton For a trangulated regon

More information

Finite Math Chapter 10: Study Guide and Solution to Problems

Finite Math Chapter 10: Study Guide and Solution to Problems Fnte Math Chapter 10: Study Gude and Soluton to Problems Basc Formulas and Concepts 10.1 Interest Basc Concepts Interest A fee a bank pays you for money you depost nto a savngs account. Prncpal P The amount

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

How To Understand The Results Of The German Meris Cloud And Water Vapour Product

How To Understand The Results Of The German Meris Cloud And Water Vapour Product Ttel: Project: Doc. No.: MERIS level 3 cloud and water vapour products MAPP MAPP-ATBD-ClWVL3 Issue: 1 Revson: 0 Date: 9.12.1998 Functon Name Organsaton Sgnature Date Author: Bennartz FUB Preusker FUB Schüller

More information

Power Low Modified Dual Priority in Hard Real Time Systems with Resource Requirements

Power Low Modified Dual Priority in Hard Real Time Systems with Resource Requirements Power Low Modfed Dual Prorty n Hard Real Tme Systems wth Resource Requrements M.Angels Moncusí, Alex Arenas {amoncus,aarenas}@etse.urv.es Dpt d'engnyera Informàtca Matemàtques Unverstat Rovra Vrgl Campus

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

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

The Greedy Method. Introduction. 0/1 Knapsack Problem

The Greedy Method. Introduction. 0/1 Knapsack Problem The Greedy Method Introducton We have completed data structures. We now are gong to look at algorthm desgn methods. Often we are lookng at optmzaton problems whose performance s exponental. For an optmzaton

More information

DBA-VM: Dynamic Bandwidth Allocator for Virtual Machines

DBA-VM: Dynamic Bandwidth Allocator for Virtual Machines DBA-VM: Dynamc Bandwdth Allocator for Vrtual Machnes Ahmed Amamou, Manel Bourguba, Kamel Haddadou and Guy Pujolle LIP6, Perre & Mare Cure Unversty, 4 Place Jusseu 755 Pars, France Gand SAS, 65 Boulevard

More information

Logical Development Of Vogel s Approximation Method (LD-VAM): An Approach To Find Basic Feasible Solution Of Transportation Problem

Logical Development Of Vogel s Approximation Method (LD-VAM): An Approach To Find Basic Feasible Solution Of Transportation Problem INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME, ISSUE, FEBRUARY ISSN 77-866 Logcal Development Of Vogel s Approxmaton Method (LD- An Approach To Fnd Basc Feasble Soluton Of Transportaton

More information

Period and Deadline Selection for Schedulability in Real-Time Systems

Period and Deadline Selection for Schedulability in Real-Time Systems Perod and Deadlne Selecton for Schedulablty n Real-Tme Systems Thdapat Chantem, Xaofeng Wang, M.D. Lemmon, and X. Sharon Hu Department of Computer Scence and Engneerng, Department of Electrcal Engneerng

More information

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services An Evaluaton of the Extended Logstc, Smple Logstc, and Gompertz Models for Forecastng Short Lfecycle Products and Servces Charles V. Trappey a,1, Hsn-yng Wu b a Professor (Management Scence), Natonal Chao

More information

Joint Scheduling of Processing and Shuffle Phases in MapReduce Systems

Joint Scheduling of Processing and Shuffle Phases in MapReduce Systems Jont Schedulng of Processng and Shuffle Phases n MapReduce Systems Fangfe Chen, Mural Kodalam, T. V. Lakshman Department of Computer Scence and Engneerng, The Penn State Unversty Bell Laboratores, Alcatel-Lucent

More information

Power-of-Two Policies for Single- Warehouse Multi-Retailer Inventory Systems with Order Frequency Discounts

Power-of-Two Policies for Single- Warehouse Multi-Retailer Inventory Systems with Order Frequency Discounts Power-of-wo Polces for Sngle- Warehouse Mult-Retaler Inventory Systems wth Order Frequency Dscounts José A. Ventura Pennsylvana State Unversty (USA) Yale. Herer echnon Israel Insttute of echnology (Israel)

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

Activity Scheduling for Cost-Time Investment Optimization in Project Management

Activity Scheduling for Cost-Time Investment Optimization in Project Management PROJECT MANAGEMENT 4 th Internatonal Conference on Industral Engneerng and Industral Management XIV Congreso de Ingenería de Organzacón Donosta- San Sebastán, September 8 th -10 th 010 Actvty Schedulng

More information

Efficient Striping Techniques for Variable Bit Rate Continuous Media File Servers æ

Efficient Striping Techniques for Variable Bit Rate Continuous Media File Servers æ Effcent Strpng Technques for Varable Bt Rate Contnuous Meda Fle Servers æ Prashant J. Shenoy Harrck M. Vn Department of Computer Scence, Department of Computer Scences, Unversty of Massachusetts at Amherst

More information

An Enhanced Super-Resolution System with Improved Image Registration, Automatic Image Selection, and Image Enhancement

An Enhanced Super-Resolution System with Improved Image Registration, Automatic Image Selection, and Image Enhancement An Enhanced Super-Resoluton System wth Improved Image Regstraton, Automatc Image Selecton, and Image Enhancement Yu-Chuan Kuo ( ), Chen-Yu Chen ( ), and Chou-Shann Fuh ( ) Department of Computer Scence

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

Conferencing protocols and Petri net analysis

Conferencing protocols and Petri net analysis Conferencng protocols and Petr net analyss E. ANTONIDAKIS Department of Electroncs, Technologcal Educatonal Insttute of Crete, GREECE ena@chana.tecrete.gr Abstract: Durng a computer conference, users desre

More information

M3S MULTIMEDIA MOBILITY MANAGEMENT AND LOAD BALANCING IN WIRELESS BROADCAST NETWORKS

M3S MULTIMEDIA MOBILITY MANAGEMENT AND LOAD BALANCING IN WIRELESS BROADCAST NETWORKS M3S MULTIMEDIA MOBILITY MANAGEMENT AND LOAD BALANCING IN WIRELESS BROADCAST NETWORKS Bogdan Cubotaru, Gabrel-Mro Muntean Performance Engneerng Laboratory, RINCE School of Electronc Engneerng Dubln Cty

More information

Multi-Resource Fair Allocation in Heterogeneous Cloud Computing Systems

Multi-Resource Fair Allocation in Heterogeneous Cloud Computing Systems 1 Mult-Resource Far Allocaton n Heterogeneous Cloud Computng Systems We Wang, Student Member, IEEE, Ben Lang, Senor Member, IEEE, Baochun L, Senor Member, IEEE Abstract We study the mult-resource allocaton

More information

An MILP model for planning of batch plants operating in a campaign-mode

An MILP model for planning of batch plants operating in a campaign-mode An MILP model for plannng of batch plants operatng n a campagn-mode Yanna Fumero Insttuto de Desarrollo y Dseño CONICET UTN yfumero@santafe-concet.gov.ar Gabrela Corsano Insttuto de Desarrollo y Dseño

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

taposh_kuet20@yahoo.comcsedchan@cityu.edu.hk rajib_csedept@yahoo.co.uk, alam_shihabul@yahoo.com

taposh_kuet20@yahoo.comcsedchan@cityu.edu.hk rajib_csedept@yahoo.co.uk, alam_shihabul@yahoo.com G. G. Md. Nawaz Al 1,2, Rajb Chakraborty 2, Md. Shhabul Alam 2 and Edward Chan 1 1 Cty Unversty of Hong Kong, Hong Kong, Chna taposh_kuet20@yahoo.comcsedchan@ctyu.edu.hk 2 Khulna Unversty of Engneerng

More information

An Intelligent Policy System for Channel Allocation of Information Appliance

An Intelligent Policy System for Channel Allocation of Information Appliance Tamkang Journal of Scence and Engneerng, Vol. 5, No., pp. 63-68 (2002) 63 An Intellgent Polcy System for Channel Allocaton of Informaton Applance Cheng-Yuan Ku, Chang-Jnn Tsao 2 and Davd Yen 3 Department

More information

RELIABILITY, RISK AND AVAILABILITY ANLYSIS OF A CONTAINER GANTRY CRANE ABSTRACT

RELIABILITY, RISK AND AVAILABILITY ANLYSIS OF A CONTAINER GANTRY CRANE ABSTRACT Kolowrock Krzysztof Joanna oszynska MODELLING ENVIRONMENT AND INFRATRUCTURE INFLUENCE ON RELIABILITY AND OPERATION RT&A # () (Vol.) March RELIABILITY RIK AND AVAILABILITY ANLYI OF A CONTAINER GANTRY CRANE

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

Optimization of File Allocation for Video Sharing Servers

Optimization of File Allocation for Video Sharing Servers Optmzaton of Fle Allocaton for Vdeo Sharng Servers Emad Mohamed Abd Elrahman Abousabea, Hossam Aff To cte ths verson: Emad Mohamed Abd Elrahman Abousabea, Hossam Aff. Optmzaton of Fle Allocaton for Vdeo

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

Multi-Source Video Multicast in Peer-to-Peer Networks

Multi-Source Video Multicast in Peer-to-Peer Networks ult-source Vdeo ultcast n Peer-to-Peer Networks Francsco de Asís López-Fuentes*, Eckehard Stenbach Technsche Unverstät ünchen Insttute of Communcaton Networks, eda Technology Group 80333 ünchen, Germany

More information

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika.

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika. VRT012 User s gude V0.1 Thank you for purchasng our product. We hope ths user-frendly devce wll be helpful n realsng your deas and brngng comfort to your lfe. Please take few mnutes to read ths manual

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

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

How Sets of Coherent Probabilities May Serve as Models for Degrees of Incoherence

How Sets of Coherent Probabilities May Serve as Models for Degrees of Incoherence 1 st Internatonal Symposum on Imprecse Probabltes and Ther Applcatons, Ghent, Belgum, 29 June 2 July 1999 How Sets of Coherent Probabltes May Serve as Models for Degrees of Incoherence Mar J. Schervsh

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

FORMAL ANALYSIS FOR REAL-TIME SCHEDULING

FORMAL ANALYSIS FOR REAL-TIME SCHEDULING FORMAL ANALYSIS FOR REAL-TIME SCHEDULING Bruno Dutertre and Vctora Stavrdou, SRI Internatonal, Menlo Park, CA Introducton In modern avoncs archtectures, applcaton software ncreasngly reles on servces provded

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

Statistical algorithms in Review Manager 5

Statistical algorithms in Review Manager 5 Statstcal algorthms n Reve Manager 5 Jonathan J Deeks and Julan PT Hggns on behalf of the Statstcal Methods Group of The Cochrane Collaboraton August 00 Data structure Consder a meta-analyss of k studes

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

Resource Management and Organization in CROWN Grid

Resource Management and Organization in CROWN Grid Resource Management and Organzaton n CROWN Grd Jnpeng Hua, Tanyu Wo, Yunhao Lu Dept. of Computer Scence and Technology, Behang Unversty Dept. of Computer Scence, Hong Kong Unversty of Scence & Technology

More information

On the Interaction between Load Balancing and Speed Scaling

On the Interaction between Load Balancing and Speed Scaling On the Interacton between Load Balancng and Speed Scalng Ljun Chen and Na L Abstract Speed scalng has been wdely adopted n computer and communcaton systems, n partcular, to reduce energy consumpton. An

More information

Luby s Alg. for Maximal Independent Sets using Pairwise Independence

Luby s Alg. for Maximal Independent Sets using Pairwise Independence Lecture Notes for Randomzed Algorthms Luby s Alg. for Maxmal Independent Sets usng Parwse Independence Last Updated by Erc Vgoda on February, 006 8. Maxmal Independent Sets For a graph G = (V, E), an ndependent

More information

A Parallel Architecture for Stateful Intrusion Detection in High Traffic Networks

A Parallel Architecture for Stateful Intrusion Detection in High Traffic Networks A Parallel Archtecture for Stateful Intruson Detecton n Hgh Traffc Networks Mchele Colajann Mrco Marchett Dpartmento d Ingegnera dell Informazone Unversty of Modena {colajann, marchett.mrco}@unmore.t Abstract

More information

FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES

FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES FREQUENCY OF OCCURRENCE OF CERTAIN CHEMICAL CLASSES OF GSR FROM VARIOUS AMMUNITION TYPES Zuzanna BRO EK-MUCHA, Grzegorz ZADORA, 2 Insttute of Forensc Research, Cracow, Poland 2 Faculty of Chemstry, Jagellonan

More information

An Adaptive and Distributed Clustering Scheme for Wireless Sensor Networks

An Adaptive and Distributed Clustering Scheme for Wireless Sensor Networks 2007 Internatonal Conference on Convergence Informaton Technology An Adaptve and Dstrbuted Clusterng Scheme for Wreless Sensor Networs Xnguo Wang, Xnmng Zhang, Guolang Chen, Shuang Tan Department of Computer

More information

A Novel Scalable Architecture of Cloud Storage System for Small Files based on P2P

A Novel Scalable Architecture of Cloud Storage System for Small Files based on P2P 2012 IEEE Internatonal Conference on Cluster Computng Workshops A Novel Scalable Archtecture of Cloud Storage System for Small Fles based on P2P ZHANG Q-fe, PAN Xue-zeng, SHEN Yan College of Computer Scence

More information