A Modified Key Partitioning for BigData Using MapReduce in Hadoop

Size: px
Start display at page:

Download "A Modified Key Partitioning for BigData Using MapReduce in Hadoop"

Transcription

1 Joural of Computer Sciece Origial Research Paper A Modified Key Partitioig for BigData Usig MapReduce i Hadoop Gothai Ekambaram ad Balasubramaie Palaisamy Departmet of CSE, Kogu Egieerig College, Erode , Tamiladu, Idia Article history Received: Revised: Accepted: Correspodig Author: Gothai Ekambaram Departmet of CSE, Kogu Egieerig College, Erode , Tamiladu, Idia kothaie@yahoo.co.i Abstract: I the period of BigData, massive amouts of structured ad ustructured data are beig created every day by a multitude of everpreset sources. BigData is complicated to work with ad eeds extremely parallel software executig o a huge umber of computers. MapReduce is a curret programmig model that makes simpler writig distributed applicatios which maipulate BigData. I order to make MapReduce to work, it has to divide the workload betwee the computers i the etwork. As a result, the performace of MapReduce vigorously depeds o how cosistetly it distributes this study load. This ca be a challege, particularly i the arrival of data skew. I MapReduce, workload allocatio depeds o the algorithm that partitios the data. How cosistetly the partitioer distributes the data depeds o how huge ad delegate the sample is ad o how healthy the samples are examied by the partitioig method. This study recommeds a ehaced partitioig algorithm usig modified key partitioig that advaces load balacig ad memory utilizatio. This is completed via a ehaced samplig algorithm ad partitioer. To estimate the proposed algorithm, its performace was compared agaist a high-tech partitioig mechaism employed by TeraSort. Experimetatios demostrate that the proposed algorithm is quicker, more memory efficiet ad more accurate tha the existig implemetatio. Keywords: Hadoop, Hash Code, Partitioig, MapReduce Itroductio Over the past decades, computer techology has become icreasigly ubiquitous. Computig devices have umerous uses ad are essetial for busiesses, scietists, govermets, egieers ad the everyday cosumer. What all these devices have i geeral is the probable to produce data. I essece, data ca arrive from everywhere. The majority types of data have a propesity to have their ow distictive set of characteristics over ad above how that data is dispersed. Data that is ot examied or utilized has small sigificace ad ca be a waste of space ad resources. O the cotrary, data that is executed o or examied ca be of immeasurable value. The data itself may be too huge to store o a sigle computer. As a result, i order to decrease the time it takes to execute the data ad to have the storage space to store the data, software egieers have to write dow programs that ca perform o 2 or more computers ad dispese the workload amogst them. While abstractly the computatio to execute may be straightforward, traditioally the implemetatio has bee complicated. I reactio to these extremely same matters, egieers at Google built up the Google File System (GFS) as stated by (Ghemawat et al., 2003), a distributed file system desig represetatio for major data processig ad formed the MapReduce programmig model by (Dea ad Ghemawat, 2008). Hadoop is a ope source implemetatio of MapReduce, writte i Java, iitially developed by Yahoo. Ta et al. (2009) stated that Hadoop was built i respose to the eed for a MapReduce structure that was ufettered by proprietal liceses, i additio to the icreasig eed for the techology i Cloud computig. Hive, Pig, ZooKeeper ad HBase are all examples of regularly utilized extesios to the Hadoop structure. Likewise, this study also cocetrates o Hadoop ad examies the load balacig mechaism i Hadoop s MapReduce skeleto for small-sized to medium-sized clusters. I summary, this study presets a techique for icreasig the work load distributio amog odes i the MapReduce framework, a techique to decrease the 2015 Gothai Ekambaram ad Balasubramaie Palaisamy. This ope access article is distributed uder a Creative Commos Attributio (CC-BY) 3.0 licese.

2 ecessary memory footprit ad improved executio time for MapReduce whe these techiques are performed o small or medium sized cluster of computers. The remaiig part of this study is plaed as follows. Sectio 2 discusses some basic iformatio o MapReduce ad its iteral workigs. Sectio 3 presets the related work ad existig methods applied for TeraSort i Hadoop. Sectio 4 cotais a proposed idea for a improved load balacig methodology ad a way to better utilize memory. Sectio 5 itroduces ivestigatioal results ad a discussio of this study s fidigs. Sectio 6 cocludes this study with a brief idea to future work. Backgroud MapReduce Dea ad Ghemawat (2008) metioed that MapReduce is a programmig represetatio created as a method for programs to hadle with huge amouts of data. It attais this objective by distributig the workload amog several computers ad after that workig o the data i parallel. Hsu et al. (2007) stated that programs that perform o a MapReduce structure eed to separate the work ito 2 phases kow as Map ad Reduce. Each phase has key-value pairs for both iput ad output. To put ito practice these phases, a programmer eeds to state 2 fuctios: A map fuctio called a Mapper ad its equivalet reduce fuctio called a Reducer. While a MapReduce program is performed o Hadoop, it is aticipated to be ru o several computers or odes. For that reaso, a master ode is ecessary to ru all the essetial services desired to orgaize the commuicatio betwee Mappers ad Reducers. A istace of MapReduce dataflow is show i Fig. 1. Kavulya et al. (2010) reported that i the MapReduce structure, the workload has to be balaced i order for resources to be utilized powerfully. HashCode Hadoop utilizes a hash code as its stadard method to partitio key-value pairs. The hash code itself ca be depicted mathematically ad is represeted by (Ke et al., 2013) as the subsequet equatio: HashCode = W *31 + W * W *31 TotalWord = W *31 = (1) The hash code give i Equatio 1 is the default hash code utilized by a strig object i Java, the programmig laguage o which Hadoop is based. A partitio fuctio ormally utilizes the hash code of the key ad modulo of reducers to decide which reducer to sed the key-value pair to. It is essetial the that the partitio fuctio uiformly distributes key-value pairs amog reducers for appropriate workload distributio. TeraSort O Malley (2008) stated that Hadoop ruied the world record i sortig a Terabyte of data by usig its TeraSort techique. Wiig first place it maaged to sort 1 TB of data i 209 sec (3.48 mi). This was the first occasio either a Java program or a ope source program had wo the cotest. TeraSort was able to step up the sortig process by distributig the workload uiformly withi the MapReduce framework. This was doe via data samplig ad the use of a Trie as stated by (Pada et al., 2010). Eve though the mai goal of TeraSort was to sort 1 TB of data as speedily as possible, it has sice bee icorporated ito Hadoop as a stadard. Fig. 1. MapReduce dataflow 491

