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

Size: px
Start display at page:

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

Transcription

1 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 Abstract With CPUs dominating the power consumption of a datacenter, improving energy efficiency is a primary design goal for current processors, servers, and even datacenters. Therefore, power management schemes such as clock gating and power gating have been proposed to lower the processor power consumption. These schemes utilize different sleep states implemented in current commercial CPUs, dynamically transitioning the processor into a suitable sleep state based on its workload. In particular, power gating is a vital solution to eliminate leakage power nowadays representing a significant amount of the processors power dissipation. Although operating at various sleep states reduces CPU idle power, transitioning to and from these states incurs overhead in power consumption and wake-up latencies. The existing power management solutions for a computer system usually focus on the architecture layer with no notion of higher layers such as operating system and virtualization. As a result, their power saving may be suboptimal if cross-layer interaction is taken into account. In this paper, we propose investigating the Java Virtual Machine (JVM) to generate power saving hints at virtualization layer and provide useful information to the hardware system for selecting adequate power limits for the underlying processor. Different components of the JVM are capable of characterizing the software being compiled for optimization purposes. For instance, the garbage collector keeps track of the lifetime of different objects in the JVM; the Just In Time (JIT) compiler determines the frequency of the different methods. Useful information gathered by different features within the JVM can be used to construct a framework that provides guidance for effective low-level power management. Furthermore, benchmarking software can be used to characterize a certain JVM implementation and isolate the least or the most power hungry components and program phases. Introduction Popular demand for websites, cloud storage, and databases, among other components in the preceding years, has caused data centers to grow and expand. Increasing the number of servers running in a datacenter increases one important factor; power consumption. From 25 to 21 the power consumed by datacenters in the U.S. increased approximately 56% [reference]. This increase in power consumption has driven an interest in optimizing power efficiency of a datacenter. In modern datacenters, CPU makes up 42% of the total peak power, making it the top power consumer [reference]. Therefore lowering the power consumption of the CPU in servers will reduce the overall datacenter power. The motive of this paper is to provide a new approach to make clock and power gating more efficient, power friendly, and cost effective. Clock gating is a technique used to put the processor in different

2 sleep states depending on its demand. Power gating is the technique of completely shutting down the processor whenever it is advantageous towards reducing power consumption. The goal is to use data gathered by different components of the JVM to provide clues to the power management hardware to determine the correct power state for the underlying processor. This paper explores the use of Powertop, a tool that provides real time information about a program s effect toward power driving factors of a processor, to gather information about the processor s states while running different benchmarks in different JVMs. First, some useful background information about the JVM s architecture, high level functionality of the JVM and power consumption of JVMs are provided to help the reader understand certain data and conclusions we will provide throughout the paper. Suggestions on how JVMs can be used to reduce processor s power are also provided in the Background section. Then all the experimental components for the experiment in this paper will listed, defined, and their functionalities towards the experiment will be explained including: Powertop, the DaCapo Benchmarks, and Icedtea and Jre8 JVMs. The paper will then be followed by the results and analyses section which will be composed of the results provided by Powertop when running a single benchmark in Icedtea, each benchmark individually in Icedtea, and each benchmark individually in Icedtea and Jre8. The results will then be analyzed and finally conclusions will be made based on the results. Background The Java Virtual Machine A JVM is composed of three main sections: the Virtual Machine Runtime Area, the Garbage Collector, and the Just In Time (JIT) compiler. The VM Runtime Area is responsible for the JVM life cycle, exception handling, error handling, class loading, interpreter, Java native interface and thread management and Synchronization. The Garbage Collector is used for Java object memory allocation and reclamation. The JIT Compiler interprets Java byte codes into native code for the underlying platform [3]. Java programs are compiled by a Java compiler to generate class files consisting of bytecode, i.e. the instruction set of the JVM. During execution, the class loader loads the class files into to the RAM. The bytecode in the class files is then converted into native machine code by the execution engine using a JIT compiler. Figure 1 provides a visual representation of a JVM [3], and one can see how the runtime area communicates with the class loader and the execution engine.

3 Figure 1. The Java Virtual Machine Architecture In the runtime area in Figure 1, there are five components, for the purpose of this paper, I will only explain the heap, since it is the section of memory that is segregated for JVM use and it is the area were the garbage collector operates. The heap is separated into two sections, young and old generation. In the young generation section, short lived data is stored, and in the old generation section, data that has survived several garbage collections is stored. The heap is also designed to keep track of how many garbage collections each surviving object has survived. This data can helpful in determining which objects are used the most [3]. Power Consumption of JVMs Research shows that the peak power consumption of JVMs was usually caused by the application they were running and not by its components [4]. For this reason, research focused on reducing the power consumption of JVMs by implementing optimizations on the different components has faded, and the focus has shifted more on to modulating application peak power. Using the JVM to Reduce Power After having a general idea of how a JVM and its components function, it seems feasible to use certain information, gathered by different components of the JVM, about the program being executed to assist the power management hardware decide the adequate processor power state. For instance, the garbage collector records the lifetime of different objects in the JVM s heap. The Just In Time (JIT) compiler uses different methods to determine the frequency of different methods called in the application executed by the JVM and collecting this data may be helpful towards assisting in determining the power state the processor should be running in.

