Generating Real-Time Profiles of Runtime Energy Consumption for Java Applications

Size: px
Start display at page:

Download "Generating Real-Time Profiles of Runtime Energy Consumption for Java Applications"

Transcription

1 Generating Real-Time Profiles of Runtime Energy Consumption for Java Applications Muhammad Nassar, Julian Jarrett, Iman Saleh, M. Brian Blake Department of Computer Science University of Miami Coral Gables, Florida, USA {j.jarrett, iman, Abstract Energy consumption of computer-based systems is a growing concern, especially for large scaled distributed systems that operate in data centers and server farms. Currently, there exist many hardware implementations that holistically measure the consumption of energy for hardware and software systems. These approaches are limited as they measure the current power consumption of the overarching system - an approach that does not necessarily assist in making the underlying software more power-aware while under operation. This paper introduces the algorithm and process of calculating the energy consumption of Java applications at runtime. This approach is evaluated using a new energy profiler tool that is designed to integrate with a Java application leveraging the underlying physical architecture of the hardware. By incorporating the awareness of energy consumption within the software application, then that application can dynamically choose the most energy-efficient processing paths within its operations. Keywords - power consumption; java; energy; distributed systems; software profiling I. INTRODUCTION Energy consumption is a significant global challenge. Data centers and servers in the United States consume huge amounts of energy and consequently challenge the sustainability of our natural resources [8,9,10]. The use of enterprise service-oriented systems has only exacerbated the challenges [7,16]. Furthermore, on an individual basis with the prevalence of mobile devices, it is important to optimize software operations in order to extend battery capabilities. What attributes are required and which are most effective in calculating energy consumption in a runtime environment of a Java application? What are the challenges for disambiguating residual power consumption from the hardware platform with power consumed by the targeted software application? Are there approaches for reducing the amount of residual power calculated within the software application-specific calculation? To address these research questions, we introduce a unique method for profiling applications in terms of their runtime power consumption. To support this method, we conceptualized and developed a novel Energy Profiler for Java applications. The profiler integrates with Java applications in such a way that provides an energy consumption estimate for the software in question. The profiler leverages the energy model described in [1], where the authors estimate the power consumption of a computational model with N number of processors, a separate cache memory for each processor and main memory. This approach enables software developers to use energy efficiency as a key performance metric influencing their software design decisions. Moreover, software engineers will be able to abstract design practices and patterns that decrease the energy footprint of applications. We evaluate this model by comparing estimated values produced from the energy profiler with measures produce from a physical power consumption meter. Using varying programming constructs to implement the same function, we show a significant degree of accuracy with our model and implementation when comparing energy consumption trends to processing intensity. II. RELATED WORK Many frameworks have been proposed to profile power and energy consumption across different types of computer systems. These frameworks utilize both hardware and software techniques for profiling energy and target both servers and mobile devices. In the early work of one of the co-authors of this paper, a method was proposed that leveraged design-time testing of web services using generic loads of web traffic. The energy was measured during a training phase and was used to develop a model for a specific web service at various server and software states [5]. The work described in [5] and [6] uses a more predictive model applied towards the efficient power management of web services and redundantly deployed cloud environments. Some of the previous efforts in this area evaluate the overall system energy usage [11,12], while others have the capability of applying more granular measurement techniques to isolate and profile individual components. The authors in [2] introduce the PowerPak Framework; a combination of hardware and software components capable of low-level 592

2 energy profiling of parallel scientific applications on multicore, multi-processor distributed systems. They use physical instrumentation including sensors, meter circuits and data acquisition devices for measurement. Software components consist of drivers for physical meters, sensors, and a user level API for automated power profiling and synchronization of code. The framework is also capable of producing direct and derived measurements and isolating individual component consumption through the use of fine-grained systematic power measurements. PowerScope is a tool proposed by the authors in [3] to profile the energy usage of mobile applications through statistical sampling. A digital multi-meter is used to sample both the power consumption and system activity and passes this information to a data collection computer running the energy monitor. An energy profile is then generated and the data is analyzed offline to remove profiling overhead. In [4], researchers at Microsoft present a Windows based finegrained energy profiler by implementing and integrating a workload manager, an event logger and an energy profiler. Event tracing is started by the workload manager, which executes code under fixed loads of data. Tracing includes kernel level tracing of components such as the CPU, Disk I/O, page faults, heap range creation and context switches. The event logger simply logs all events generated by the workload manager and the energy profiler is then used to correlate system resource usage of an application. Some other efforts on the hardware level make use of Dynamic Voltage and Frequency Scaling (DVFS). DVFS is a widely used technique for power manipulation [13,15]. Its basic idea is to decrease the CPU frequency to allow a corresponding change in the supplied voltage. This in turn results in a reduction of the overall power consumption. DVFS is being used mainly to control the power consumed by the CPU cores rather than main memory. Despite this fact, the writers of [14] successfully developed a memory frequencyscaling algorithm that could reduce the power consumption of main memory by around 14% on average without any noticeable performance degradation. Unlike the previous approaches, our tool does not require the use of external instrumentation for measurement. Our approach for application profiling utilizes a plug-in that operates in real-time and produces an estimate of the total energy consumed by the application. The plug-in is provided as a JAR file that can be imported into Java applications. This approach extends the state of the art as it allows applicationlevel estimations. The profiler allows the applications to be more self-aware of their own energy signatures. We use a mathematical model that estimates the energy usage given a set of parameters describing the underlying hardware. We validate our model s accuracy by comparing the estimated values to the ones measured by an energy meter. III. ENERGY MODEL According to our model, the energy consumed by a software system has 3 main components: Computational Energy: EPI * T CPU * X Memory access energy: E m * T Active * (The amount of memory used in bytes) Leakage Energy: E l * T Active * X where, EPI is the energy consumed per CPU instruction (in the instruction set of the CPU), T CPU is the total time the CPU is active, E m is the energy consumed for a single memory access, E l is some hardware constant, T Active is the total time the system is active (including CPU idle time) and X is the CPU clock frequency. This energy model is loosely based on the one described in [1], and relies on the values obtained from the Java Virtual Machine (JVM). The computational energy component is computed as the product of the CPU frequency, the total time the CPU is active where these two terms provide the total number of instructions executed and the energy consumed per instruction, which is a chipset constant. The JVM provides the total time the CPU is active, while the user is responsible for providing the CPU frequency, and the energy per instruction value, if available. Some assumptions are made while calculating the computational energy component. The system used for testing has an Intel Core 2 mobile chipset and it is assumed that the CPU performed one instruction per cycle. It is also assumed that the microprocessor is the sole energy consumer and that other parts of the chipset like the north/southbridge is not taken into account since the energy model in [1] does not incorporate them. The Graphics Processing Unit (GPU) is not incorporated in the model either, and is not taken into account. However, the tests presented in later sections do not call for any GPU usage. As for the memory access energy, since there is no direct way of computing the exact number of memory accesses, and since the JVM provides the total amount of memory it uses directly, an approximated calculation is used as described above. The total memory access energy is calculated as the product of the amount of memory used by the JVM, the total time the application is active where these two terms provide the total amount of memory that needs to be sustained for the lifetime of the application and the energy consumed per memory access, which is also a chipset constant. The JVM provides the total amount of memory used, and the total time the application is active is calculated as the difference between the end and start times of the application obtained directly from the JVM. The user provides the energy per memory access value, if available. The leakage energy component is calculated in the exact same manner as described in [1], which is the product of the CPU frequency, the total time the application is active, and E l, which is a hardware constant value provided by the user if available. IV. DESIGN AND ARCHITECTURE An energy profiler plug-in that implements the energy model described in Section 3 was developed in Java. It is available as a JAR file which can be easily integrated into other Java applications. As shown in Figure 1, the plug-in gathers the data it needs from two sources, user input about chipset 593

3 specific constants and CPU and memory performance information from the JVM. The plug-in then applies this data to the energy model to produce the energy consumption information. As shown in the class diagram described in Figure 2, the application is split into three classes. The CPUMonitor class is responsible for fetching CPU utilization information from the JVM. The MemoryMonitor class gathers memory utilization information from the JVM. The EnergyCalculator class collects the data retrieved by these two components, plugs them along with the hardware constants into the energy model, and provides a total consumption estimate in Joules. The hardware constant values EPI, E m and E l are hardware-specific and should be provided by the developers. If not provided, the plug-in uses default values specific to the Intel Core 2 Duo processor architecture. In order to use the plug-in to gather energy consumption data, some steps need to be performed. Before the code block whose energy consumption needs to be analyzed, an object of type EnergyCalculator is declared and the current CPU frequency in GHz is passed as a parameter to its constructor. If the hardware constants EPI, E m and E l are known, another constructor is provided that accepts them as parameters alongside the CPU frequency. If these constants are not provided, default values are used as described earlier. After the code block that is being examined, the method PlugDataIntoModel() is called from the previously defined EnergyCalculator object. This method returns a string value that represents the energy consumed by the enclosed code block in Joules. Listing 1 shows how an EnergyCalculator class object can be used to profile the energy usage of Java code. As explained earlier, the EnergyCalculator class object has to be initialized before the code block in question and a call to the PlugDataIntoModel() method after the code block will provide the energy consumption estimate. Listing 2 shows the pseudo-code of the EnergyCalculator class. Figure 2. System Class Diagram. EnergyCalculator calc(operatingfrequency, EPI, Em, El); <Profiled Java Code> String Energy_Consumption = <calc.plugdataintomodel>; Listing 1. Energy Profiler s Usage. 594

4 public EnergyCalculator (CPUFrequency, EPI, Em, El) { CPUMonitor mycpumonitor; MemoryMonitor mymemorymonitor; double StartTime = <now>; double OperatingFrequency = <CPUFrequency>; double EPI = <user input or default value from Datasheet>; double Em = <user input or default value from Datasheet>; double El = <user input or default value from Datasheet>; } private void CalculateEnergyConsumption () { double memoryusage = <mymemorymonitor. GetUsedMemory()>; double cpuusage = <mycpumonitor. GetCPUUsageTime>; double EndTime = <now>; double TotalTime = <EndTime StartTime>; } public String PlugDataIntoModel() { CalculateEnergyConsumption(); double E_comp = <EPI * cpuusage * OperatingFrequency>; double E_mem = <Em * TotalTime * memoryusage * 1024>; double E_leak = <El * TotalTime * OperatingFrequency>; double TotalEnergy = <E_comp + E_mem + E_leak>; return TotalEnergy.toString(); } Listing 2. Energy Profiler s Pseudo-code. Figures 4 and 5 provide sample results illustrating the usage of the profiler. Figure 4 illustrates a comparison between the estimated energy calculated by the energy profiler and the actual readings obtained using the WattsUp meter. The test is conducted on a simple TCP implementation in Java. Figure 5 provides a similar comparison using a recursive implementation of a Fibonacci sequence calculator. As noted in Figure 4, the estimated and measured energy consumption values increased consistently with the rise in the number of packets sent. The difference between estimated and measured values increased as the load on the system increased. This difference increased from around 10% on lighter system loads to approximately 18% with the highest tested load. We anticipated a slight delta between the estimated and measured energy consumption since the energy profiler only measures the consumption of the application in question, whereas the WattsUp meter measures the entire system s consumption. Figure 5 shows that the estimated and measured values also increased consistently with the increase in the value of the Fibonacci term. This pattern demonstrates the same behavior as the one seen in Figure 4. To better understand calculated energy, we decomposed the calculation into the components defined in Section 3. The average relative contributions of computational energy, memory access energy and leakage energy are approximated to 85%, 10% and 5% for the TCP simulation application and 90%, 3% and 7% for the Fibonacci sequence calculator application. The level of contribution of each component is reasonable with respect to the results presented in the related works [17] and [18]. The obtained increase our confidence in the validity of the profiler. Within each experiment, the percentages are consistent as the load increased and the results are also consistent across different applications. Figure 3. Picture of the Watts-Up Measurement Devices. V. EVALUATION The energy profiler can be used to estimate the energy consumed by Java applications as well as compare the consumption of different implementations of the same algorithm. To validate our estimates, we compared energy consumption output from the profiler to energy consumption figures obtained from the WattsUp meter ( a physical device that measures the real time energy consumption of electronic devices in Watts. The WattsUp meter is shown in Figure 3. Figure 4. Estimated vs. Actual Energy Readings for a Simple TCP Implementation. Figures 6, 7 and 8, illustrate the results obtained when the profiler is used to measure the energy consumption of both recursive and iterative implementations of a Fibonacci sequence calculator. 595

5 Figure 8. A Comparison between Recursive and Iterative Fibonacci Implementations on Ubuntu Linux Figure 5. Estimated vs. Actual Energy Readings for a Recursive Fibonacci Implementation. Figure 6. A Comparison between Recursive and Iterative Fibonacci Implementations on Microsoft Windows 7. Figure 7. A Comparison between Recursive and Iterative Fibonacci Implementations on Mac OS X The average energy consumption values for each Fibonacci term (from 25 to 55 in increments of 5) are recorded over 12 runs. The tests are repeated across three major operating systems; Microsoft Windows 7, Mac OS X and Ubuntu Linux The results for all three operating systems demonstrated the same pattern. The nature of complexities of the recursive and iterative Fibonacci implementations is evident in the graphs, where the complexity of the iterative implementation grows linearly while that of the recusrive implementation grows exponentially. The results obtained demonstrate the expected behaviors of both implementations. VI. DISCUSSION The results of our experiments demonstrate that the energy profiler tool is effective in providing estimates that compare favorably to real measurements. Although many factors are involved when it comes to measuring the energy consumed by different kinds of hardware, the profiler allows for the specification of the hardware constants EPI, E m and E l of the underlying chipset as well as the CPU operating frequency. For the sake of consistency and accuracy of the results, all of the experiments are conducted on the same hardware with no other applications running except the operating system itself. A. Estimating Energy Consumption The first of the two major functionalities of the profiler is to provide absolute estimates of the energy consumed by a certain Java application. Figures 4 and 5 illustrate how those estimates compare to real measurements. It is worth mentioning that in these figures, the energy usage estimates obtained from the profiler are actually higher than those collected by actual measurements. This would not normally be expected since the profiler measures only the energy usage of the Java application under investigation, while the WattsUp meter measures the consumption of the whole system. This could be explained by the fact that no other applications were running while the experiments were being conducted - only the application under investigation and the OS processes - and by the fact that a margin of error in the estimation is expected since many hardware factors and constants are involved in the calculation. Taking these facts and factors into consideration, 596

6 the difference between the estimated and actual figures is negligible on lighter levels of system load, however acceptable at the higher load levels. When it comes to measuring the absolute energy consumption values, the hardware constants described earlier in the energy model play a major role in the correct estimation. The constants that are the hardest to collect are EPI, E m and E l. These constants are chipset dependent and have to be collected form the chipset datasheet. We successfully found the values of EPI and E m for the Intel Core 2 mobile chipset, but we couldn t find an exact value for E l and its value is estimated based on information we obtained from the datasheet of a similar chipset to the one we used. The authors in [19] provide the EPI values for different Intel microprocessors. In its current form, we believe the energy model we use should provide highly accurate results as long as all the variables in the model are as accurate as possible. B. Comparing Algorithm Implementations Figures 6, 7, and 8 demonstrate how the profiler can be effective for another purpose, which is comparing different implementations of the same algorithm from the point of view of energy consumption. This could prove to be very important in real world applications as it provides the capability of comparing the energy consumption of complicated algorithms without having to analyze their complexities thoroughly. It could be considered as a black box technique of analyzing algorithms. The task illustrated (computing the Nth Fibonacci term) provides a good example of such usage. As anticipated, the recursive implementation consumed much more energy than the iterative one, especially as the load on the system increased with the increase of the value of the Fibonacci term. The results are also consistent across different platforms. The marginal error contained in the estimation technique is somewhat irrelevant when comparing different algorithms, since the magnitude of the delta between the estimations is the decisive factor for comparison, rather than the absolute figures. VII. CONCLUSION AND FUTURE WORK This paper presented the experience, method and application of creating an energy profiler tool with the ability to isolate the energy consumption of a specific Java application. Initial experimentation demonstrates that this approach and toolset compare favorably to real measurements. Future work will focus on tweaking the energy model to take into account the internal workings of the JVM, and consequently decreasing the gap between the actual and estimated values. The model can also be expanded to incorporate more hardware component, like the GPU, Video RAM and IO components. We plan to leverage the energy profiler in developing a body of work that describes energy concerns when using specific design patterns for certain types of infrastructures. We believe that this energy profiling approach at the application-level can be used as a training aid for software engineers and developers when it comes to developing sustainable software. REFERENCES [1] Agha, G. and Korthikanti, V Towards Optimizing Energy Costs of Algorithms for Shared Memory Architectures. Proceedings of the 22nd ACM symposium on Parallelism in algorithms and architectures. pp [2] Ge, R., Feng, X., Song, S., Chang, H., Li, D., and Cameron, K. W "Powerpack: Energy profiling and analysis of high-performance systems and applications." Parallel and Distributed Systems, IEEE Transactions on 21, no. 5 (2010). pp [3] Flinn, J. and Satyanarayanan, M "Powerscope: A tool for profiling the energy usage of mobile applications." In Mobile Computing Systems and Applications, Proceedings. WMCSA'99. Second IEEE Workshop on, pp [4] Kansal, A. and Feng, Z "Fine-grained energy profiling for poweraware application design." ACM SIGMETRICS Performance Evaluation Review 36, no. 2 (2008): pp [5] Bartalos, P., Blake, M.B., and Remy, S "Green Web Services: Models for Energy-Aware Web Services and Applications" IEEE International Workshop on Knowledge and Service Technology for Life, Environment, and Sustainability (KASTLES 2011), pp [6] Bartalos, P. and Blake, M.B Green Web Services: Modeling and Estimating Power Consumption of Web Services, IEEE International Conference on Web Services (ICWS 2012), pp [7] Wei, Y. and Blake, M.B Service-Oriented Computing and Cloud Computing: Challenges and Opportunities, IEEE Internet Computing, Vol. 14, No. 6, pp [8] Talebi, M. and Way, T Methods, metrics and motivation for a green computer science program, SIGCSE Bull, vol. 41, no. 1, pp [9] Ghose, A., Hoesch-Klohe, K., Hinsche, L., and Le L. S Green business process management: A research agenda, Australasian Journal of Information Systems, vol. 16, no. 2. [10] Murugesan, S Harnessing Green IT: Principles and Practices, IT Professional, vol. 10, no. 1, pp [11] Rivoire, S., Ranganathan, P., and Kozyrakis, C A comparison of high-level full-system power models, in Proceedings of the 2008 conference on Power aware computing and systems, 2008, pp [12] Li, T. and John, L. K Run-time modeling and estimation of operating system power consumption, SIGMETRICS Perform. Eval. Rev., vol. 31, no. 1, pp [13] Le Sueur, E. and Heiser, G Dynamic voltage and frequency scaling: the laws of diminishing returns. Proceedings of the 2010 international conference on Power aware computing and systems, HotPower10. pp [14] David, H., Fallin, C., Gorbatov, E., Hanebutte, Ulf R., and Multu, O Memory Power Management via Dynamic Voltage/Frequency Scaling. ICAC 11 Proceedings of the 8thACM international conference on Autonomic computing, pp [15] Liang, W., Chen, S., Chang, Y., and Fang, J Memory-aware dynamic voltage and frequency prediction for portable devices. In Embedded and Real-Time Computing Systems and Applications, RTCSA th IEEE International Conference, pp [16] Blake, M.B. and Gomaa, H "Agent-Oriented Compositional Approaches to Services-Based Cross-Organizational Workflow", Special Issue on Web Services and Process Management, Decision Support Systems, Vol. 40, No. 1, pp [17] Do, T., Rawshdeh,S. and Shi, W "ptop: A process-level power profiling tool." Proceedings of the 2nd Workshop on Power Aware Computing and Systems (HotPower 09). [18] Chen, H., Wang,s and Shi,W "Where does the power go in a computer system: Experimental analysis and implications." In Green Computing Conference and Workshops (IGCC), 2011 International, pp [19] Grochowski, E. and Annavaram, M "Energy per Instruction Trends in Intel Microprocessors " Technology@Intel Mag., pp

Dynamic resource management for energy saving in the cloud computing environment

Dynamic resource management for energy saving in the cloud computing environment Dynamic resource management for energy saving in the cloud computing environment Liang-Teh Lee, Kang-Yuan Liu, and Hui-Yang Huang Department of Computer Science and Engineering, Tatung University, Taiwan

More information

A Fine-grained Component-level Power Measurement Method

A Fine-grained Component-level Power Measurement Method A Fine-grained Component-level Power Measurement Method Zehan Cui 1,2, Yan Zhu 1,2, Yungang Bao 1, Mingyu Chen 1 1 State Key Laboratory of Computer Architecture, Institute of Computing Technology, Chinese

More information

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing

A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing A Dynamic Resource Management with Energy Saving Mechanism for Supporting Cloud Computing Liang-Teh Lee, Kang-Yuan Liu, Hui-Yang Huang and Chia-Ying Tseng Department of Computer Science and Engineering,

More information

Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications

Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications Comparison of Request Admission Based Performance Isolation Approaches in Multi-tenant SaaS Applications Rouven Kreb 1 and Manuel Loesch 2 1 SAP AG, Walldorf, Germany 2 FZI Research Center for Information

More information

Delivering Quality in Software Performance and Scalability Testing

Delivering Quality in Software Performance and Scalability Testing Delivering Quality in Software Performance and Scalability Testing Abstract Khun Ban, Robert Scott, Kingsum Chow, and Huijun Yan Software and Services Group, Intel Corporation {khun.ban, robert.l.scott,

More information

Control 2004, University of Bath, UK, September 2004

Control 2004, University of Bath, UK, September 2004 Control, University of Bath, UK, September ID- IMPACT OF DEPENDENCY AND LOAD BALANCING IN MULTITHREADING REAL-TIME CONTROL ALGORITHMS M A Hossain and M O Tokhi Department of Computing, The University of

More information

PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE

PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE PERFORMANCE ANALYSIS OF KERNEL-BASED VIRTUAL MACHINE Sudha M 1, Harish G M 2, Nandan A 3, Usha J 4 1 Department of MCA, R V College of Engineering, Bangalore : 560059, India [email protected] 2 Department

More information

Offloading file search operation for performance improvement of smart phones

Offloading file search operation for performance improvement of smart phones Offloading file search operation for performance improvement of smart phones Ashutosh Jain [email protected] Vigya Sharma [email protected] Shehbaz Jaffer [email protected] Kolin Paul

More information

11.1 inspectit. 11.1. inspectit

11.1 inspectit. 11.1. inspectit 11.1. inspectit Figure 11.1. Overview on the inspectit components [Siegl and Bouillet 2011] 11.1 inspectit The inspectit monitoring tool (website: http://www.inspectit.eu/) has been developed by NovaTec.

More information

Empowering Developers to Estimate App Energy Consumption. Radhika Mittal, UC Berkeley Aman Kansal & Ranveer Chandra, Microsoft Research

Empowering Developers to Estimate App Energy Consumption. Radhika Mittal, UC Berkeley Aman Kansal & Ranveer Chandra, Microsoft Research Empowering Developers to Estimate App Energy Consumption Radhika Mittal, UC Berkeley Aman Kansal & Ranveer Chandra, Microsoft Research Phone s battery life is critical performance and user experience metric

More information

A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems

A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems A Taxonomy and Survey of Energy-Efficient Data Centers and Cloud Computing Systems Anton Beloglazov, Rajkumar Buyya, Young Choon Lee, and Albert Zomaya Present by Leping Wang 1/25/2012 Outline Background

More information

Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking

Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking Quantifying the Performance Degradation of IPv6 for TCP in Windows and Linux Networking Burjiz Soorty School of Computing and Mathematical Sciences Auckland University of Technology Auckland, New Zealand

More information

PERFORMANCE ENHANCEMENTS IN TreeAge Pro 2014 R1.0

PERFORMANCE ENHANCEMENTS IN TreeAge Pro 2014 R1.0 PERFORMANCE ENHANCEMENTS IN TreeAge Pro 2014 R1.0 15 th January 2014 Al Chrosny Director, Software Engineering TreeAge Software, Inc. [email protected] Andrew Munzer Director, Training and Customer

More information

Muse Server Sizing. 18 June 2012. Document Version 0.0.1.9 Muse 2.7.0.0

Muse Server Sizing. 18 June 2012. Document Version 0.0.1.9 Muse 2.7.0.0 Muse Server Sizing 18 June 2012 Document Version 0.0.1.9 Muse 2.7.0.0 Notice No part of this publication may be reproduced stored in a retrieval system, or transmitted, in any form or by any means, without

More information

An Experimental Approach Towards Big Data for Analyzing Memory Utilization on a Hadoop cluster using HDFS and MapReduce.

An Experimental Approach Towards Big Data for Analyzing Memory Utilization on a Hadoop cluster using HDFS and MapReduce. An Experimental Approach Towards Big Data for Analyzing Memory Utilization on a Hadoop cluster using HDFS and MapReduce. Amrit Pal Stdt, Dept of Computer Engineering and Application, National Institute

More information

Setting deadlines and priorities to the tasks to improve energy efficiency in cloud computing

Setting deadlines and priorities to the tasks to improve energy efficiency in cloud computing Setting deadlines and priorities to the tasks to improve energy efficiency in cloud computing Problem description Cloud computing is a technology used more and more every day, requiring an important amount

More information

VMware Server 2.0 Essentials. Virtualization Deployment and Management

VMware Server 2.0 Essentials. Virtualization Deployment and Management VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.

More information

farmerswife Contents Hourline Display Lists 1.1 Server Application 1.2 Client Application farmerswife.com

farmerswife Contents Hourline Display Lists 1.1 Server Application 1.2 Client Application farmerswife.com Contents 2 1 System requirements 2 1.1 Server Application 3 1.2 Client Application.com 1 1 Ensure that the computers on which you are going to install the Server and Client applications meet the system

More information

STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM

STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM STUDY AND SIMULATION OF A DISTRIBUTED REAL-TIME FAULT-TOLERANCE WEB MONITORING SYSTEM Albert M. K. Cheng, Shaohong Fang Department of Computer Science University of Houston Houston, TX, 77204, USA http://www.cs.uh.edu

More information

Capacity Estimation for Linux Workloads

Capacity Estimation for Linux Workloads Capacity Estimation for Linux Workloads Session L985 David Boyes Sine Nomine Associates 1 Agenda General Capacity Planning Issues Virtual Machine History and Value Unique Capacity Issues in Virtual Machines

More information

Network Performance Evaluation of Latest Windows Operating Systems

Network Performance Evaluation of Latest Windows Operating Systems Network Performance Evaluation of Latest dows Operating Systems Josip Balen, Goran Martinovic, Zeljko Hocenski Faculty of Electrical Engineering Josip Juraj Strossmayer University of Osijek Osijek, Croatia

More information

ENERGY-EFFICIENT TASK SCHEDULING ALGORITHMS FOR CLOUD DATA CENTERS

ENERGY-EFFICIENT TASK SCHEDULING ALGORITHMS FOR CLOUD DATA CENTERS ENERGY-EFFICIENT TASK SCHEDULING ALGORITHMS FOR CLOUD DATA CENTERS T. Jenifer Nirubah 1, Rose Rani John 2 1 Post-Graduate Student, Department of Computer Science and Engineering, Karunya University, Tamil

More information

This is an author-deposited version published in : http://oatao.univ-toulouse.fr/ Eprints ID : 12902

This is an author-deposited version published in : http://oatao.univ-toulouse.fr/ Eprints ID : 12902 Open Archive TOULOUSE Archive Ouverte (OATAO) OATAO is an open access repository that collects the work of Toulouse researchers and makes it freely available over the web where possible. This is an author-deposited

More information

Making Multicore Work and Measuring its Benefits. Markus Levy, president EEMBC and Multicore Association

Making Multicore Work and Measuring its Benefits. Markus Levy, president EEMBC and Multicore Association Making Multicore Work and Measuring its Benefits Markus Levy, president EEMBC and Multicore Association Agenda Why Multicore? Standards and issues in the multicore community What is Multicore Association?

More information

Multi-core Programming System Overview

Multi-core Programming System Overview Multi-core Programming System Overview Based on slides from Intel Software College and Multi-Core Programming increasing performance through software multi-threading by Shameem Akhter and Jason Roberts,

More information

Virtuoso and Database Scalability

Virtuoso and Database Scalability Virtuoso and Database Scalability By Orri Erling Table of Contents Abstract Metrics Results Transaction Throughput Initializing 40 warehouses Serial Read Test Conditions Analysis Working Set Effect of

More information

GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR

GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR GUEST OPERATING SYSTEM BASED PERFORMANCE COMPARISON OF VMWARE AND XEN HYPERVISOR ANKIT KUMAR, SAVITA SHIWANI 1 M. Tech Scholar, Software Engineering, Suresh Gyan Vihar University, Rajasthan, India, Email:

More information

Effective Java Programming. efficient software development

Effective Java Programming. efficient software development Effective Java Programming efficient software development Structure efficient software development what is efficiency? development process profiling during development what determines the performance of

More information

Stream Processing on GPUs Using Distributed Multimedia Middleware

Stream Processing on GPUs Using Distributed Multimedia Middleware Stream Processing on GPUs Using Distributed Multimedia Middleware Michael Repplinger 1,2, and Philipp Slusallek 1,2 1 Computer Graphics Lab, Saarland University, Saarbrücken, Germany 2 German Research

More information

AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring

AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring AppScope: Application Energy Metering Framework for Android Smartphones using Kernel Activity Monitoring Chanmin Yoon*, Dongwon Kim, Wonwoo Jung, Chulkoo Kang, Hojung Cha Dept. of Computer Science Yonsei

More information

International Journal of Computer & Organization Trends Volume20 Number1 May 2015

International Journal of Computer & Organization Trends Volume20 Number1 May 2015 Performance Analysis of Various Guest Operating Systems on Ubuntu 14.04 Prof. (Dr.) Viabhakar Pathak 1, Pramod Kumar Ram 2 1 Computer Science and Engineering, Arya College of Engineering, Jaipur, India.

More information

Energy Constrained Resource Scheduling for Cloud Environment

Energy Constrained Resource Scheduling for Cloud Environment Energy Constrained Resource Scheduling for Cloud Environment 1 R.Selvi, 2 S.Russia, 3 V.K.Anitha 1 2 nd Year M.E.(Software Engineering), 2 Assistant Professor Department of IT KSR Institute for Engineering

More information

SIDN Server Measurements

SIDN Server Measurements SIDN Server Measurements Yuri Schaeffer 1, NLnet Labs NLnet Labs document 2010-003 July 19, 2010 1 Introduction For future capacity planning SIDN would like to have an insight on the required resources

More information

Improving Grid Processing Efficiency through Compute-Data Confluence

Improving Grid Processing Efficiency through Compute-Data Confluence Solution Brief GemFire* Symphony* Intel Xeon processor Improving Grid Processing Efficiency through Compute-Data Confluence A benchmark report featuring GemStone Systems, Intel Corporation and Platform

More information

9/26/2011. What is Virtualization? What are the different types of virtualization.

9/26/2011. What is Virtualization? What are the different types of virtualization. CSE 501 Monday, September 26, 2011 Kevin Cleary [email protected] What is Virtualization? What are the different types of virtualization. Practical Uses Popular virtualization products Demo Question,

More information

Design and Implementation of the Heterogeneous Multikernel Operating System

Design and Implementation of the Heterogeneous Multikernel Operating System 223 Design and Implementation of the Heterogeneous Multikernel Operating System Yauhen KLIMIANKOU Department of Computer Systems and Networks, Belarusian State University of Informatics and Radioelectronics,

More information

Characterizing Task Usage Shapes in Google s Compute Clusters

Characterizing Task Usage Shapes in Google s Compute Clusters Characterizing Task Usage Shapes in Google s Compute Clusters Qi Zhang 1, Joseph L. Hellerstein 2, Raouf Boutaba 1 1 University of Waterloo, 2 Google Inc. Introduction Cloud computing is becoming a key

More information

Ready Time Observations

Ready Time Observations VMWARE PERFORMANCE STUDY VMware ESX Server 3 Ready Time Observations VMware ESX Server is a thin software layer designed to multiplex hardware resources efficiently among virtual machines running unmodified

More information

Introduction 1 Performance on Hosted Server 1. Benchmarks 2. System Requirements 7 Load Balancing 7

Introduction 1 Performance on Hosted Server 1. Benchmarks 2. System Requirements 7 Load Balancing 7 Introduction 1 Performance on Hosted Server 1 Figure 1: Real World Performance 1 Benchmarks 2 System configuration used for benchmarks 2 Figure 2a: New tickets per minute on E5440 processors 3 Figure 2b:

More information

Analysis and Modeling of MapReduce s Performance on Hadoop YARN

Analysis and Modeling of MapReduce s Performance on Hadoop YARN Analysis and Modeling of MapReduce s Performance on Hadoop YARN Qiuyi Tang Dept. of Mathematics and Computer Science Denison University [email protected] Dr. Thomas C. Bressoud Dept. of Mathematics and

More information

IBM Tivoli Composite Application Manager for WebSphere

IBM Tivoli Composite Application Manager for WebSphere Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the Create reports that deliver insight into life

More information

Lecture 11: Multi-Core and GPU. Multithreading. Integration of multiple processor cores on a single chip.

Lecture 11: Multi-Core and GPU. Multithreading. Integration of multiple processor cores on a single chip. Lecture 11: Multi-Core and GPU Multi-core computers Multithreading GPUs General Purpose GPUs Zebo Peng, IDA, LiTH 1 Multi-Core System Integration of multiple processor cores on a single chip. To provide

More information

Building Web-based Infrastructures for Smart Meters

Building Web-based Infrastructures for Smart Meters Building Web-based Infrastructures for Smart Meters Andreas Kamilaris 1, Vlad Trifa 2, and Dominique Guinard 2 1 University of Cyprus, Nicosia, Cyprus 2 ETH Zurich and SAP Research, Switzerland Abstract.

More information

Characterizing Java Virtual Machine for More Efficient Processor Power Management. Abstract

Characterizing Java Virtual Machine for More Efficient Processor Power Management. Abstract Characterizing Java Virtual Machine for More Efficient Processor Power Management Marcelo S. Quijano, Lide Duan Department of Electrical and Computer Engineering University of Texas at San Antonio [email protected],

More information

Hadoop Technology for Flow Analysis of the Internet Traffic

Hadoop Technology for Flow Analysis of the Internet Traffic Hadoop Technology for Flow Analysis of the Internet Traffic Rakshitha Kiran P PG Scholar, Dept. of C.S, Shree Devi Institute of Technology, Mangalore, Karnataka, India ABSTRACT: Flow analysis of the internet

More information

FileNet System Manager Dashboard Help

FileNet System Manager Dashboard Help FileNet System Manager Dashboard Help Release 3.5.0 June 2005 FileNet is a registered trademark of FileNet Corporation. All other products and brand names are trademarks or registered trademarks of their

More information

Understand and Build Android Programming Environment. Presented by: Che-Wei Chang

Understand and Build Android Programming Environment. Presented by: Che-Wei Chang Real Time System Project 1 Understand and Build Android Programming Environment Advisor: Prof. Tei-Wei i Kuo Presented by: Che-Wei Chang Outline Introduction to Android Framework What is Android Android

More information

Performance Analysis of Web based Applications on Single and Multi Core Servers

Performance Analysis of Web based Applications on Single and Multi Core Servers Performance Analysis of Web based Applications on Single and Multi Core Servers Gitika Khare, Diptikant Pathy, Alpana Rajan, Alok Jain, Anil Rawat Raja Ramanna Centre for Advanced Technology Department

More information

The Key Technology Research of Virtual Laboratory based On Cloud Computing Ling Zhang

The Key Technology Research of Virtual Laboratory based On Cloud Computing Ling Zhang International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) The Key Technology Research of Virtual Laboratory based On Cloud Computing Ling Zhang Nanjing Communications

More information

JReport Server Deployment Scenarios

JReport Server Deployment Scenarios JReport Server Deployment Scenarios Contents Introduction... 3 JReport Architecture... 4 JReport Server Integrated with a Web Application... 5 Scenario 1: Single Java EE Server with a Single Instance of

More information

Multi-core architectures. Jernej Barbic 15-213, Spring 2007 May 3, 2007

Multi-core architectures. Jernej Barbic 15-213, Spring 2007 May 3, 2007 Multi-core architectures Jernej Barbic 15-213, Spring 2007 May 3, 2007 1 Single-core computer 2 Single-core CPU chip the single core 3 Multi-core architectures This lecture is about a new trend in computer

More information

Last time. Data Center as a Computer. Today. Data Center Construction (and management)

Last time. Data Center as a Computer. Today. Data Center Construction (and management) Last time Data Center Construction (and management) Johan Tordsson Department of Computing Science 1. Common (Web) application architectures N-tier applications Load Balancers Application Servers Databases

More information

A Comparison of High-Level Full-System Power Models

A Comparison of High-Level Full-System Power Models A Comparison of High-Level Full-System Power Models Suzanne Rivoire Sonoma State University Parthasarathy Ranganathan Hewlett-Packard Labs Christos Kozyrakis Stanford University Abstract Dynamic power

More information

Operating System Components

Operating System Components Lecture Overview Operating system software introduction OS components OS services OS structure Operating Systems - April 24, 2001 Operating System Components Process management Memory management Secondary

More information

POWER MANAGEMENT FOR DESKTOP COMPUTER: A REVIEW

POWER MANAGEMENT FOR DESKTOP COMPUTER: A REVIEW POWER MANAGEMENT FOR DESKTOP COMPUTER: A REVIEW Ria Candrawati 1, Nor Laily Hashim 2, and Massudi Mahmuddin 3 1,2,3 Universiti Utara Malaysia, Malaysia, [email protected], [email protected], [email protected]

More information

Practical Performance Understanding the Performance of Your Application

Practical Performance Understanding the Performance of Your Application Neil Masson IBM Java Service Technical Lead 25 th September 2012 Practical Performance Understanding the Performance of Your Application 1 WebSphere User Group: Practical Performance Understand the Performance

More information

Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing

Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing www.ijcsi.org 227 Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing Dhuha Basheer Abdullah 1, Zeena Abdulgafar Thanoon 2, 1 Computer Science Department, Mosul University,

More information

Windows Server 2008 R2 Hyper-V Live Migration

Windows Server 2008 R2 Hyper-V Live Migration Windows Server 2008 R2 Hyper-V Live Migration Table of Contents Overview of Windows Server 2008 R2 Hyper-V Features... 3 Dynamic VM storage... 3 Enhanced Processor Support... 3 Enhanced Networking Support...

More information

Why Computers Are Getting Slower (and what we can do about it) Rik van Riel Sr. Software Engineer, Red Hat

Why Computers Are Getting Slower (and what we can do about it) Rik van Riel Sr. Software Engineer, Red Hat Why Computers Are Getting Slower (and what we can do about it) Rik van Riel Sr. Software Engineer, Red Hat Why Computers Are Getting Slower The traditional approach better performance Why computers are

More information

Dynamic Power Variations in Data Centers and Network Rooms

Dynamic Power Variations in Data Centers and Network Rooms Dynamic Power Variations in Data Centers and Network Rooms White Paper 43 Revision 3 by James Spitaels > Executive summary The power requirement required by data centers and network rooms varies on a minute

More information

Understanding the Performance of an X550 11-User Environment

Understanding the Performance of an X550 11-User Environment Understanding the Performance of an X550 11-User Environment Overview NComputing's desktop virtualization technology enables significantly lower computing costs by letting multiple users share a single

More information

Two-Level Cooperation in Autonomic Cloud Resource Management

Two-Level Cooperation in Autonomic Cloud Resource Management Two-Level Cooperation in Autonomic Cloud Resource Management Giang Son Tran, Laurent Broto, and Daniel Hagimont ENSEEIHT University of Toulouse, Toulouse, France Email: {giang.tran, laurent.broto, daniel.hagimont}@enseeiht.fr

More information

Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont.

Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont. Objectives To describe the services an operating system provides to users, processes, and other systems To discuss the various ways of structuring an operating system Chapter 2: Operating-System Structures

More information

I3: Maximizing Packet Capture Performance. Andrew Brown

I3: Maximizing Packet Capture Performance. Andrew Brown I3: Maximizing Packet Capture Performance Andrew Brown Agenda Why do captures drop packets, how can you tell? Software considerations Hardware considerations Potential hardware improvements Test configurations/parameters

More information

Benchmark Hadoop and Mars: MapReduce on cluster versus on GPU

Benchmark Hadoop and Mars: MapReduce on cluster versus on GPU Benchmark Hadoop and Mars: MapReduce on cluster versus on GPU Heshan Li, Shaopeng Wang The Johns Hopkins University 3400 N. Charles Street Baltimore, Maryland 21218 {heshanli, shaopeng}@cs.jhu.edu 1 Overview

More information

Dynamic Power Variations in Data Centers and Network Rooms

Dynamic Power Variations in Data Centers and Network Rooms Dynamic Power Variations in Data Centers and Network Rooms By Jim Spitaels White Paper #43 Revision 2 Executive Summary The power requirement required by data centers and network rooms varies on a minute

More information

Chapter 14 Virtual Machines

Chapter 14 Virtual Machines Operating Systems: Internals and Design Principles Chapter 14 Virtual Machines Eighth Edition By William Stallings Virtual Machines (VM) Virtualization technology enables a single PC or server to simultaneously

More information

DELL. Virtual Desktop Infrastructure Study END-TO-END COMPUTING. Dell Enterprise Solutions Engineering

DELL. Virtual Desktop Infrastructure Study END-TO-END COMPUTING. Dell Enterprise Solutions Engineering DELL Virtual Desktop Infrastructure Study END-TO-END COMPUTING Dell Enterprise Solutions Engineering 1 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL

More information

Reconfigurable Architecture Requirements for Co-Designed Virtual Machines

Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Reconfigurable Architecture Requirements for Co-Designed Virtual Machines Kenneth B. Kent University of New Brunswick Faculty of Computer Science Fredericton, New Brunswick, Canada [email protected] Micaela Serra

More information

x64 Servers: Do you want 64 or 32 bit apps with that server?

x64 Servers: Do you want 64 or 32 bit apps with that server? TMurgent Technologies x64 Servers: Do you want 64 or 32 bit apps with that server? White Paper by Tim Mangan TMurgent Technologies February, 2006 Introduction New servers based on what is generally called

More information

Mobile Cloud Computing for Data-Intensive Applications

Mobile Cloud Computing for Data-Intensive Applications Mobile Cloud Computing for Data-Intensive Applications Senior Thesis Final Report Vincent Teo, [email protected] Advisor: Professor Priya Narasimhan, [email protected] Abstract The computational and storage

More information

Figure 1: Graphical example of a mergesort 1.

Figure 1: Graphical example of a mergesort 1. CSE 30321 Computer Architecture I Fall 2011 Lab 02: Procedure Calls in MIPS Assembly Programming and Performance Total Points: 100 points due to its complexity, this lab will weight more heavily in your

More information

Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for On-Premises Single Tenant Deployments

Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for On-Premises Single Tenant Deployments Microsoft Dynamics NAV 2013 R2 Sizing Guidelines for On-Premises Single Tenant Deployments July 2014 White Paper Page 1 Contents 3 Sizing Recommendations Summary 3 Workloads used in the tests 3 Transactional

More information

Chapter 1 Computer System Overview

Chapter 1 Computer System Overview Operating Systems: Internals and Design Principles Chapter 1 Computer System Overview Eighth Edition By William Stallings Operating System Exploits the hardware resources of one or more processors Provides

More information

USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES

USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES USING VIRTUAL MACHINE REPLICATION FOR DYNAMIC CONFIGURATION OF MULTI-TIER INTERNET SERVICES Carlos Oliveira, Vinicius Petrucci, Orlando Loques Universidade Federal Fluminense Niterói, Brazil ABSTRACT In

More information

D5.6 Prototype demonstration of performance monitoring tools on a system with multiple ARM boards Version 1.0

D5.6 Prototype demonstration of performance monitoring tools on a system with multiple ARM boards Version 1.0 D5.6 Prototype demonstration of performance monitoring tools on a system with multiple ARM boards Document Information Contract Number 288777 Project Website www.montblanc-project.eu Contractual Deadline

More information

Analysis of the influence of application deployment on energy consumption

Analysis of the influence of application deployment on energy consumption Analysis of the influence of application deployment on energy consumption M. Gribaudo, Nguyen T.T. Ho, B. Pernici, G. Serazzi Dip. Elettronica, Informazione e Bioingegneria Politecnico di Milano Motivation

More information

Debugging. Common Semantic Errors ESE112. Java Library. It is highly unlikely that you will write code that will work on the first go

Debugging. Common Semantic Errors ESE112. Java Library. It is highly unlikely that you will write code that will work on the first go Debugging ESE112 Java Programming: API, Psuedo-Code, Scope It is highly unlikely that you will write code that will work on the first go Bugs or errors Syntax Fixable if you learn to read compiler error

More information

Overlapping Data Transfer With Application Execution on Clusters

Overlapping Data Transfer With Application Execution on Clusters Overlapping Data Transfer With Application Execution on Clusters Karen L. Reid and Michael Stumm [email protected] [email protected] Department of Computer Science Department of Electrical and Computer

More information

Autodesk Revit 2016 Product Line System Requirements and Recommendations

Autodesk Revit 2016 Product Line System Requirements and Recommendations Autodesk Revit 2016 Product Line System Requirements and Recommendations Autodesk Revit 2016, Autodesk Revit Architecture 2016, Autodesk Revit MEP 2016, Autodesk Revit Structure 2016 Minimum: Entry-Level

More information

Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing

Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing Effective Resource Allocation For Dynamic Workload In Virtual Machines Using Cloud Computing J.Stalin, R.Kanniga Devi Abstract In cloud computing, the business class customers perform scale up and scale

More information

Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009

Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009 Performance Study Performance Evaluation of VMXNET3 Virtual Network Device VMware vsphere 4 build 164009 Introduction With more and more mission critical networking intensive workloads being virtualized

More information

The Classical Architecture. Storage 1 / 36

The Classical Architecture. Storage 1 / 36 1 / 36 The Problem Application Data? Filesystem Logical Drive Physical Drive 2 / 36 Requirements There are different classes of requirements: Data Independence application is shielded from physical storage

More information

Data Management for Portable Media Players

Data Management for Portable Media Players Data Management for Portable Media Players Table of Contents Introduction...2 The New Role of Database...3 Design Considerations...3 Hardware Limitations...3 Value of a Lightweight Relational Database...4

More information

Capacity Plan. Template. Version X.x October 11, 2012

Capacity Plan. Template. Version X.x October 11, 2012 Template Version X.x October 11, 2012 This is an integral part of infrastructure and deployment planning. It supports the goal of optimum provisioning of resources and services by aligning them to business

More information

HOW TO EVALUATE AND SELECT TOOL A HIGH-END LOAD TESTING. Marquis Harding Reality Test P R E S E N T A T I O N. Presentation. Bio

HOW TO EVALUATE AND SELECT TOOL A HIGH-END LOAD TESTING. Marquis Harding Reality Test P R E S E N T A T I O N. Presentation. Bio Presentation P R E S E N T A T I O N Bio E6 Thursday, March 8, 2001 11:30 AM HOW TO EVALUATE AND SELECT A HIGH-END LOAD TESTING TOOL Marquis Harding Reality Test International Conference On Software Test

More information

PARALLELS CLOUD SERVER

PARALLELS CLOUD SERVER PARALLELS CLOUD SERVER Performance and Scalability 1 Table of Contents Executive Summary... Error! Bookmark not defined. LAMP Stack Performance Evaluation... Error! Bookmark not defined. Background...

More information