3 O the whole, the TeraSort algorithm is extremely alike to the stadard MapReduce sort. Its efficiecies rely o how it distributes its data betwee the Mappers ad Reducers. To attai a excellet load balace, TeraSort uses a custom partitioer. Sice the origial goal of TeraSort was to sort data as speedily as possible, its implemetatio adopted a space for time approach. For this reaso, TeraSort utilizes a 2-level trie to partitio the data. Ke et al. (2013) has show that a trie which cofies strigs stored i it to 2 characters is kow as 2- level Trie. This 2-level Trie is built usig cut poits extracted from the sampled data. Oce the trie is costructed usig the cut poits, the partitioer ca iitiate its job of partitio strigs based o where i the trie that strig would go if it were to be icluded i the trie. Related Works Sortig is a primary cocept ad is madatory step i coutless algorithms. Heiz et al. (2002) stated that Burst Sort is a sortig algorithm developed for sortig strigs i huge data collectios. The TeraSort algorithm also utilizes these burst trie techiques as a method to sort data but does so uder the perspective of the Hadoop architecture ad the MapReduce framework. A essetial problem for the MapReduce framework is the idea of load balacig. Over the period, several researches have bee doe o the area of load balacig. Where data is situated by (Hsu ad Che, 2012), how it is commuicated by (Hsu ad Che, 2010), what backgroud it is beig located o by (Hsu ad Tsai, 2009; Hsu et al., 2008; Zaharia et al., 2008) ad the statistical allotmet of the data ca all have a outcome o a systems efficiecy. Most of these algorithms ca be foud uiversal i a variety of papers ad have bee utilized by structures ad systems earlier to the subsistece of the MapReduce structure stated by (Krisha, 2005; Stockiger et al., 2006). As stated by (Cada et al., 2010), RaKloud make use of its persoal usplit method for partitioig huge media data sets. The usplit method is required to decrease data duplicatio costs ad exhausted resources that are particular to its media based algorithms. So as to work just about perceived boudaries of the MapReduce model, various exted or chages i the MapReduce models have bee offered. BigTable was lauched by Google to hadle structured data as reported by (Chag et al., 2008). BigTable looks like a database, but does ot support a complete relatioal database model. It utilizes rows with successive keys grouped ito tables that form the etity of allocatio ad load balacig. Ad experieces from the similar load ad memory balacig troubles faced by shared othig databases. HBase of Hadoop is the ope source versio of BigTable, which imitates the similar fuctioality of BigTable. Because of its simplicity of use, the MapReduce model is pretty popular ad has umerous implemetatios as reported by (Liu ad Orba, 2011; Miceli et al., 2009). For that reaso, there has bee a diversity of research o MapReduce so as to get better performace of the structure or the performace of particular applicatios similar to graph miig as metioed by (Jiag ad Agrawal, 2011), data miig reported by (Papadimitriou ad Su, 2008; Xu et al., 2009), geetic algorithms by (Ji et al., 2008; Verma et al., 2009), or text aalysis by (Vashishtha et al., 2010) that execute o the framework. Occasioally, researchers discover the MapReduce structure to be too strict or rigid i its existig implemetatio. Fadika ad Govidaraju (2011) stated that DELMA is oe of such a framework which imitates the MapReduce model, idetical to Hadoop MapReduce. Such a system is likely to have attractive load balacig problems, which is afar the scope of our paper. Oe more differet framework to MapReduce is Jumbo as reported by (Groot ad Kitsuregawa, 2010). The Jumbo framework may be a helpful tool to research load balacig, but it is ot well-matched with existig MapReduce techologies. To work aroud load balacig problems resultig from joiig tables i Hadoop, (Lyde et al., 2011) itroduced a adaptive MapReduce algorithm for several jois usig Hadoop that works without chagig its settig. This study also attempts to do workload balacig i Hadoop without chagig the origial structure, but cocetrates o sortig text. Ke et al. (2013) stated that the XTrie algorithm preseted a method to advace the cut poit algorithm derived from TeraSort. The importat issue of the TeraSort algorithm is that to deal with the cut poits it utilizes the Quick Sort algorithm. By usig quicksort, TeraSort wats to store all the keys it samples i memory ad that decreases the probable sample size, which decreases the correctess of the preferred cut poits ad this affects load balacig metioed by (O Malley, 2008). Oe more difficulty TeraSort has is that it oly thiks the first 2 characters of a strig durig partitioig. This also decreases the efficiecy of the TeraSort load balacig algorithm: HashCode = W * W * W * 256 TotalWord = = 1 W * (2) The mai issue derived by TeraSort ad XTrie is that they utilize a array to represet the trie. The major cocer with this method is that it teds to hold a lot of exhausted space. Ke et al. (2013) also stated that a Algorithm, the ReMap algorithm, which decreases the memory requiremets of the origial trie by decreasig the umber of elemets it believes. The ReMap chart 492

4 maps each oe of the 256 characters o a ASCII chart to the reduced set of elemets aticipated by the ETrie. Sice the reaso of ETrie is to imitate words foud i Eglish text ReMap relocates the ASCII characters to the 64 elemets. By droppig the umber of elemets to thik from 256 to 64 elemets per level, the total memory ecessary is reduced to 1/16 th of its origial footprit for a 2-level Trie. So as to use the ETrie, the TrieCode offered i Equatio 2 has to be customized. The EtrieCode showig i Equatio 3 is alike to the TrieCode i Equatio 2, but has bee chaged to replicate the smaller memory footprit. Eve if it is superior to XTrie, the difficulty with this method is that it teds to have a lot of exhausted space. The EtrieCode equatio is as follows: HashCode = W * 64 + W * W * 64 TotalWord = = 1 W *64 1 The Proposed Method (3) This sectio describes the key partitioig as a alterative of hash code partitioig usig Horer s Rule which will be icorporated i TeraSort of Hadoop. Besides, this sectio discusses how memory ca be saved by meas of a ReMap techique. I accordace with ivestigatioal outcome of XTrie ad ETrie, the irregular rate is lower, lower beig improved, while a trie has more levels. This is sice the deeper a trie is the loger the prefix each key symbolizes. So, i this study, full legth key is cosidered as prefix istead of 2 or 3 ad the hash value also calculated for the full key. A trie has 2 advatages whe compared with the quick sort algorithm. First, the time complexity for isert ad search usig the trie algorithm is O (k) where k is the legth of the key. I the meatime, the quick sort algorithm best ad average case is O ( log ) ad i the worst case O ( 2 ) where is the umber of keys i its sample. Next, a trie has a predetermied memory footprit. This meas the umber of samples moved ito the trie ca be eormous if so preferred. I the proposed HTrie algorithm, the HTrie is a array accessed via a HTrie code. A HTrie code is alike to a hashcode, but the codes it geerates occur i chroological ASCII order usig Horer s Hash Key Rule. The equatio for the HTrie code is also a hash code which will use the ext prime umber as specified by Horer s Rule sice the whole key is cosidered istead of a trie structure. Equatio 2 ad 3 used 256 ad 64 respectively to get the hash code ad also provided best value sice oly 2 or 3 prefixes were cosidered. So, to get the differet as well as good result, the ext prime umber 37 istead of 31 is used. The equatio is as follows: HashCode = W *37 + W * W *37 TotalWord = W *37 = (4) Figure 2 illustrates how the hash code works for a usual partitioer. I this illustratio, there are 3 reducers ad 3 strigs. Each strig comes from a key i a (key, value) pair. The first strig ate cosists of 3 characters a, t ad e ad have the equivalet ASCII values. The specific ASCII values are the supplied to Equatio 4 to obtai the hash value Because of 3 reducers, a modulo 3 is used which provides a value 2. The the value is icreased by oe i the illustratio sice there is o reducer 0, which modifies the value to 3. This moved the key-value pair to reducer 3. Usig the similar techique, the 2 other strigs bad ad ca are allocated to reducers 2 ad 1, correspodigly. Fig. 2. Proposed Hashcode Partitioer 493

5 Results To estimate the performace of the proposed method, this study examies how fie the algorithms dispese the workload ad looks at how fie the memory is used. Tests performed i this study were completed usig LastFm Dataset, with each record cotaiig the user profile with fields like coutry, geder, age ad date. Usig these records as our iput, we simulated computer etworks usig VMware for Hadoop file system. The tests are carried out with a rage of size of dataset such as 1 Lakh, 3 Lakhs, 5 Lakhs, 10 Lakhs, 50 Lakhs ad 1 Crore records. Durig the first experimet, a iput file cotaiig 1 lakh records is cosidered. As metioed i the MapReduce Framework, the iput set is divided ito various splits ad forwarded to Map Phase. Here for this iput file, oly oe mapper is cosidered sice the umber of mappers is depeds o the size of the iput file. After mappig, partitio algorithm is used to reduce the umber of output records by groupig records based o Htrie value o the coutry attribute which is assumed as a key here. After groupig, 4 partitios are created usig the procedure Geder- Group-by-Coutry. All the correspodig log files ad couters are aalyzed to view the performace. I the other 5 experimets, iput files with 3 Lakhs, 5 Lakhs, 10 Lakhs, 50 Lakhs ad 1 Crore records are cosidered. As per the above said method, all the iput files are partitioed ito 4 partitios. I order to compare the differet methodologies preseted i this study ad determie how balaced the workload distributios are, this study uses various metrics such as Effective CPU, Rate ad Skew amog various metrics like clock time, CPU, Bytes, Memory, Effective CPU, Rate ad Skew sice oly the said 3 parameters shows the sigificat differece i outcomes. Rate displays the umber of bytes from the Bytes colum divided by the umber of secods elapsed sice the previous report, rouded to the earest kilobyte. No umber appears for values less tha oe KB per secod. Effective CPU displays the CPU-secods cosumed by the job betwee reports, divided by the umber of secods elapsed sice the previous report. The result is expressed i uits of CPU-secods per secod-a measure of how process or itesive the job is from each report to the ext. The skew of a data or flow partitio is the amout by which its size deviates from the average partitio size: partitio size average partitio size skewof a data = *100 sizeof largest partitio Discussio The Tables 1-3 shows the results whe usig various sized iput files for the compariso of the performace of ETrie, XTrie ad HTrie with the parameters Skew, Effective CPU ad Rate respectively. Similarly, the Fig. 3-5 shows compariso chart of the results of the above. From the tables ad figures for results, it is show that the proposed method (HTrie) is performig better tha XTrie ad ETrie based o all the 3 parameters said above. Fig. 3. Compariso chart of skew 494