4 Experimental Setup This section provides a summary of what Powertop is capable of providing and how it was used in the experiment. It also summarizes the purpose of the DaCapo benchmarks and how they are used in the experiments. Power and Energy Measurements Using Powertop Powertop is a Linux based tool that provides real time information about programs influence to a processor s state and activity while they are executed. Powertop has seven different modes, and two of them were used in our experiments: html mode and workload mode. Html mode and workload mode were used for Powertop to run a specified workload and store its results in an html file. As depicted in Figure 2, the html file consists of 8 tabs: Summary tab, CPU Idle tab, CPU Frequency Tab, Software Info Tab, Device info Tab, Tuning Tab, Advanced Host Controller Interface (AHCI) tab, and All tab. The summary tab lists the top power consuming processes which kept waking the processor up while running the benchmark. The CPU Idle tab denotes the different Idle states (i.e. the C-states) broken up by CPU, core, and package. The server s processor used in this experiment has 4 different C-states, C, C1,C3, and C6, with C being the active state, C6 the power gating deep sleep state, and C1 and C3 being the clock gating idle states in between active and deep sleep. The frequency tab presents the different scalable active state frequencies also broken up by CPU, core, and package. There are 16 scalable frequencies in the processor used and they vary from 12 MHz to more than 2.6 GHz. The highest being turbo mode varies from 2.7 GHz to 3.2 GHz, and the lowest being 12 MHz. The software info tab depicts the same data as the Summary tab, which shows the top power consuming items which kept waking up the processor, but shows more details like the GPU s operations per second, disk input output per second, and graphics card wakeups per second caused by each program. The device info tab lists the hardware devices that consume the most power. The tuning tab denotes the list of devices that are not tuned for power management and shows commands on how to tune them individually. The AHCI tab is not supported by the server used. Finally, the All tab shows all the tabs data in one place [5].

5 Figure 2. Html File Created by Powertop The DaCapo Benchmark Suite The DaCapo Benchmarks are a set of realistic, open source Java applications. They were created as an effort to produce Java benchmarks that followed two main criteria: diverse real applications and ease of use. These criteria were met by gathering diverse Java programs to increase the coverage of application behavior, using benchmarks that are easy to measure and have minimal dependencies, and provide a range of various input sizes [6]. The benchmarks used for this experiment are: batik, fop, h2, luindex, lusearch, sunflow, and xalan. Batik benchmark creates a number of Scalable Vector Graphics (SVG) files. Fop benchmark converts ax XLS-FO file to a PDF file. H2 benchmark is an in-memory database benchmark executing transactions against a baking like application. Luindex indexes a set of documents comprised of the works of Shakespeare and King James Bible. Lusearch benchmark does a text search of keywords over a data composed of works of Shakespeare and King James Bible. Sunflow benchmark generates a set of images using ray tracing technique. Xalan benchmark transforms XML documents into HTML files [6]. The Java Virtual Machines The two JVMs used in this experiment are Icedtea and Jre8. Icedtead JVM is an open source that was invented to provide a solution to build OpenJDK using free non-proprietary tools. OpenJDK is

6 Event/s an open source JVM implemented by Sun Microsystems in order to be able to use it in free GNU/Linux distributions. Jre8 JVM is a proprietary JVM owned by Sun Microsystems. Since Jre8 is a proprietary JVM, it is expected to be a better JVM when comparing both power and effectiveness. Results and Analyses This section presents Powertop s results when running different experiments with different JVMs and different Benchmarks. The first section focuses in running one benchmark and depicts useful data that Powertop provides. The second section shows results and conclusions regarding running each benchmark once using Icedtea JVM. Finally, the third section compares Powertop s results when running each benchmark in each JVM, Icedtea and Jre8. Similarities, differences, and conclusions are stated based on the results. Sunflow Benchmark Analyses Using Powertop To demonstrate what Powertop is capable of providing, Powertop was used to run sunflow benchmark once in a single thread. It was given a large input, and an html file was generated with the data gathered while the benchmark was executed. Icedtea JVM was used to run the benchmark. Figures 3, 4, and 5 depict the data gathered from the html file created by Powertop after running sunflow with the criteria above. 25 Wakeups/s by Sunflow Benchmark sunflow Benchmark Figure 3. Wakeups/s while Executing Sunflow Benchmark Using Icedtea The number of wakeups per second by a processor is an important aspect to consider when looking at power efficiency, and Powertop can gather this information when executing a benchmark. Figure 3 illustrates the number of wakeups per second (around 225 wakeups/s) that occurred while the sunflow benchmark was executed. Data presented in later sections will conclude that sunflow wakes up the processor quite often compared to other benchmarks executed in Icedtea JVM.

7 Percentage of Time Spend in Each State Percent of Time in an Idle State Sunflow C % C1 % C3 % C6 % Idle States Figure 4. Powertop Results Regarding Idle States while Executing Sunflow Benchmark Using Icedtea Figure 4, denotes the percentage of time that the processor spends in each of the idle states. Since the sunflow benchmark uses ray tracing to generate a set of images, it is expected to be computation intensive, and Figure 4 conveys that. When running the sunflow benchmark, the processor spends over 8 percent of the time in the C or active state, and a low 15 percent of the time, the processor goes into deep sleep while it is in the idle states. Percentage of Time in Turbo Mode vs Idle Mode sunflow Benchmark Turbo Mode Idle Figure 5. Powertop Results Regarding Turbo Mode vs Idle Mode while Executing Sunflow Benchmark Using Icedtea To compare the time spent in turbo mode vs idle mode, Figure 5 was introduced. Turbo mode

8 Percentage of Time Spend in a State Percentage of Time in an Idle State represents the processor running at its maximum frequency. These results were gathered from the frequency tab in the html file. The graph shows that the processor was in turbo mode close to 8 percent of the time and only 2 percent in idle mode. Figures 6 and 7 demonstrate the power effects of varying the input size of the benchmark. Based on the two figures, it can be determined that the greater the input size, the more power the processor will consume. This is because the smaller input spends more time in idle states rather than active states compared to the results given with the bigger input. Small vs Large Input Idle States Comparison C % C1 % C3 % C6 % Idle States sunflow large input sunflow small input Figure 6. Powertop Results Regarding Turbo Mode vs Idle Mode while Executing Sunflow Benchmark Using Icedtea Small vs Large Input Active vs Idle State Comparison sunflow large input Input Size sunflow small input Turbo Mode Idle Figure 7. Powertop Results Regarding Turbo Mode vs Idle Mode while Executing Sunflow Benchmark Using Icedtea