6 Fig. 4. Compariso chart of effective CPU Fig. 5. Compariso chart of rate Table 1. Compariso of skew No. of records XTrie (%) ETrie (%) HTrie (%) Table 2. Compariso of effective CPU No. of records XTrie ETrie HTrie Table 3. Compariso of rate No. of records XTrie ETrie HTrie Coclusio This study preseted HTrie, comprehesive partitioig techique, to improve load balacig for distributed applicatios. By meas of improvig load balacig, MapReduce programs ca tur out to be more proficiet at maagig tasks by reducig the overall computatio time spet processig data o each ode. The 495

7 TeraSort was developed based o arbitrarily geerated iput data o a extremely huge cluster of 910 odes. I that specific computig settig ad for that data cofiguratio, every partitio created by MapReduce became visible o simply oe or 2 odes. But i cotrast, our work cocetrates at small-sized to medium-sized clusters. This study chages their model ad boosts it for a smaller eviromet. A sequece of experimetatios have exposed that give a skewed data sample, the HTrie architecture was capable to safeguard more memory, was capable to distribute more computig resources o average ad do so with a lesser amout of time complexity. After this, additioal research ca be made to itroduce ew partitioig mechaisms so that it ca be icorporated with Hadoop for applicatios usig differet iput samples sice Hadoop file system is ot havig ay partitioig mechaism except key partitioig. Ackowledgemet The authors ackowledged Last.fm for providig the access to this data via their web services. Fudig Iformatio The authors have ot approached ay fudig agecies for fudig this work though there various fudig agecies were ready to fud this work. Author s Cotributios Gothai Ekambaram: Plaed ad desiged all the experimets, collected all the ecessary data sets, orgaized the study, implemeted all the experimets ad cotributed i writig this mauscript. Balasubramaie Palaisamy: Plaed ad desiged all the experimets, collected all the ecessary data sets, orgaized the study, implemeted all the experimets ad cotributed i writig this mauscript alog with Gothai Ekambaram as research supervisor. Ethics The authors have cofirmed that there will ot be ay ethical issues after publicatio of this work. Refereces Cada, K.S., J.W. Kim, P. Nagarkar, M. Nagedra ad R. Yu, RaKloud: Scalable multimedia data processig i server clusters. IEEE MultiMed, 18: DOI: /MMUL Chag, F., J. Dea, S. Ghemawat, W.C. Hsieh ad D.A. Wallach et al., BigTable: A distributed storage system for structured data. ACM Tras. Comput. Syst., DOI: / Dea, J. ad S. Ghemawat, MapReduce: Simplified data processig o large clusters. ACM Commu., 51: DOI: / Fadika, Z. ad M. Govidaraju, DELMA: Dyamically ELastic MapReduce framework for CPU-itesive applicatios. Proceedigs of the 11th IEEE/ACM Iteratioal Symposium o Cluster, Cloud ad Grid Computig, May 23-26, IEEE Xplore press, Newport Beach, CA., pp: DOI: /CCGrid Ghemawat, S., H. Gobioff ad S.T. Leug, The Google file system. Proceedigs of the 19th ACM Symposium o Operatig Systems Priciples, (OSP 03), New York, USA, pp: DOI: / Groot, S. ad M. Kitsuregawa, Jumbo: Beyod mapreduce for workload balacig. Proceedigs of the VLDB PhD Workshop, (PPW 10), Sigapore, pp: Heiz, S., J. Zobel ad H.E. Williams, Burst tries: A fast, efficiet data structure for strig keys. ACM Tras. Iform. Syst., 20: DOI: / Hsu, C.H. ad B.R. Tsai, Schedulig for atomic broadcast operatio i heterogeeous etworks with oe port model. J. Supercomput, 50: DOI: /s Hsu, C.H. ad S.C. Che, A two-level schedulig strategy for optimisig commuicatios of data parallel programs i clusters. It. J. Ad Hoc Ubiq. Comput., 6: DOI: /IJAHUC Hsu, C.H. ad S.C. Che, Efficiet selectio strategies towards processor reorderig techiques for improvig data locality i heterogeeous clusters. J. Supercomput., 60: DOI: /s Hsu, C.H., S.C. Che ad C.Y. La, Schedulig cotetio-free irregular redistributios i parallelizig compilers. J. Supercomputig, 40: DOI: /s Hsu, C.H., T.L. Che ad J.H. Park, O improvig resource utilizatio ad system throughput of master slave job schedulig i heterogeeous systems. J. Supercomput., 45: DOI: /s Jiag, W. ad G. Agrawal, Ex-MATE: Data itesive computig with large reductio objects ad its applicatio to graph miig. Proceedigs of the 11th IEEE/ACM Iteratioal Symposium o Cluster, Cloud ad Grid Computig, May 23-26, IEEE Xplore Press, Newport Beach, CA., pp: DOI: /CCGrid

8 Ji, C., C. Vecchiola ad R. Buyya, MRPGA: A extesio of mapreduce for parallelizig geetic algorithms. Proceedigs of the IEEE 4th Iteratioal Coferece o e-sciece, Dec. 7-12, IEEE Xplore press, Idiaapolis, IN, pp: DOI: /eSciece Kavulya, S., J. Ta, R. Gadhi ad P. Narasimha, A aalysis of traces from a productio mapreduce cluster. Proceedigs of the 10th IEEE/ACM Iteratioal Coferece o Cluster, Cloud ad Grid Computig, May 17-20, IEEE Xplore Press, Melboure, VIC., pp: DOI: /CCGRID Ke, S., C.H. Hsu, Y.C. Chug ad D. Zhag, A improved partitioig mechaism for optimizig massive data aalysis usig mapreduce. J. Supercomput., 66: DOI: /s Krisha, A., GridBLAST: A globus-based highthroughput implemetatio of blast i a grid computig framework. Cocurr Comput., 17: DOI: /cpe.906 Liu, H. ad D. Orba, Cloud mapreduce: A mapreduce implemetatio o top of a cloud operatig system. Proceedigs of the 11th IEEE/ACM Iteratioal Symposium o Cluster, Cloud ad Grid Computig, May 23-26, IEEE Xplore Press, Newport Beach, CA., pp: DOI: /CCGrid Lyde, S., Y. Taimura, I. Kojima ad A. Matoo, Dyamic data redistributio for mapreduce jois. Proceedigs of the IEEE 3rd Iteratioal Coferece o Cloud Computig Techology ad Sciece, Nov. 29-Dec. 1, IEEE Xplore press, Athes, pp: DOI: /CloudCom Miceli, C., M. Miceli, S. Jha, H. Kaiser ad A. Merzky, Programmig abstractios for data itesive computig o clouds ad grids. Proceedigs of the 9th IEEE/ACM Iteratioal Symposium o Cluster Computig ad the Grid, May 18-21, IEEE Xplore Press, Shaghai, pp: DOI: /CCGRID O Malley, O., TeraByte sort o Apache Hadoop. Pada, B., M. Riedewald ad D. Fik, The modelsummary problem ad a solutio for trees. Proceedigs of the IEEE 26th Iteratioal Coferece o Data Egieerig, Mar. 1-6, IEEE Xplore Press, Log Beach, CA, pp: DOI: /ICDE Papadimitriou, S. ad J. Su, DisCo: Distributed co-clusterig with map-reduce: A case study towards petabyte-scale ed-to-ed miig. Proceedigs of the 8th IEEE Iteratioal Coferece o Data Miig, Dec , IEEE Xplore Press, Pisa, pp: DOI: /ICDM Stockiger, H., M. Pagi, L. Cerutti ad L. Falquet, Grid approach to embarrassigly parallel CPUitesive bioiformatics problems. Proceedigs of the 2d IEEE Iteratioal Coferece o e-sciece ad Grid Computig, Dec. 4-6, IEEE Xplore Press, Amsterdam, Netherlads, pp: DOI: /E-SCIENCE Ta, J., X. Pa, S. Kavulya, R. Gadhi ad P. Narasimha, Mochi: Visual log-aalysis based tools for debuggig hadoop. Proceedigs of the USENIX Workshop o Hot Topics i Cloud Computig (HotCloud), (TCC 09), USENIX, Sa Diego, CA. DOI: Vashishtha, H., M. Smit ad E. Stroulia, Movig text aalysis tools to the cloud. Proceedigs of the 6th World Cogress o Services, Jul. 5-10, IEEE Xplore Press, Miami, FL., pp: DOI: /SERVICES Verma, A., X. Llora, D.E. Goldberg ad R.H. Campbell, Scalig geetic algorithms usig mapreduce. Proceedigs of the 9th Iteratioal Coferece o Itelliget Systems Desig ad Applicatios, Nov. 30-Dec. 2, IEEE Xplore Press, Pisa, pp: DOI: /ISDA Xu, W., L. Huag, A. Fox, D. Patterso ad M.I. Jorda, Detectig large-scale system problems by miig cosole logs. Proceedigs of the 22d Symposium o Operatig Systems Priciples, Oct , New York, pp: DOI: / Zaharia, M., A. Kowiski, A.D. Joseph, R. Katz ad I. Stoica, Improvig mapreduce performace i heterogeeous eviromets. Proceedigs of the 8th USENIX Symposium o Operatig Systems Desig ad Implemetatio, USENIX, Sa Diego, Califoria, USA, pp:

Domain 1: Designing a SQL Server Instance and a Database Solution

Domain 1: Designing a SQL Server Instance and a Database Solution Maual SQL Server 2008 Desig, Optimize ad Maitai (70-450) 1-800-418-6789 Domai 1: Desigig a SQL Server Istace ad a Database Solutio Desigig for CPU, Memory ad Storage Capacity Requiremets Whe desigig a

More information

Modified Line Search Method for Global Optimization

Modified Line Search Method for Global Optimization Modified Lie Search Method for Global Optimizatio Cria Grosa ad Ajith Abraham Ceter of Excellece for Quatifiable Quality of Service Norwegia Uiversity of Sciece ad Techology Trodheim, Norway {cria, ajith}@q2s.tu.o

More information

(VCP-310) 1-800-418-6789

(VCP-310) 1-800-418-6789 Maual VMware Lesso 1: Uderstadig the VMware Product Lie I this lesso, you will first lear what virtualizatio is. Next, you ll explore the products offered by VMware that provide virtualizatio services.

More information

An improved partitioning mechanism for optimizing massive data analysis using MapReduce

An improved partitioning mechanism for optimizing massive data analysis using MapReduce J Supercomput (2013) 66:539 555 DOI 10.1007/s11227-013-0924-9 An improved partitioning mechanism for optimizing massive data analysis using MapReduce Kenn Slagter Ching-Hsien Hsu Yeh-Ching Chung Daqiang

More information

Analyzing Longitudinal Data from Complex Surveys Using SUDAAN

Analyzing Longitudinal Data from Complex Surveys Using SUDAAN Aalyzig Logitudial Data from Complex Surveys Usig SUDAAN Darryl Creel Statistics ad Epidemiology, RTI Iteratioal, 312 Trotter Farm Drive, Rockville, MD, 20850 Abstract SUDAAN: Software for the Statistical

More information

The analysis of the Cournot oligopoly model considering the subjective motive in the strategy selection

The analysis of the Cournot oligopoly model considering the subjective motive in the strategy selection The aalysis of the Courot oligopoly model cosiderig the subjective motive i the strategy selectio Shigehito Furuyama Teruhisa Nakai Departmet of Systems Maagemet Egieerig Faculty of Egieerig Kasai Uiversity

More information

Department of Computer Science, University of Otago

Department of Computer Science, University of Otago Departmet of Computer Sciece, Uiversity of Otago Techical Report OUCS-2006-09 Permutatios Cotaiig May Patters Authors: M.H. Albert Departmet of Computer Sciece, Uiversity of Otago Micah Colema, Rya Fly

More information

ODBC. Getting Started With Sage Timberline Office ODBC

ODBC. Getting Started With Sage Timberline Office ODBC ODBC Gettig Started With Sage Timberlie Office ODBC NOTICE This documet ad the Sage Timberlie Office software may be used oly i accordace with the accompayig Sage Timberlie Office Ed User Licese Agreemet.

More information

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth

.04. This means $1000 is multiplied by 1.02 five times, once for each of the remaining sixmonth Questio 1: What is a ordiary auity? Let s look at a ordiary auity that is certai ad simple. By this, we mea a auity over a fixed term whose paymet period matches the iterest coversio period. Additioally,

More information

DAME - Microsoft Excel add-in for solving multicriteria decision problems with scenarios Radomir Perzina 1, Jaroslav Ramik 2

DAME - Microsoft Excel add-in for solving multicriteria decision problems with scenarios Radomir Perzina 1, Jaroslav Ramik 2 Itroductio DAME - Microsoft Excel add-i for solvig multicriteria decisio problems with scearios Radomir Perzia, Jaroslav Ramik 2 Abstract. The mai goal of every ecoomic aget is to make a good decisio,

More information

Agenda. Outsourcing and Globalization in Software Development. Outsourcing. Outsourcing here to stay. Outsourcing Alternatives

Agenda. Outsourcing and Globalization in Software Development. Outsourcing. Outsourcing here to stay. Outsourcing Alternatives Outsourcig ad Globalizatio i Software Developmet Jacques Crocker UW CSE Alumi 2003 jc@cs.washigto.edu Ageda Itroductio The Outsourcig Pheomeo Leadig Offshore Projects Maagig Customers Offshore Developmet

More information

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT

Vladimir N. Burkov, Dmitri A. Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT Keywords: project maagemet, resource allocatio, etwork plaig Vladimir N Burkov, Dmitri A Novikov MODELS AND METHODS OF MULTIPROJECTS MANAGEMENT The paper deals with the problems of resource allocatio betwee

More information

5 Boolean Decision Trees (February 11)

5 Boolean Decision Trees (February 11) 5 Boolea Decisio Trees (February 11) 5.1 Graph Coectivity Suppose we are give a udirected graph G, represeted as a boolea adjacecy matrix = (a ij ), where a ij = 1 if ad oly if vertices i ad j are coected

More information

Determining the sample size

Determining the sample size Determiig the sample size Oe of the most commo questios ay statisticia gets asked is How large a sample size do I eed? Researchers are ofte surprised to fid out that the aswer depeds o a umber of factors

More information

Chatpun Khamyat Department of Industrial Engineering, Kasetsart University, Bangkok, Thailand ocpky@hotmail.com

Chatpun Khamyat Department of Industrial Engineering, Kasetsart University, Bangkok, Thailand ocpky@hotmail.com SOLVING THE OIL DELIVERY TRUCKS ROUTING PROBLEM WITH MODIFY MULTI-TRAVELING SALESMAN PROBLEM APPROACH CASE STUDY: THE SME'S OIL LOGISTIC COMPANY IN BANGKOK THAILAND Chatpu Khamyat Departmet of Idustrial