9 Events/s Comparing Benchmarks Using Powertop Using Powertop, seven benchmarks were used for this experiment. This section explores the results provided by Powertop when each of these benchmarks was executed individually. Each benchmark was executed once, given the biggest input possible, and in a single thread. Powertop then stored the results in an html file after each execution where the data for the graphs was gathered from Events/s for Each Benchmark Using Icedtea batik fop h2 luindex lusearch sunflow xalan Benchmark Figure 8. Wakeups/s while Executing Each Benchmark Independently Using Icedtea Figure 8 denotes the processor s wakeups per second during the execution of each of the stated benchmarks. It is obvious that lusearch, sunflow, and xalan benchmarks wake the processor up with the highest frequencies. This is due to the fact that those three benchmarks are the most computational intensive. Looking at Figure 8, one can also determine that the luindex benchmark is the benchmark that needed the least processor assistance. This makes sense since it is only indexing documents, which does not require much effort by the processor.

10 Percent of Time in an Idle State Time Spend in Different Idle States based on Pecentage Running Icedtea C % C1 % C3 % C6 % Idle States batik fop h2 luindex lusearch sunflow xalan Figure 9. Powertop Results Regarding Idle States while Executing Each Benchmark Independently Using Icedtea After analyzing Figure 9, one can conclude that sunflow and xalan spend the most percentage of time in C active state, lusearch is the only benchmark that spend some time in the C1 state, and luindex is the benchmark with the most percentage of time in C6 deep sleep state. Sunflow and xalan benchmarks spending most of their time in the C active state is in accordance with Figure 8, since they were also the benchmarks that caused the most wakeups per second along with lusearch. Generating a set of images using ray tracing technique and transforming XML documents into HTML files, which are done in these two benchmarks, are both computation intensive. The fact that lusearch is only in active state 5 plus percent of the time being one of the benchmarks that woke up the processor the most is due to the chuck of time spend in the C1 state. Since a text search of keywords over a corpus of data may require the processor constantly, but it is not as computational intensive as sunflow and xalan benchmarks. Finally, it is in agreement with Figure 8 that luindex should spend the most time in deep sleep since it is the least computational intensive.

11 Execution Time in ms Percentage of Time Spend in State Percentage of Time in Turbo Mode vs Idle State batik fop h2 luindex lusearch sunflow xalan Benchmarks Turbo Mode Idle Figure 1. Powertop Results Regarding Turbo Mode vs Idle Mode while Each Benchmark Independently Using Icedtea Figure 1 presents the percentage of time spent in turbo mode vs idle mode. The conclusions made from this graph are the same as in Figure 8 and 9 for the same reasons. The most computational intensive benchmarks, sunflow and xalan, spend the most time in turbo mode and the least intensive program consumed the greatest percentage of time in idle mode Execution by Each Benchmark batik fop h2 luindex lusearch sunflow xalan Benchmarks Figure 11. Execution Time by Each Benchmark Using Icedtea If execution time per benchmark is taken into account, the results do not vary much. Figure 11 demonstrates that again both sunflow and xalan benchmarks take the longest time to execute and luindex benchmark the least time.

12 Percent of Time in an Idle State Percent of Time in an Idle State Comparing JVMs Using Powertop This section compares two java virtual machines (JVM), Icedtea and Jre8, and their results when running the benchmarks. First, comparisons between the time spent in different idle states for different benchmarks between both JVMs will be made, followed by comparisons between time spent in turbo vs idle mode, and finally, contrasts between execution times of each benchmark between both JVMs will be presented. Time Spend in Different Idle States based on Pecentage Icedtea C % C1 % C3 % C6 % Idle States batik fop h2 luindex lusearch sunflow xalan Time Spend in Different Idle States based on Pecentage Running Jre C % C1 % C3 % C6 % Idle States batik fop h2 luindex lusearch sunflow xalan Figure 12. Powertop Results Regarding Idle States while Executing Each Benchmark Independently By observing Figure 12, one can infer that Jre8 is more power efficient since it spends more percentage of time in deep sleep state, C6. It demonstrates this conclusion more drastically when looking at batik and fop benchmarks. All other benchmarks gave roughly the same results.

13 Percentage of Time Spend in State Percentage of Time Spend in State Percentage of Time in Turbo Mode vs Idle State Running in Icedtea Turbo Mode Idle Benchmarks Percentage of Time in Turbo Mode vs Idle State Running in Jre Turbo Mode Idle Benchmarks Figure 13. Powertop Results Regarding Turbo Mode vs Idle Mode while Each Benchmark Independently When observing the time spend in Turbo vs Idle mode, the same holds true, Jre8 is more efficient. This statement can be made by observing Figure 13. Similar to when comparing idle states, the batik and fop benchmarks spend a greater percent of time notoriously when running in Jre8 compared to running them in Icedtea. When comparing Turbo vs Idle mode xalan benchmark also spends a significantly greater percentage of time in Idle mode when running in Jre8 compared than running in Icedtea. Besides those benchmarks, all other benchmarks showed similar results when running in each JVM when comparing Turbo and Idle mode. When looking at the execution time for each benchmark using each of the JVMs in Figure 13, one can conclude that Jre8 is quicker at executing most of the benchmarks. Fop, luindex, sunflow, and xalan were execute slightly faster by Jre8, and Icedtea was quicker at executing batik, h2, and lusearch. Something to take into account is that only substantial difference between the execution times between the JVMs occurs when executing the batik benchmark, in which Jre8 takes nearly twice as long as Icedtea.