More information

ADAPTIVE NETWORKS SAFETY CONTROL ON FUZZY LOGIC

ADAPTIVE NETWORKS SAFETY CONTROL ON FUZZY LOGIC 8 th Iteratioal Coferece o DEVELOPMENT AND APPLICATION SYSTEMS S u c e a v a, R o m a i a, M a y 25 27, 2 6 ADAPTIVE NETWORKS SAFETY CONTROL ON FUZZY LOGIC Vadim MUKHIN 1, Elea PAVLENKO 2 Natioal Techical

More information

Research Article Sign Data Derivative Recovery

Research Article Sign Data Derivative Recovery Iteratioal Scholarly Research Network ISRN Applied Mathematics Volume 0, Article ID 63070, 7 pages doi:0.540/0/63070 Research Article Sig Data Derivative Recovery L. M. Housto, G. A. Glass, ad A. D. Dymikov

More information

Systems Design Project: Indoor Location of Wireless Devices

Systems Design Project: Indoor Location of Wireless Devices Systems Desig Project: Idoor Locatio of Wireless Devices Prepared By: Bria Murphy Seior Systems Sciece ad Egieerig Washigto Uiversity i St. Louis Phoe: (805) 698-5295 Email: bcm1@cec.wustl.edu Supervised

More information

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature.

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature. Itegrated Productio ad Ivetory Cotrol System MRP ad MRP II Framework of Maufacturig System Ivetory cotrol, productio schedulig, capacity plaig ad fiacial ad busiess decisios i a productio system are iterrelated.

More information

C.Yaashuwanth Department of Electrical and Electronics Engineering, Anna University Chennai, Chennai 600 025, India..

C.Yaashuwanth Department of Electrical and Electronics Engineering, Anna University Chennai, Chennai 600 025, India.. (IJCSIS) Iteratioal Joural of Computer Sciece ad Iformatio Security, A New Schedulig Algorithms for Real Time Tasks C.Yaashuwath Departmet of Electrical ad Electroics Egieerig, Aa Uiversity Cheai, Cheai

More information

Domain 1 - Describe Cisco VoIP Implementations

Domain 1 - Describe Cisco VoIP Implementations Maual ONT (642-8) 1-800-418-6789 Domai 1 - Describe Cisco VoIP Implemetatios Advatages of VoIP Over Traditioal Switches Voice over IP etworks have may advatages over traditioal circuit switched voice etworks.

More information

Task Scheduling Algorithm for Map Reduce To Control Load Balancing In Big Data

Task Scheduling Algorithm for Map Reduce To Control Load Balancing In Big Data Task Scheduling Algorithm for Map Reduce To Control Load Balancing In Big Data Ms.N.Saranya, M.E., (CSE), Jay Shriram Group of Institutions, Tirupur. charanyaa19@gmail.com Abstract- Load balancing is biggest

More information

A Secure Implementation of Java Inner Classes

A Secure Implementation of Java Inner Classes A Secure Implemetatio of Java Ier Classes By Aasua Bhowmik ad William Pugh Departmet of Computer Sciece Uiversity of Marylad More ifo at: http://www.cs.umd.edu/~pugh/java Motivatio ad Overview Preset implemetatio

More information

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES

SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES SECTION 1.5 : SUMMATION NOTATION + WORK WITH SEQUENCES Read Sectio 1.5 (pages 5 9) Overview I Sectio 1.5 we lear to work with summatio otatio ad formulas. We will also itroduce a brief overview of sequeces,

More information

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation

hp calculators HP 12C Statistics - average and standard deviation Average and standard deviation concepts HP12C average and standard deviation HP 1C Statistics - average ad stadard deviatio Average ad stadard deviatio cocepts HP1C average ad stadard deviatio Practice calculatig averages ad stadard deviatios with oe or two variables HP 1C Statistics

More information

MapReduce Based Implementation of Aggregate Functions on Cassandra

MapReduce Based Implementation of Aggregate Functions on Cassandra Iteratioal Joural of Electroics Commuicatio ad Couter Techology (IJECCT) MapReduce Based Ilemetatio of Aggregate Fuctios o Cassadra Aseh Daesh Arasteh Departmet of Couter ad IT Islamic Azad Uiversity of

More information

COMPARISON OF THE EFFICIENCY OF S-CONTROL CHART AND EWMA-S 2 CONTROL CHART FOR THE CHANGES IN A PROCESS

COMPARISON OF THE EFFICIENCY OF S-CONTROL CHART AND EWMA-S 2 CONTROL CHART FOR THE CHANGES IN A PROCESS COMPARISON OF THE EFFICIENCY OF S-CONTROL CHART AND EWMA-S CONTROL CHART FOR THE CHANGES IN A PROCESS Supraee Lisawadi Departmet of Mathematics ad Statistics, Faculty of Sciece ad Techoology, Thammasat

More information

Recovery time guaranteed heuristic routing for improving computation complexity in survivable WDM networks

Recovery time guaranteed heuristic routing for improving computation complexity in survivable WDM networks Computer Commuicatios 30 (2007) 1331 1336 wwwelseviercom/locate/comcom Recovery time guarateed heuristic routig for improvig computatio complexity i survivable WDM etworks Lei Guo * College of Iformatio

More information

Lecture 2: Karger s Min Cut Algorithm

Lecture 2: Karger s Min Cut Algorithm priceto uiv. F 3 cos 5: Advaced Algorithm Desig Lecture : Karger s Mi Cut Algorithm Lecturer: Sajeev Arora Scribe:Sajeev Today s topic is simple but gorgeous: Karger s mi cut algorithm ad its extesio.

More information

How to read A Mutual Fund shareholder report

How to read A Mutual Fund shareholder report Ivestor BulletI How to read A Mutual Fud shareholder report The SEC s Office of Ivestor Educatio ad Advocacy is issuig this Ivestor Bulleti to educate idividual ivestors about mutual fud shareholder reports.

More information

How to use what you OWN to reduce what you OWE

How to use what you OWN to reduce what you OWE How to use what you OWN to reduce what you OWE Maulife Oe A Overview Most Caadias maage their fiaces by doig two thigs: 1. Depositig their icome ad other short-term assets ito chequig ad savigs accouts.

More information

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008

In nite Sequences. Dr. Philippe B. Laval Kennesaw State University. October 9, 2008 I ite Sequeces Dr. Philippe B. Laval Keesaw State Uiversity October 9, 2008 Abstract This had out is a itroductio to i ite sequeces. mai de itios ad presets some elemetary results. It gives the I ite Sequeces

More information

Optimize your Network. In the Courier, Express and Parcel market ADDING CREDIBILITY

Optimize your Network. In the Courier, Express and Parcel market ADDING CREDIBILITY Optimize your Network I the Courier, Express ad Parcel market ADDING CREDIBILITY Meetig today s challeges ad tomorrow s demads Aswers to your key etwork challeges ORTEC kows the highly competitive Courier,

More information

Hypergeometric Distributions

Hypergeometric Distributions 7.4 Hypergeometric Distributios Whe choosig the startig lie-up for a game, a coach obviously has to choose a differet player for each positio. Similarly, whe a uio elects delegates for a covetio or you

More information

A NOVEL APPROACH FOR PARTITIONING IN HADOOP USING ROUND ROBIN TECHNIQUE

A NOVEL APPROACH FOR PARTITIONING IN HADOOP USING ROUND ROBIN TECHNIQUE A NOVEL APPROACH FOR PARTITIONING IN HADOOP USING ROUND ROBIN TECHNIQUE 1 GOTHAI E, 2 BALASUBRAMANIE P 1 Associate Professor, Department of CSE, Kongu Engineering College, Erode-638052, Tamilnadu, India

More information

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return