14 Conclusions and Future Work The motivation of this work is to generate power saving hints at virtualization layer and provide useful information to the hardware system for selecting adequate power limits for the underlying processor. Powertop was presented as a possible solution for a JVM power measurement tool. It was successful at providing data that lead to conclusions on which type of applications are power hungry and how Jre8 is better than Icedtea JVM. First, it can be concluded that graphic related programs such as generating images are power hungry when running in the JVM. Also, any complex transformation from one file type to another can also consume a fair amount of power, e.g. in the case of the xalan benchmark converting XML files to HTML files. On the contrary, a simpler file conversion, which was implemented by flop benchmark, from XLS-FO file to a PDF file does not consume as much power. Also, a simple program like indexing a set of documents is also power friendly when implemented. The next step to take based on these conclusions is looking into what is happening inside the JVM that is causing a program to consume or not consume that much power? What is the state of the JVM when an application is causing it to consume power? What type of functions are the ones that make the processor be active the longest? Second, Jre8 was slightly more efficient then Icedtea when taking execution time into account, but the differences were minimal for most benchmarks. Jre8 was also more efficient when it came down to power management, and the differences there were more notable. The next step will be to analyze why Jre8 is more power efficient than Icedtea? What are the difference in the internal states when running a power hungry vs a low power program? Additional future studies include analyzing the garbage collector when running a power hungry application. Useful data on objects lifetime may be acquired and analyzed and conclusions can be made on why a particular object has a short or long lifetime within the JVM. The JIT compiler is another component that may store useful data that may be used to draw conclusions, e.g. it uses different techniques to determine the frequency of the different methods implemented by the program running in the JVM. References [1] Koomey, Jonathan, Growth in Data Center Electricity Use 25 to 21, A report by Analytics Press, The New York Times (211). [2] L. Barroso, J. Clidaras, and U. Holzle, The Datacenter as a Computer: An Introduction to the Design of Warehouse-Scale Machines, Second Edition, Morgan & Claypool Publishers (213). [3] Venners, Bill, Inside the Java Virtual Machine, McGraw-Hill, Inc. Press, New York, NY, 1996, Chap. 5. [4] Contreras, Gilberto and Martonosi, Margaret Techniques for Real-System Characterization of Java Virtual Machine Energy and Power Behavior, IEEE (26). [5] Accardi, Kristen C.and Yates, Alexandra, Powertop User s Guide, Intel Corporation (214). [6] Blackburn, Garner, Hoffmann, Khan, McKinley, Bentzur, Diwan, Feinberg, Guyer, Hirzel, Hosking, Jump, Lee, Moss, Phansalkar, Stefanovi, VanDrunen, von Dincklage, Wiedermann The DaCapo

15 Benchmarks: Java Benchmarking Development and Analysis, OOPSLA (26).

Techniques for Real-System Characterization of Java Virtual Machine Energy and Power Behavior

Techniques for Real-System Characterization of Java Virtual Machine Energy and Power Behavior Techniques for Real-System Characterization of Java Virtual Machine Energy and Power Behavior Gilberto Contreras Margaret Martonosi Department of Electrical Engineering Princeton University 1 Why Study

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

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 sudha.mooki@gmail.com 2 Department

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

Garbage Collection in the Java HotSpot Virtual Machine

Garbage Collection in the Java HotSpot Virtual Machine http://www.devx.com Printed from http://www.devx.com/java/article/21977/1954 Garbage Collection in the Java HotSpot Virtual Machine Gain a better understanding of how garbage collection in the Java HotSpot

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

How accurately do Java profilers predict runtime performance bottlenecks?

How accurately do Java profilers predict runtime performance bottlenecks? How accurately do Java profilers predict runtime performance bottlenecks? Master Software Engineering How accurately do Java profilers predict runtime performance bottlenecks? Peter Klijn: Student number

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

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead

An Oracle White Paper September 2013. Advanced Java Diagnostics and Monitoring Without Performance Overhead An Oracle White Paper September 2013 Advanced Java Diagnostics and Monitoring Without Performance Overhead Introduction... 1 Non-Intrusive Profiling and Diagnostics... 2 JMX Console... 2 Java Flight Recorder...

More information

Fachbereich Informatik und Elektrotechnik SunSPOT. Ubiquitous Computing. Ubiquitous Computing, Helmut Dispert

Fachbereich Informatik und Elektrotechnik SunSPOT. Ubiquitous Computing. Ubiquitous Computing, Helmut Dispert Ubiquitous Computing Ubiquitous Computing The Sensor Network System Sun SPOT: The Sun Small Programmable Object Technology Technology-Based Wireless Sensor Networks a Java Platform for Developing Applications

More information

2 Introduction to Java. Introduction to Programming 1 1

2 Introduction to Java. Introduction to Programming 1 1 2 Introduction to Java Introduction to Programming 1 1 Objectives At the end of the lesson, the student should be able to: Describe the features of Java technology such as the Java virtual machine, garbage

More information

Replication on Virtual Machines

Replication on Virtual Machines Replication on Virtual Machines Siggi Cherem CS 717 November 23rd, 2004 Outline 1 Introduction The Java Virtual Machine 2 Napper, Alvisi, Vin - DSN 2003 Introduction JVM as state machine Addressing non-determinism

More information

Mobile Devices - An Introduction to the Android Operating Environment. Design, Architecture, and Performance Implications

Mobile Devices - An Introduction to the Android Operating Environment. Design, Architecture, and Performance Implications Mobile Devices - An Introduction to the Android Operating Environment Design, Architecture, and Performance Implications Dominique A. Heger DHTechnologies (DHT) dheger@dhtusa.com 1.0 Introduction With

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

White Paper Perceived Performance Tuning a system for what really matters

White Paper Perceived Performance Tuning a system for what really matters TMurgent Technologies White Paper Perceived Performance Tuning a system for what really matters September 18, 2003 White Paper: Perceived Performance 1/7 TMurgent Technologies Introduction The purpose

More information

JBoss Data Grid Performance Study Comparing Java HotSpot to Azul Zing

JBoss Data Grid Performance Study Comparing Java HotSpot to Azul Zing JBoss Data Grid Performance Study Comparing Java HotSpot to Azul Zing January 2014 Legal Notices JBoss, Red Hat and their respective logos are trademarks or registered trademarks of Red Hat, Inc. Azul

More information

Lecture 3: Evaluating Computer Architectures. Software & Hardware: The Virtuous Cycle?