where: T = number of years of cash flow in investment's life n = the year in which the cash flow X n i = IRR = the internal rate of return EVALUATING ALTERNATIVE CAPITAL INVESTMENT PROGRAMS By Ke D. Duft, Extesio Ecoomist I the March 98 issue of this publicatio we reviewed the procedure by which a capital ivestmet project was assessed. The

More information

LECTURE 13: Cross-validation

LECTURE 13: Cross-validation LECTURE 3: Cross-validatio Resampli methods Cross Validatio Bootstrap Bias ad variace estimatio with the Bootstrap Three-way data partitioi Itroductio to Patter Aalysis Ricardo Gutierrez-Osua Texas A&M

More information

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed.

Here are a couple of warnings to my students who may be here to get a copy of what happened on a day that you missed. This documet was writte ad copyrighted by Paul Dawkis. Use of this documet ad its olie versio is govered by the Terms ad Coditios of Use located at http://tutorial.math.lamar.edu/terms.asp. The olie versio

More information

CHAPTER 3 THE TIME VALUE OF MONEY

CHAPTER 3 THE TIME VALUE OF MONEY CHAPTER 3 THE TIME VALUE OF MONEY OVERVIEW A dollar i the had today is worth more tha a dollar to be received i the future because, if you had it ow, you could ivest that dollar ad ear iterest. Of all

More information

CS100: Introduction to Computer Science

CS100: Introduction to Computer Science Review: History of Computers CS100: Itroductio to Computer Sciece Maiframes Miicomputers Lecture 2: Data Storage -- Bits, their storage ad mai memory Persoal Computers & Workstatios Review: The Role of

More information

INVESTMENT PERFORMANCE COUNCIL (IPC) Guidance Statement on Calculation Methodology

INVESTMENT PERFORMANCE COUNCIL (IPC) Guidance Statement on Calculation Methodology Adoptio Date: 4 March 2004 Effective Date: 1 Jue 2004 Retroactive Applicatio: No Public Commet Period: Aug Nov 2002 INVESTMENT PERFORMANCE COUNCIL (IPC) Preface Guidace Statemet o Calculatio Methodology

More information

CREATIVE MARKETING PROJECT 2016

CREATIVE MARKETING PROJECT 2016 CREATIVE MARKETING PROJECT 2016 The Creative Marketig Project is a chapter project that develops i chapter members a aalytical ad creative approach to the marketig process, actively egages chapter members

More information

Incremental calculation of weighted mean and variance

Incremental calculation of weighted mean and variance Icremetal calculatio of weighted mea ad variace Toy Fich faf@cam.ac.uk dot@dotat.at Uiversity of Cambridge Computig Service February 009 Abstract I these otes I eplai how to derive formulae for umerically

More information

Comparative Analysis of Round Robin VM Load Balancing With Modified Round Robin VM Load Balancing Algorithms in Cloud Computing

Comparative Analysis of Round Robin VM Load Balancing With Modified Round Robin VM Load Balancing Algorithms in Cloud Computing Iteratioal Joural of Egieerig, Maagemet & Scieces (IJEMS) Comparative Aalysis of Roud Robi Balacig With Modified Roud Robi Balacig s i Cloud Computig Areeba Samee, D.K Budhwat Abstract Cloud computig is

More information

5.4 Amortization. Question 1: How do you find the present value of an annuity? Question 2: How is a loan amortized?

5.4 Amortization. Question 1: How do you find the present value of an annuity? Question 2: How is a loan amortized? 5.4 Amortizatio Questio 1: How do you fid the preset value of a auity? Questio 2: How is a loa amortized? Questio 3: How do you make a amortizatio table? Oe of the most commo fiacial istrumets a perso

More information

A Balanced Scorecard

A Balanced Scorecard A Balaced Scorecard with VISION A Visio Iteratioal White Paper Visio Iteratioal A/S Aarhusgade 88, DK-2100 Copehage, Demark Phoe +45 35430086 Fax +45 35434646 www.balaced-scorecard.com 1 1. Itroductio

More information

Baan Service Master Data Management

Baan Service Master Data Management Baa Service Master Data Maagemet Module Procedure UP069A US Documetiformatio Documet Documet code : UP069A US Documet group : User Documetatio Documet title : Master Data Maagemet Applicatio/Package :

More information

Automatic Tuning for FOREX Trading System Using Fuzzy Time Series

Automatic Tuning for FOREX Trading System Using Fuzzy Time Series utomatic Tuig for FOREX Tradig System Usig Fuzzy Time Series Kraimo Maeesilp ad Pitihate Soorasa bstract Efficiecy of the automatic currecy tradig system is time depedet due to usig fixed parameters which

More information

Soving Recurrence Relations

Soving Recurrence Relations Sovig Recurrece Relatios Part 1. Homogeeous liear 2d degree relatios with costat coefficiets. Cosider the recurrece relatio ( ) T () + at ( 1) + bt ( 2) = 0 This is called a homogeeous liear 2d degree

More information

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows:

Your organization has a Class B IP address of 166.144.0.0 Before you implement subnetting, the Network ID and Host ID are divided as follows: Subettig Subettig is used to subdivide a sigle class of etwork i to multiple smaller etworks. Example: Your orgaizatio has a Class B IP address of 166.144.0.0 Before you implemet subettig, the Network

More information

Confidence Intervals for One Mean

Confidence Intervals for One Mean Chapter 420 Cofidece Itervals for Oe Mea Itroductio This routie calculates the sample size ecessary to achieve a specified distace from the mea to the cofidece limit(s) at a stated cofidece level for a

More information

Reliability Analysis in HPC clusters

Reliability Analysis in HPC clusters Reliability Aalysis i HPC clusters Narasimha Raju, Gottumukkala, Yuda Liu, Chokchai Box Leagsuksu 1, Raja Nassar, Stephe Scott 2 College of Egieerig & Sciece, Louisiaa ech Uiversity Oak Ridge Natioal Lab

More information

Study on the application of the software phase-locked loop in tracking and filtering of pulse signal

Study on the application of the software phase-locked loop in tracking and filtering of pulse signal Advaced Sciece ad Techology Letters, pp.31-35 http://dx.doi.org/10.14257/astl.2014.78.06 Study o the applicatio of the software phase-locked loop i trackig ad filterig of pulse sigal Sog Wei Xia 1 (College

More information

Engineering Data Management

Engineering Data Management BaaERP 5.0c Maufacturig Egieerig Data Maagemet Module Procedure UP128A US Documetiformatio Documet Documet code : UP128A US Documet group : User Documetatio Documet title : Egieerig Data Maagemet Applicatio/Package

More information

The Canadian Council of Professional Engineers

The Canadian Council of Professional Engineers The Caadia Coucil of Professioal Egieers Providig leadership which advaces the quality of life through the creative, resposible ad progressive applicatio of egieerig priciples i a global cotext Egieerig

More information

Project Deliverables. CS 361, Lecture 28. Outline. Project Deliverables. Administrative. Project Comments

Project Deliverables. CS 361, Lecture 28. Outline. Project Deliverables. Administrative. Project Comments Project Deliverables CS 361, Lecture 28 Jared Saia Uiversity of New Mexico Each Group should tur i oe group project cosistig of: About 6-12 pages of text (ca be loger with appedix) 6-12 figures (please

More information

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design

A Combined Continuous/Binary Genetic Algorithm for Microstrip Antenna Design A Combied Cotiuous/Biary Geetic Algorithm for Microstrip Atea Desig Rady L. Haupt The Pesylvaia State Uiversity Applied Research Laboratory P. O. Box 30 State College, PA 16804-0030 haupt@ieee.org Abstract:

More information

iprox sensors iprox inductive sensors iprox programming tools ProxView programming software iprox the world s most versatile proximity sensor

iprox sensors iprox inductive sensors iprox programming tools ProxView programming software iprox the world s most versatile proximity sensor iprox sesors iprox iductive sesors iprox programmig tools ProxView programmig software iprox the world s most versatile proximity sesor The world s most versatile proximity sesor Eato s iproxe is syoymous

More information

Convention Paper 6764

Convention Paper 6764 Audio Egieerig Society Covetio Paper 6764 Preseted at the 10th Covetio 006 May 0 3 Paris, Frace This covetio paper has bee reproduced from the author's advace mauscript, without editig, correctios, or

More information

International Journal on Emerging Technologies 1(2): 48-56(2010) ISSN : 0975-8364

International Journal on Emerging Technologies 1(2): 48-56(2010) ISSN : 0975-8364 e t Iteratioal Joural o Emergig Techologies (): 48-56(00) ISSN : 0975-864 Dyamic load balacig i distributed ad high performace parallel eterprise computig by embeddig MPI ad ope MP Sadip S. Chauha, Sadip

More information

The Forgotten Middle. research readiness results. Executive Summary

The Forgotten Middle. research readiness results. Executive Summary The Forgotte Middle Esurig that All Studets Are o Target for College ad Career Readiess before High School Executive Summary Today, college readiess also meas career readiess. While ot every high school

More information

Chapter 7: Confidence Interval and Sample Size

Chapter 7: Confidence Interval and Sample Size Chapter 7: Cofidece Iterval ad Sample Size Learig Objectives Upo successful completio of Chapter 7, you will be able to: Fid the cofidece iterval for the mea, proportio, ad variace. Determie the miimum

More information

Virtual Machine Scheduling Management on Cloud Computing Using Artificial Bee Colony

Virtual Machine Scheduling Management on Cloud Computing Using Artificial Bee Colony , March 12-14, 2014, Hog Kog Virtual Machie Schedulig Maagemet o Cloud Computig Usig Artificial Bee Coloy B. Kruekaew ad W. Kimpa Abstract Resource schedulig maagemet desig o Cloud computig is a importat

More information

Clustering Algorithm Analysis of Web Users with Dissimilarity and SOM Neural Networks

Clustering Algorithm Analysis of Web Users with Dissimilarity and SOM Neural Networks JONAL OF SOFTWARE, VOL. 7, NO., NOVEMBER 533 Clusterig Algorithm Aalysis of Web Users with Dissimilarity ad SOM Neal Networks Xiao Qiag School of Ecoomics ad maagemet, Lazhou Jiaotog Uiversity, Lazhou;

More information

Amendments to employer debt Regulations

Amendments to employer debt Regulations March 2008 Pesios Legal Alert Amedmets to employer debt Regulatios The Govermet has at last issued Regulatios which will amed the law as to employer debts uder s75 Pesios Act 1995. The amedig Regulatios

More information

Cantilever Beam Experiment

Cantilever Beam Experiment Mechaical Egieerig Departmet Uiversity of Massachusetts Lowell Catilever Beam Experimet Backgroud A disk drive maufacturer is redesigig several disk drive armature mechaisms. This is the result of evaluatio

More information

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable

Week 3 Conditional probabilities, Bayes formula, WEEK 3 page 1 Expected value of a random variable Week 3 Coditioal probabilities, Bayes formula, WEEK 3 page 1 Expected value of a radom variable We recall our discussio of 5 card poker hads. Example 13 : a) What is the probability of evet A that a 5

More information

CHAPTER 3 DIGITAL CODING OF SIGNALS

CHAPTER 3 DIGITAL CODING OF SIGNALS CHAPTER 3 DIGITAL CODING OF SIGNALS Computers are ofte used to automate the recordig of measuremets. The trasducers ad sigal coditioig circuits produce a voltage sigal that is proportioal to a quatity

More information

LOAD BALANCING IN PUBLIC CLOUD COMBINING THE CONCEPTS OF DATA MINING AND NETWORKING

LOAD BALANCING IN PUBLIC CLOUD COMBINING THE CONCEPTS OF DATA MINING AND NETWORKING LOAD BALACIG I PUBLIC CLOUD COMBIIG THE COCEPTS OF DATA MIIG AD ETWORKIG Priyaka R M. Tech Studet, Dept. of Computer Sciece ad Egieerig, AIET, Karataka, Idia Abstract Load balacig i the cloud computig

More information

Evaluating Model for B2C E- commerce Enterprise Development Based on DEA

Evaluating Model for B2C E- commerce Enterprise Development Based on DEA , pp.180-184 http://dx.doi.org/10.14257/astl.2014.53.39 Evaluatig Model for B2C E- commerce Eterprise Developmet Based o DEA Weli Geg, Jig Ta Computer ad iformatio egieerig Istitute, Harbi Uiversity of

More information

Unicenter TCPaccess FTP Server

Unicenter TCPaccess FTP Server Uiceter TCPaccess FTP Server Release Summary r6.1 SP2 K02213-2E This documetatio ad related computer software program (hereiafter referred to as the Documetatio ) is for the ed user s iformatioal purposes

More information

Effective Techniques for Message Reduction and Load Balancing in Distributed Graph Computation

Effective Techniques for Message Reduction and Load Balancing in Distributed Graph Computation Effective Techiques for Message Reductio ad Load Balacig i Distributed Graph Computatio ABSTRACT Da Ya, James Cheg, Yi Lu Dept. of Computer Sciece ad Egieerig The Chiese Uiversity of Hog Kog {yada, jcheg,

More information

Shared Memory with Caching

Shared Memory with Caching Vorlesug Recherarchitektur 2 Seite 164 Cachig i MIMD-Architectures ] MIMD-Architekture Programmiermodell Behadlug der Kommuikatioslatez Nachrichteorietiert globaler Adressraum Latez miimiere Latez verstecke

More information

Configuring Additional Active Directory Server Roles

Configuring Additional Active Directory Server Roles Maual Upgradig your MCSE o Server 2003 to Server 2008 (70-649) 1-800-418-6789 Cofigurig Additioal Active Directory Server Roles Active Directory Lightweight Directory Services Backgroud ad Cofiguratio

More information

AdaLab. Adaptive Automated Scientific Laboratory (AdaLab) Adaptive Machines in Complex Environments. n Start Date: 1.4.15

AdaLab. Adaptive Automated Scientific Laboratory (AdaLab) Adaptive Machines in Complex Environments. n Start Date: 1.4.15 AdaLab AdaLab Adaptive Automated Scietific Laboratory (AdaLab) Adaptive Machies i Complex Eviromets Start Date: 1.4.15 Scietific Backgroud The Cocept of a Robot Scietist Computer systems capable of origiatig

More information

A Distributed Dynamic Load Balancer for Iterative Applications

A Distributed Dynamic Load Balancer for Iterative Applications A Distributed Dyamic Balacer for Iterative Applicatios Harshitha Meo, Laxmikat Kalé Departmet of Computer Sciece, Uiversity of Illiois at Urbaa-Champaig {gplkrsh2,kale}@illiois.edu ABSTRACT For may applicatios,

More information

Design and Implementation of a Publication Database for the Vienna University of Technology

Design and Implementation of a Publication Database for the Vienna University of Technology Desig ad Implemetatio of a Publicatio Database for the Viea Uiversity of Techology Karl Riedlig Istitute of Idustrial Electroics ad Material Sciece, TU Wie, A-040 Viea karl.riedlig@tuwie.ac.at Abstract:

More information

A Flexible Web-Based Publication Database

A Flexible Web-Based Publication Database A Flexible Web-Based Publicatio Database Karl Riedlig ad Siegfried Selberherr 2 Istitute of Sesor ad Actuator Systems 2 Istitute for Microelectroics Techische Uiversität Wie Gusshausstrasse 27-29 A-040

More information

1 Computing the Standard Deviation of Sample Means

1 Computing the Standard Deviation of Sample Means Computig the Stadard Deviatio of Sample Meas Quality cotrol charts are based o sample meas ot o idividual values withi a sample. A sample is a group of items, which are cosidered all together for our aalysis.

More information

Capacity of Wireless Networks with Heterogeneous Traffic

Capacity of Wireless Networks with Heterogeneous Traffic Capacity of Wireless Networks with Heterogeeous Traffic Migyue Ji, Zheg Wag, Hamid R. Sadjadpour, J.J. Garcia-Lua-Aceves Departmet of Electrical Egieerig ad Computer Egieerig Uiversity of Califoria, Sata