Lecture 3: Evaluating Computer Architectures. Software & Hardware: The Virtuous Cycle? Lecture 3: Evaluating Computer Architectures Announcements - Reminder: Homework 1 due Thursday 2/2 Last Time technology back ground Computer elements Circuits and timing Virtuous cycle of the past and

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. achrosny@treeage.com Andrew Munzer Director, Training and Customer

More information

Java Garbage Collection Basics

Java Garbage Collection Basics Java Garbage Collection Basics Overview Purpose This tutorial covers the basics of how Garbage Collection works with the Hotspot JVM. Once you have learned how the garbage collector functions, learn how

More information

What s Cool in the SAP JVM (CON3243)

What s Cool in the SAP JVM (CON3243) What s Cool in the SAP JVM (CON3243) Volker Simonis, SAP SE September, 2014 Public Agenda SAP JVM Supportability SAP JVM Profiler SAP JVM Debugger 2014 SAP SE. All rights reserved. Public 2 SAP JVM SAP

More information

Virtualization Performance on SGI UV 2000 using Red Hat Enterprise Linux 6.3 KVM

Virtualization Performance on SGI UV 2000 using Red Hat Enterprise Linux 6.3 KVM White Paper Virtualization Performance on SGI UV 2000 using Red Hat Enterprise Linux 6.3 KVM September, 2013 Author Sanhita Sarkar, Director of Engineering, SGI Abstract This paper describes how to implement

More information

Mission-Critical Java. An Oracle White Paper Updated October 2008

Mission-Critical Java. An Oracle White Paper Updated October 2008 Mission-Critical Java An Oracle White Paper Updated October 2008 Mission-Critical Java The Oracle JRockit family of products is a comprehensive portfolio of Java runtime solutions that leverages the base

More information

NetBeans Profiler is an

NetBeans Profiler is an NetBeans Profiler Exploring the NetBeans Profiler From Installation to a Practical Profiling Example* Gregg Sporar* NetBeans Profiler is an optional feature of the NetBeans IDE. It is a powerful tool that

More information

System Requirements Table of contents

System Requirements Table of contents Table of contents 1 Introduction... 2 2 Knoa Agent... 2 2.1 System Requirements...2 2.2 Environment Requirements...4 3 Knoa Server Architecture...4 3.1 Knoa Server Components... 4 3.2 Server Hardware Setup...5

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

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc.

Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc. Tuning WebSphere Application Server ND 7.0 Royal Cyber Inc. JVM related problems Application server stops responding Server crash Hung process Out of memory condition Performance degradation Check if the

More information

Virtual Machine Services: An Opportunity for Hardware Customization

Virtual Machine Services: An Opportunity for Hardware Customization Virtual Machine Services: An Opportunity for Hardware Customization Ting Cao, Stephen M Blackburn, and Kathryn S McKinley Australian National University Microsoft Research The University of Texas at Austin

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, vct@andrew.cmu.edu Advisor: Professor Priya Narasimhan, priya@cs.cmu.edu Abstract The computational and storage

More information

Enterprise Manager Performance Tips

Enterprise Manager Performance Tips Enterprise Manager Performance Tips + The tips below are related to common situations customers experience when their Enterprise Manager(s) are not performing consistent with performance goals. If you

More information

Achieving Nanosecond Latency Between Applications with IPC Shared Memory Messaging

Achieving Nanosecond Latency Between Applications with IPC Shared Memory Messaging Achieving Nanosecond Latency Between Applications with IPC Shared Memory Messaging In some markets and scenarios where competitive advantage is all about speed, speed is measured in micro- and even nano-seconds.

More information

Kentico CMS 6.0 Performance Test Report. Kentico CMS 6.0. Performance Test Report February 2012 ANOTHER SUBTITLE

Kentico CMS 6.0 Performance Test Report. Kentico CMS 6.0. Performance Test Report February 2012 ANOTHER SUBTITLE Kentico CMS 6. Performance Test Report Kentico CMS 6. Performance Test Report February 212 ANOTHER SUBTITLE 1 Kentico CMS 6. Performance Test Report Table of Contents Disclaimer... 3 Executive Summary...

More information

General Introduction

General Introduction Managed Runtime Technology: General Introduction Xiao-Feng Li (xiaofeng.li@gmail.com) 2012-10-10 Agenda Virtual machines Managed runtime systems EE and MM (JIT and GC) Summary 10/10/2012 Managed Runtime

More information

System Structures. Services Interface Structure

System Structures. Services Interface Structure System Structures Services Interface Structure Operating system services (1) Operating system services (2) Functions that are helpful to the user User interface Command line interpreter Batch interface

More information

Host Power Management in VMware vsphere 5.5

Host Power Management in VMware vsphere 5.5 in VMware vsphere 5.5 Performance Study TECHNICAL WHITE PAPER Table of Contents Introduction...3 Power Management BIOS Settings...3 Host Power Management in ESXi 5.5... 5 Relationship between HPM and DPM...

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

Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7

Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7 Architecting for the next generation of Big Data Hortonworks HDP 2.0 on Red Hat Enterprise Linux 6 with OpenJDK 7 Yan Fisher Senior Principal Product Marketing Manager, Red Hat Rohit Bakhshi Product Manager,

More information

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1 Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System

More information

Scalability Factors of JMeter In Performance Testing Projects

Scalability Factors of JMeter In Performance Testing Projects Scalability Factors of JMeter In Performance Testing Projects Title Scalability Factors for JMeter In Performance Testing Projects Conference STEP-IN Conference Performance Testing 2008, PUNE Author(s)

More information

An Oracle White Paper March 2013. Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite

An Oracle White Paper March 2013. Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite An Oracle White Paper March 2013 Load Testing Best Practices for Oracle E- Business Suite using Oracle Application Testing Suite Executive Overview... 1 Introduction... 1 Oracle Load Testing Setup... 2

More information

Enabling Technologies for Distributed Computing

Enabling Technologies for Distributed Computing Enabling Technologies for Distributed Computing Dr. Sanjay P. Ahuja, Ph.D. Fidelity National Financial Distinguished Professor of CIS School of Computing, UNF Multi-core CPUs and Multithreading Technologies

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

ILOG JRules Performance Analysis and Capacity Planning

ILOG JRules Performance Analysis and Capacity Planning ILOG JRules Performance Analysis and Capacity Planning Version 1. Last Modified: 25-9-31 Introduction JRules customers and evaluators often ask fundamental questions such as: How fast is the rule engine?,

More information

A Middleware Strategy to Survive Compute Peak Loads in Cloud

A Middleware Strategy to Survive Compute Peak Loads in Cloud A Middleware Strategy to Survive Compute Peak Loads in Cloud Sasko Ristov Ss. Cyril and Methodius University Faculty of Information Sciences and Computer Engineering Skopje, Macedonia Email: sashko.ristov@finki.ukim.mk

More information

The Hotspot Java Virtual Machine: Memory and Architecture

The Hotspot Java Virtual Machine: Memory and Architecture International Journal of Allied Practice, Research and Review Website: www.ijaprr.com (ISSN 2350-1294) The Hotspot Java Virtual Machine: Memory and Architecture Prof. Tejinder Singh Assistant Professor,

More information

Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and Dell PowerEdge M1000e Blade Enclosure

Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and Dell PowerEdge M1000e Blade Enclosure White Paper Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and Dell PowerEdge M1000e Blade Enclosure White Paper March 2014 2014 Cisco and/or its affiliates. All rights reserved. This

More information

Java in Virtual Machines on VMware ESX: Best Practices

Java in Virtual Machines on VMware ESX: Best Practices Java in Virtual Machines on VMware ESX: Best Practices TABLE OF CONTENTS 1. SUMMARY OF BEST PRACTICES...1 1.1 Java in Virtual Machines on ESX...1 1.2. Running Applications in ESX Virtual Machines...2 2.

More information

Benchmarking Hadoop & HBase on Violin

Benchmarking Hadoop & HBase on Violin Technical White Paper Report Technical Report Benchmarking Hadoop & HBase on Violin Harnessing Big Data Analytics at the Speed of Memory Version 1.0 Abstract The purpose of benchmarking is to show advantages

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

Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and IBM FlexSystem Enterprise Chassis

Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and IBM FlexSystem Enterprise Chassis White Paper Power Efficiency Comparison: Cisco UCS 5108 Blade Server Chassis and IBM FlexSystem Enterprise Chassis White Paper March 2014 2014 Cisco and/or its affiliates. All rights reserved. This document

More information

Liferay Portal Performance. Benchmark Study of Liferay Portal Enterprise Edition

Liferay Portal Performance. Benchmark Study of Liferay Portal Enterprise Edition Liferay Portal Performance Benchmark Study of Liferay Portal Enterprise Edition Table of Contents Executive Summary... 3 Test Scenarios... 4 Benchmark Configuration and Methodology... 5 Environment Configuration...

More information

Validating Java for Safety-Critical Applications

Validating Java for Safety-Critical Applications Validating Java for Safety-Critical Applications Jean-Marie Dautelle * Raytheon Company, Marlborough, MA, 01752 With the real-time extensions, Java can now be used for safety critical systems. It is therefore

More information

Performance Test Report KENTICO CMS 5.5. Prepared by Kentico Software in July 2010

Performance Test Report KENTICO CMS 5.5. Prepared by Kentico Software in July 2010 KENTICO CMS 5.5 Prepared by Kentico Software in July 21 1 Table of Contents Disclaimer... 3 Executive Summary... 4 Basic Performance and the Impact of Caching... 4 Database Server Performance... 6 Web

More information

Comparison of Windows IaaS Environments

Comparison of Windows IaaS Environments Comparison of Windows IaaS Environments Comparison of Amazon Web Services, Expedient, Microsoft, and Rackspace Public Clouds January 5, 215 TABLE OF CONTENTS Executive Summary 2 vcpu Performance Summary

More information

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Database Solutions Engineering By Murali Krishnan.K Dell Product Group October 2009

More information

Microsoft Windows Server 2003 with Internet Information Services (IIS) 6.0 vs. Linux Competitive Web Server Performance Comparison

Microsoft Windows Server 2003 with Internet Information Services (IIS) 6.0 vs. Linux Competitive Web Server Performance Comparison April 23 11 Aviation Parkway, Suite 4 Morrisville, NC 2756 919-38-28 Fax 919-38-2899 32 B Lakeside Drive Foster City, CA 9444 65-513-8 Fax 65-513-899 www.veritest.com info@veritest.com Microsoft Windows

More information

The DaCapo Benchmarks: Java Benchmarking Development and Analysis (Extended Version)

The DaCapo Benchmarks: Java Benchmarking Development and Analysis (Extended Version) The DaCapo Benchmarks: Java Benchmarking Development and Analysis (Extended Version) Stephen M Blackburn α β, Robin Garner β, Chris Hoffmann γ, Asjad M Khan γ, Kathryn S McKinley δ, Rotem Bentzur ε, Amer

More information

Oracle JRockit Mission Control Overview

Oracle JRockit Mission Control Overview Oracle JRockit Mission Control Overview An Oracle White Paper June 2008 JROCKIT Oracle JRockit Mission Control Overview Oracle JRockit Mission Control Overview...3 Introduction...3 Non-intrusive profiling

More information

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server Performance brief for IBM WebSphere Application Server.0 with VMware ESX.0 on HP ProLiant DL0 G server Table of contents Executive summary... WebSphere test configuration... Server information... WebSphere

More information

Chapter 16: Virtual Machines. Operating System Concepts 9 th Edition

Chapter 16: Virtual Machines. Operating System Concepts 9 th Edition Chapter 16: Virtual Machines Silberschatz, Galvin and Gagne 2013 Chapter 16: Virtual Machines Overview History Benefits and Features Building Blocks Types of Virtual Machines and Their Implementations