More information

Total Program Management for High-Tech

Total Program Management for High-Tech Total Program Maagemet for High-Tech ORGANIZE Makig Order Out of Chaos Sortig the requiremets, fidig the right resources, aligig the capabilities, ad creatig a cohesive Team Maagemet Effort are dautig

More information

Reducer Load Balancing and Lazy Initialization in Map Reduce Environment S.Mohanapriya, P.Natesan

Reducer Load Balancing and Lazy Initialization in Map Reduce Environment S.Mohanapriya, P.Natesan Reducer Load Balancing and Lazy Initialization in Map Reduce Environment S.Mohanapriya, P.Natesan Abstract Big Data is revolutionizing 21st-century with increasingly huge amounts of data to store and be

More information

Domain 1: Configuring Domain Name System (DNS) for Active Directory

Domain 1: Configuring Domain Name System (DNS) for Active Directory Maual Widows Domai 1: Cofigurig Domai Name System (DNS) for Active Directory Cofigure zoes I Domai Name System (DNS), a DNS amespace ca be divided ito zoes. The zoes store ame iformatio about oe or more

More information

Floating Codes for Joint Information Storage in Write Asymmetric Memories

Floating Codes for Joint Information Storage in Write Asymmetric Memories Floatig Codes for Joit Iformatio Storage i Write Asymmetric Memories Axiao (Adrew Jiag Computer Sciece Departmet Texas A&M Uiversity College Statio, TX 77843-311 ajiag@cs.tamu.edu Vaske Bohossia Electrical

More information

WindWise Education. 2 nd. T ransforming the Energy of Wind into Powerful Minds. editi. A Curriculum for Grades 6 12

WindWise Education. 2 nd. T ransforming the Energy of Wind into Powerful Minds. editi. A Curriculum for Grades 6 12 WidWise Educatio T rasformig the Eergy of Wid ito Powerful Mids A Curriculum for Grades 6 12 Notice Except for educatioal use by a idividual teacher i a classroom settig this work may ot be reproduced

More information

Research Method (I) --Knowledge on Sampling (Simple Random Sampling)

Research Method (I) --Knowledge on Sampling (Simple Random Sampling) Research Method (I) --Kowledge o Samplig (Simple Radom Samplig) 1. Itroductio to samplig 1.1 Defiitio of samplig Samplig ca be defied as selectig part of the elemets i a populatio. It results i the fact

More information

A model of Virtual Resource Scheduling in Cloud Computing and Its

A model of Virtual Resource Scheduling in Cloud Computing and Its A model of Virtual Resource Schedulig i Cloud Computig ad Its Solutio usig EDAs 1 Jiafeg Zhao, 2 Wehua Zeg, 3 Miu Liu, 4 Guagmig Li 1, First Author, 3 Cogitive Sciece Departmet, Xiame Uiversity, Xiame,

More information

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations

CS103A Handout 23 Winter 2002 February 22, 2002 Solving Recurrence Relations CS3A Hadout 3 Witer 00 February, 00 Solvig Recurrece Relatios Itroductio A wide variety of recurrece problems occur i models. Some of these recurrece relatios ca be solved usig iteratio or some other ad

More information

Effective Techniques for Message Reduction and Load Balancing in Distributed Graph Computation

Effective Techniques for Message Reduction and Load Balancing in Distributed Graph Computation Effective Techiques for Message Reductio ad Load Balacig i Distributed Graph Computatio ABSTRACT Da Ya, James Cheg, Yi Lu Dept. of Computer Sciece ad Egieerig The Chiese Uiversity of Hog Kog {yada, jcheg,

More information

Domain 1: Identifying Cause of and Resolving Desktop Application Issues Identifying and Resolving New Software Installation Issues

Domain 1: Identifying Cause of and Resolving Desktop Application Issues Identifying and Resolving New Software Installation Issues Maual Widows 7 Eterprise Desktop Support Techicia (70-685) 1-800-418-6789 Domai 1: Idetifyig Cause of ad Resolvig Desktop Applicatio Issues Idetifyig ad Resolvig New Software Istallatio Issues This sectio

More information

Application and research of fuzzy clustering analysis algorithm under micro-lecture English teaching mode

Application and research of fuzzy clustering analysis algorithm under micro-lecture English teaching mode SHS Web of Cofereces 25, shscof/20162501018 Applicatio ad research of fuzzy clusterig aalysis algorithm uder micro-lecture Eglish teachig mode Yig Shi, Wei Dog, Chuyi Lou & Ya Dig Qihuagdao Istitute of

More information

Measures of Spread and Boxplots Discrete Math, Section 9.4

Measures of Spread and Boxplots Discrete Math, Section 9.4 Measures of Spread ad Boxplots Discrete Math, Sectio 9.4 We start with a example: Example 1: Comparig Mea ad Media Compute the mea ad media of each data set: S 1 = {4, 6, 8, 10, 1, 14, 16} S = {4, 7, 9,

More information

Enhancing Oracle Business Intelligence with cubus EV How users of Oracle BI on Essbase cubes can benefit from cubus outperform EV Analytics (cubus EV)

Enhancing Oracle Business Intelligence with cubus EV How users of Oracle BI on Essbase cubes can benefit from cubus outperform EV Analytics (cubus EV) Ehacig Oracle Busiess Itelligece with cubus EV How users of Oracle BI o Essbase cubes ca beefit from cubus outperform EV Aalytics (cubus EV) CONTENT 01 cubus EV as a ehacemet to Oracle BI o Essbase 02

More information

Effective Data Deduplication Implementation

Effective Data Deduplication Implementation White Paper Effective Data Deduplicatio Implemetatio Eterprises with IT ifrastructure are lookig at reducig their carbo foot prit ad ifrastructure maagemet cost by slimmig dow their data ceters. I cotrast,

More information

Output Analysis (2, Chapters 10 &11 Law)

Output Analysis (2, Chapters 10 &11 Law) B. Maddah ENMG 6 Simulatio 05/0/07 Output Aalysis (, Chapters 10 &11 Law) Comparig alterative system cofiguratio Sice the output of a simulatio is radom, the comparig differet systems via simulatio should

More information

SPC for Software Reliability: Imperfect Software Debugging Model

SPC for Software Reliability: Imperfect Software Debugging Model IJCSI Iteratioal Joural of Computer Sciece Issues, Vol. 8, Issue 3, o., May 0 ISS (Olie: 694-084 www.ijcsi.org 9 SPC for Software Reliability: Imperfect Software Debuggig Model Dr. Satya Prasad Ravi,.Supriya

More information

PUBLIC RELATIONS PROJECT 2016

PUBLIC RELATIONS PROJECT 2016 PUBLIC RELATIONS PROJECT 2016 The purpose of the Public Relatios Project is to provide a opportuity for the chapter members to demostrate the kowledge ad skills eeded i plaig, orgaizig, implemetig ad evaluatig

More information

How To Improve Software Reliability

How To Improve Software Reliability 2 Iteratioal Joural of Computer Applicatios (975 8887) A Software Reliability Growth Model for Three-Tier Cliet Server System Pradeep Kumar Iformatio Techology Departmet ABES Egieerig College, Ghaziabad

More information

Statistical inference: example 1. Inferential Statistics

Statistical inference: example 1. Inferential Statistics Statistical iferece: example 1 Iferetial Statistics POPULATION SAMPLE A clothig store chai regularly buys from a supplier large quatities of a certai piece of clothig. Each item ca be classified either

More information

Digital Enterprise Unit. White Paper. Web Analytics Measurement for Responsive Websites

Digital Enterprise Unit. White Paper. Web Analytics Measurement for Responsive Websites Digital Eterprise Uit White Paper Web Aalytics Measuremet for Resposive Websites About the Authors Vishal Machewad Vishal Machewad has over 13 years of experiece i sales ad marketig, havig worked as a

More information