More information

B M C S O F T W A R E, I N C. BASIC BEST PRACTICES. Ross Cochran Principal SW Consultant

B M C S O F T W A R E, I N C. BASIC BEST PRACTICES. Ross Cochran Principal SW Consultant B M C S O F T W A R E, I N C. PATROL FOR WEBSPHERE APPLICATION SERVER BASIC BEST PRACTICES Ross Cochran Principal SW Consultant PAT R O L F O R W E B S P H E R E A P P L I C AT I O N S E R V E R BEST PRACTICES

More information

Performance Optimization For Operational Risk Management Application On Azure Platform

Performance Optimization For Operational Risk Management Application On Azure Platform Performance Optimization For Operational Risk Management Application On Azure Platform Ashutosh Sabde, TCS www.cmgindia.org 1 Contents Introduction Functional Requirements Non Functional Requirements Business

More information

Task Scheduling in Speculative Parallelization

Task Scheduling in Speculative Parallelization Task Scheduling in Speculative Parallelization David Baptista Instituto Superior Técnico Universidade Técnica de Lisboa Av. Rovisco Pais, 1 1049-001 Lisboa Portugal david.baptista@ist.utl.pt ABSTRACT Concurrent

More information

Monitoring Databases on VMware

Monitoring Databases on VMware Monitoring Databases on VMware Ensure Optimum Performance with the Correct Metrics By Dean Richards, Manager, Sales Engineering Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com

More information

CSCI E 98: Managed Environments for the Execution of Programs

CSCI E 98: Managed Environments for the Execution of Programs CSCI E 98: Managed Environments for the Execution of Programs Draft Syllabus Instructor Phil McGachey, PhD Class Time: Mondays beginning Sept. 8, 5:30-7:30 pm Location: 1 Story Street, Room 304. Office

More information

Figure 1. The cloud scales: Amazon EC2 growth [2].

Figure 1. The cloud scales: Amazon EC2 growth [2]. - Chung-Cheng Li and Kuochen Wang Department of Computer Science National Chiao Tung University Hsinchu, Taiwan 300 shinji10343@hotmail.com, kwang@cs.nctu.edu.tw Abstract One of the most important issues

More information

Instrumentation Software Profiling

Instrumentation Software Profiling Instrumentation Software Profiling Software Profiling Instrumentation of a program so that data related to runtime performance (e.g execution time, memory usage) is gathered for one or more pieces of the

More information

Java Virtual Machine: the key for accurated memory prefetching

Java Virtual Machine: the key for accurated memory prefetching Java Virtual Machine: the key for accurated memory prefetching Yolanda Becerra Jordi Garcia Toni Cortes Nacho Navarro Computer Architecture Department Universitat Politècnica de Catalunya Barcelona, Spain

More information

Identifying Performance Bottleneck using JRockit. - Shivaram Thirunavukkarasu Performance Engineer Wipro Technologies

Identifying Performance Bottleneck using JRockit. - Shivaram Thirunavukkarasu Performance Engineer Wipro Technologies Identifying Performance Bottleneck using JRockit - Shivaram Thirunavukkarasu Performance Engineer Wipro Technologies Table of Contents About JRockit Mission Control... 3 Five things to look for in JRMC

More information

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION A DIABLO WHITE PAPER AUGUST 2014 Ricky Trigalo Director of Business Development Virtualization, Diablo Technologies

More information

Managing Capacity Using VMware vcenter CapacityIQ TECHNICAL WHITE PAPER

Managing Capacity Using VMware vcenter CapacityIQ TECHNICAL WHITE PAPER Managing Capacity Using VMware vcenter CapacityIQ TECHNICAL WHITE PAPER Table of Contents Capacity Management Overview.... 3 CapacityIQ Information Collection.... 3 CapacityIQ Performance Metrics.... 4

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

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

Enabling Technologies for Distributed and Cloud Computing

Enabling Technologies for Distributed and Cloud Computing Enabling Technologies for Distributed and Cloud Computing Dr. Sanjay P. Ahuja, Ph.D. 2010-14 FIS Distinguished Professor of Computer Science School of Computing, UNF Multi-core CPUs and Multithreading

More information

Virtualization: What does it mean for SAS? Karl Fisher and Clarke Thacher, SAS Institute Inc., Cary, NC

Virtualization: What does it mean for SAS? Karl Fisher and Clarke Thacher, SAS Institute Inc., Cary, NC Paper 347-2009 Virtualization: What does it mean for SAS? Karl Fisher and Clarke Thacher, SAS Institute Inc., Cary, NC ABSTRACT SAS groups virtualization into four categories: Hardware Virtualization,

More information

Host Power Management in VMware vsphere 5

Host Power Management in VMware vsphere 5 in VMware vsphere 5 Performance Study TECHNICAL WHITE PAPER Table of Contents Introduction.... 3 Power Management BIOS Settings.... 3 Host Power Management in ESXi 5.... 4 HPM Power Policy Options in ESXi

More information

Java Garbage Collection Characteristics and Tuning Guidelines for Apache Hadoop TeraSort Workload

Java Garbage Collection Characteristics and Tuning Guidelines for Apache Hadoop TeraSort Workload Java Garbage Collection Characteristics and Tuning Guidelines for Apache Hadoop TeraSort Workload Shrinivas Joshi, Software Performance Engineer Vasileios Liaskovitis, Performance Engineer 1. Introduction

More information

Java in Education. Choosing appropriate tool for creating multimedia is the first step in multimedia design

Java in Education. Choosing appropriate tool for creating multimedia is the first step in multimedia design Java in Education Introduction Choosing appropriate tool for creating multimedia is the first step in multimedia design and production. Various tools that are used by educators, designers and programmers

More information

Chapter 3 Operating-System Structures

Chapter 3 Operating-System Structures Contents 1. Introduction 2. Computer-System Structures 3. Operating-System Structures 4. Processes 5. Threads 6. CPU Scheduling 7. Process Synchronization 8. Deadlocks 9. Memory Management 10. Virtual

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

ClearPath MCP Software Series Compatibility Guide

ClearPath MCP Software Series Compatibility Guide ClearPath Software Series Compatibility Guide Overview The ClearPath Software Series is designed to deliver new cost and performance competitive attributes and to continue to advance environment attributes

More information

Evaluating HDFS I/O Performance on Virtualized Systems

Evaluating HDFS I/O Performance on Virtualized Systems Evaluating HDFS I/O Performance on Virtualized Systems Xin Tang xtang@cs.wisc.edu University of Wisconsin-Madison Department of Computer Sciences Abstract Hadoop as a Service (HaaS) has received increasing

More information

CS423 Spring 2015 MP4: Dynamic Load Balancer Due April 27 th at 9:00 am 2015

CS423 Spring 2015 MP4: Dynamic Load Balancer Due April 27 th at 9:00 am 2015 CS423 Spring 2015 MP4: Dynamic Load Balancer Due April 27 th at 9:00 am 2015 1. Goals and Overview 1. In this MP you will design a Dynamic Load Balancer architecture for a Distributed System 2. You will

More information

An evaluation of the Java Card environment

An evaluation of the Java Card environment An evaluation of the Java Card environment Christophe Rippert, Daniel Hagimont Contact: Christophe Rippert, Sirac Laboratory INRIA Rhône-Alpes, 655 avenue de l Europe Montbonnot 38334 St Ismier Cedex,

More information

Application Performance Monitoring: Trade-Off between Overhead Reduction and Maintainability

Application Performance Monitoring: Trade-Off between Overhead Reduction and Maintainability Application Performance Monitoring: Trade-Off between Overhead Reduction and Maintainability Jan Waller, Florian Fittkau, and Wilhelm Hasselbring 2014-11-27 Waller, Fittkau, Hasselbring Application Performance

More information

VMware Virtualization and Software Development

VMware Virtualization and Software Development VMware Virtualization and Software Development 1 VMware Virtualization and Software Development Mark Cloutier Undergraduate Student, Applied Math and Computer Science Keywords: Virtualization, VMware,

More information

Java and Real Time Storage Applications

Java and Real Time Storage Applications Java and Real Time Storage Applications Gary Mueller Janet Borzuchowski 1 Flavors of Java for Embedded Systems Software Java Virtual Machine(JVM) Compiled Java Hardware Java Virtual Machine Java Virtual

More information

Jonathan Worthington Scarborough Linux User Group

Jonathan Worthington Scarborough Linux User Group Jonathan Worthington Scarborough Linux User Group Introduction What does a Virtual Machine do? Hides away the details of the hardware platform and operating system. Defines a common set of instructions.

More information

Oracle Database Scalability in VMware ESX VMware ESX 3.5

Oracle Database Scalability in VMware ESX VMware ESX 3.5 Performance Study Oracle Database Scalability in VMware ESX VMware ESX 3.5 Database applications running on individual physical servers represent a large consolidation opportunity. However enterprises

More information

my forecasted needs. The constraint of asymmetrical processing was offset two ways. The first was by configuring the SAN and all hosts to utilize

my forecasted needs. The constraint of asymmetrical processing was offset two ways. The first was by configuring the SAN and all hosts to utilize 1) Disk performance When factoring in disk performance, one of the larger impacts on a VM is determined by the type of disk you opt to use for your VMs in Hyper-v manager/scvmm such as fixed vs dynamic.

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

JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra

JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra JVM Performance Study Comparing Oracle HotSpot and Azul Zing Using Apache Cassandra January 2014 Legal Notices Apache Cassandra, Spark and Solr and their respective logos are trademarks or registered trademarks

More information

Monitoring Java enviroment / applications

Monitoring Java enviroment / applications Monitoring Java enviroment / applications Uroš Majcen uros@quest-slo.com Java is Everywhere You Can Expect More. Java in Mars Rover With the help of Java Technology, and the Jet Propulsion Laboratory (JPL),

More information

Chapter 3: Operating-System Structures. Common System Components

Chapter 3: Operating-System Structures. Common System Components Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1

More information

Experimental Evaluation of Distributed Middleware with a Virtualized Java Environment

Experimental Evaluation of Distributed Middleware with a Virtualized Java Environment Experimental Evaluation of Distributed Middleware with a Virtualized Java Environment Nuno A. Carvalho, João Bordalo, Filipe Campos and José Pereira HASLab / INESC TEC Universidade do Minho MW4SOC 11 December

More information

PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions. Outline. Performance oriented design

PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions. Outline. Performance oriented design PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions Slide 1 Outline Principles for performance oriented design Performance testing Performance tuning General

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

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software Best Practices for Monitoring Databases on VMware Dean Richards Senior DBA, Confio Software 1 Who Am I? 20+ Years in Oracle & SQL Server DBA and Developer Worked for Oracle Consulting Specialize in Performance

More information

Web Services Performance: Comparing Java 2 TM Enterprise Edition (J2EE TM platform) and the Microsoft.NET Framework

Web Services Performance: Comparing Java 2 TM Enterprise Edition (J2EE TM platform) and the Microsoft.NET Framework Web Services Performance: Comparing 2 TM Enterprise Edition (J2EE TM platform) and the Microsoft Framework A Response to Sun Microsystem s Benchmark Microsoft Corporation July 24 Introduction In June 24,

More information

The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor

The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor Howard Anglin rhbear@us.ibm.com IBM Competitive Project Office May 2013 Abstract...3 Virtualization and Why It Is Important...3 Resiliency

More information

Tool - 1: Health Center

Tool - 1: Health Center Tool - 1: Health Center Joseph Amrith Raj http://facebook.com/webspherelibrary 2 Tool - 1: Health Center Table of Contents WebSphere Application Server Troubleshooting... Error! Bookmark not defined. About

More information