The Ganglia Distributed Monitoring System: Design, Implementation, and Experience

Total Page:16

File Type:pdf, Size:1020Kb

The Ganglia Distributed Monitoring System: Design, Implementation, and Experience The Ganglia Distributed Monitoring System: Design, Implementation, and Experience Matthew L. Massie Brent N. Chun David E. Culler Univ. of California, Berkeley Intel Research Berkeley Univ. of California, Berkeley [email protected] [email protected] [email protected] Abstract growth, system configurations inevitably need to adapt. In summary, high performance systems today have sharply di- Ganglia is a scalable distributed monitoring system for high- verged from the monolithic machines of the past and now performance computing systems such as clusters and Grids. face the same set of challenges as that of large-scale dis- It is based on a hierarchical design targeted at federations of tributed systems. clusters. It relies on a multicast-based listen/announce proto- col to monitor state within clusters and uses a tree of point- One of the key challenges faced by high performance to-point connections amongst representative cluster nodes to distributed systems is scalable monitoring of system state. federate clusters and aggregate their state. It leverages widely Given a large enough collection of nodes and the associated used technologies such as XML for data representation, XDR computational, I/O, and network demands placed on them for compact, portable data transport, and RRDtool for data by applications, failures in large-scale systems become com- storage and visualization. It uses carefully engineered data monplace. To deal with node attrition and to maintain the structures and algorithms to achieve very low per-node over- health of the system, monitoring software must be able to heads and high concurrency. The implementation is robust, quickly identify failures so that they can be repaired either has been ported to an extensive set of operating systems and automatically or via out-of-band means (e.g., rebooting). In processor architectures, and is currently in use on over 500 large-scale systems, interactions amongst the myriad com- clusters around the world. This paper presents the design, putational nodes, network switches and links, and storage implementation, and evaluation of Ganglia along with expe- devices can be complex. A monitoring system that captures rience gained through real world deployments on systems of some subset of these interactions and visualizes them in inter- widely varying scale, configurations, and target application esting ways can often lead to an increased understanding of a domains over the last two and a half years. system’s macroscopic behavior. Finally, as systems scale up and become increasingly distributed, bottlenecks are likely to 1 Introduction arise in various locations in the system. A good monitoring system can assist here as well by providing a global view of Over the last ten years, there has been an enormous shift the system, which can be helpful in identifying performance in high performance computing from systems composed of problems and, ultimately, assisting in capacity planning. small numbers of computationally massive devices [18, 12, 11, 19] to systems composed of large numbers of commodity Ganglia is a scalable distributed monitoring system that components [3, 9, 4, 7, 6]. This architectural shift from the was built to address these challenges. It provides scalable few to the many is causing designers of high performance monitoring of distributed systems at various points in the ar- systems to revisit numerous design issues and assumptions chitectural design space including large-scale clusters in a pertaining to scale, reliability, heterogeneity, manageability, machine room, computational Grids [14, 15] consisting of and system evolution over time. With clusters now the de federations of clusters, and, most recently, has even seen facto building block for high performance systems, scale and application on an open, shared planetary-scale application reliability have become key issues as many independently testbed called PlanetLab [21]. The system is based on a hier- failing and unreliable components need to be continuously archical design targeted at federations of clusters. It relies on accounted for and managed over time. Heterogeneity, previ- a multicast-based listen/announce protocol [29, 10, 1, 16] to ously a non-issue when running a single vector supercom- monitor state within clusters and uses a tree of point-to-point puter or an MPP, must now be designed for from the be- connections amongst representative cluster nodes to feder- ginning, since systems that grow over time are unlikely to ate clusters and aggregate their state. It leverages widely scale with the same hardware and software base. Manage- used technologies such as XML for data representation, XDR ability also becomes of paramount importance, since clus- for compact, portable data transport, and RRDtool for data ters today commonly consist of hundreds or even thousands storage and visualization. It uses carefully engineered data of nodes [7, 6]. Finally, as systems evolve to accommodate structures and algorithms to achieve very low per-node over- 1 heads and high concurrency. The implementation is robust, ing and evolution of systems over time implies that hardware has been ported to an extensive set of operating systems and and software will change. This, in turn, requires addressing processor architectures, and is currently in use on over 500 issues of extensibility and portability. clusters around the world. The key design challenges for distributed monitoring sys- This paper presents the design, implementation, and eval- tems thus include: uation of the Ganglia distributed monitoring system along Scalability: The system should scale gracefully with with an account of experience gained through real world de- the number of nodes in the system. Clusters today, for ployments on systems of widely varying scale, configura- example, commonly consist of hundreds or even thou- tions, and target application domains. It is organized as fol- sands of nodes. Grid computing efforts, such as Tera- lows. In Section 2, we describe the key challenges in building Grid [22], will eventually push these numbers out even a distributed monitoring system and how they relate to dif- further. ferent points in the system architecture space. In Section 3, we present the architecture of Ganglia, a scalable distributed Robustness: The system should be robust to node and monitoring system for high-performance computing systems. network failures of various types. As systems scale in In Section 4, we describe our current implementation of Gan- the number of nodes, failures become both inevitable glia which is currently deployed on over 500 clusters around and commonplace. The system should localize such the world. In Section 5, we present a performance analysis failures so that the system continues to operate and de- of our implementation along with an account of experience livers useful service in the presence of failures. gained through real world deployments of Ganglia on sev- eral large-scale distributed systems. In Section 6, we present Extensibility: The system should be extensible in the related work and in Section 7, we conclude the paper. types of data that are monitored and the nature in which such data is collected. It is impossible to know a priori 2 Distributed Monitoring everything that ever might want to be monitored. The system should allow new data to be collected and mon- In this section, we summarize the key design challenges itored in a convenient fashion. faced in designing a distributed monitoring system. We then discuss key characteristics of three classes of distributed sys- Manageability: The system should incur management tems where Ganglia is currently in use: clusters, Grids, and overheads that scale slowly with the number of nodes. planetary-scale systems. Each class of systems presents a For example, managing the system should not require a different set of constraints and requires making different de- linear increase in system administrator time as the num- sign decisions and trade-offs in addressing our key design ber of nodes in the system increases. Manual configura- challenges. While Ganglia’s initial design focus was scalable tion should also be avoided as much as possible. monitoring on a single cluster, it has since naturally evolved Portability: The system should be portable to a variety to support other classes of distributed systems as well. Its of operating systems and CPU architectures. Despite use on computational Grids and its recent integration with the recent trend towards Linux on x86, there is still wide the Globus metadirectory service (MDS) [13] is a good ex- variation in hardware and software used for high perfor- ample of this. Its application on PlanetLab is another, one mance computing. Systems such as Globus [14] further which has also resulted in a reexamination of some of Gan- facilitate use of such heterogeneous systems. glia’s original design decisions. Overhead: The system should incur low per-node over- 2.1 Design Challenges heads for all scarce computational resources includ- Traditionally, high performance computing has focused on ing CPU, memory, I/O, and network bandwidth. For scalability as the primary design challenge. The architec- high performance systems, this is particularly impor- tural shift towards increasingly distributed and loosely cou- tant since applications often have enormous resource pled systems, however, has raised an additional set of chal- demands. lenges. These new challenges arise as a result of several fac- tors: increased physical
Recommended publications
  • Monitoring Cluster on Online Compiler with Ganglia
    Monitoring Cluster on Online Compiler with Ganglia Nuryani, Andria Arisal, Wiwin Suwarningsih, Taufiq Wirahman Research Center for Informatics, Indonesian Institute of Sciences Komp. LIPI, Gd. 20, Lt. 3, Sangkuriang, Bandung, 40135 Indonesia Email : {nuryani|andria.arisal|wiwin|taufiq}@informatika.lipi.go.id Abstract strength and weaknesses in certain part compared with the others. For the example, Ganglia is more concerned Ganglia is an open source monitoring system for high with metrics gathering and tracking them over time performance computing (HPC) that collect both a whole while Nagios has focused in an alerting mechanism, cluster and every nodes status and report to the user. Visuel has an additional function to visualize the We use Ganglia to monitor our performance data of MPI application and Clumon spasi.informatika.lipi.go.id (SPASI), a customized- offers web-based pages to show the detailed fedora10-based cluster, for our cluster online compiler, information about resources, queues, jobs and CLAW (cluster access through web). Our experience on warnings[2, 3, 6]. using Ganglia shows that Ganglia has a capability to At present, we are developing online compiler for view our cluster status and allow us to track them. high performance computing environment focusing on Keywords: high performance computing, cluster, cluster developing web-interface to ease user (especially monitoring, ganglia programmer) on using cluster infrastructure named . CLAW (cluster access through web). Online compiler 1. Introduction is a web-based application that provides service for The need for high performance computer which writing, compilation, and execution of source code closely related with supercomputer and massively through web.
    [Show full text]
  • Setup of a Ganglia Monitoring System for a Grid Computing Cluster
    Setup of a Ganglia Monitoring System for a Grid Computing Cluster Aufbau eines Ganglia-Überwachungssystems für ein Grid-Computing-Cluster von Oleg Ivasenko Bachelorarbeit in Physik vorgelegt der Fakultät für Mathematik, Informatik und Naturwissenschaften der RWTH Aachen im September, 2015 angefertigt im Physikalischen Institut IIIb bei Prof. Dr. Achim Stahl Zusammenfassung Das RWTH Grid Cluster ist ein Tier 2/3 Rechenzentrum im WLHC Grid mit über zwei hundert Rechnern. Diese müssen bei Betrieb überwacht werden, um aufkommende Probleme analysieren zu können. Da das aktuell laufende System gewisse Inkompatibilitäten zu neuen Versionen des laufenden Betriebssystems zeigt, soll es durch Ganglia ersetzt werden. In dieser Arbeit wird der Aufbau des Ganglia Monitoring Systems und die Anpassung dessen an die Besonderheiten des RWTH Grid Clusters vorgenommen. Das Ganglia Monitoring System überwacht das gesamte Cluster und zeigt sich weiterhin skalierbar für zukünftige Erweiterungen. Abstract The RWTH Grid Cluster is a Tier 2/3 grid site in the WLHC Grid with over two hundred com- puters. Those have to be monitored while operating to analyze occurring problems. The currently running monitoring system shows incompatibilities with newer versions of the running operating system and thus should be replaced by Ganglia. In this thesis the setup and the customization of the Ganglia Monitoring System to suit the RWTH Grid Cluster specic needs is detailed. The Ganglia Monitoring System monitors the whole Cluster and proves itself as further scalable for future extensions. Contents List of Figures I List of Tables II List of Listings II 1 Introduction 1 1.1 Worldwide LHC Computing Grid . .2 1.2 RWTH Grid Cluster .
    [Show full text]
  • Ganglia Users Guide 7.0 Edition Ganglia Users Guide 7.0 Edition Published Dec 01 2017 Copyright © 2017 University of California
    Ganglia Users Guide 7.0 Edition Ganglia Users Guide 7.0 Edition Published Dec 01 2017 Copyright © 2017 University of California This document is subject to the Rocks® License (see Appendix: Rocks Copyright). Table of Contents Preface.....................................................................................................................................................................v 1. Overview.............................................................................................................................................................1 2. Installing.............................................................................................................................................................2 2.1. On a New Server.....................................................................................................................................2 2.2. On an Existing Server..............................................................................................................................2 3. Using the Ganglia Roll.......................................................................................................................................4 3.1. Using the Ganglia Roll............................................................................................................................4 4. Customizing the Ganglia Roll...........................................................................................................................6 4.1. Customizing the Ganglia Web interface..................................................................................................6
    [Show full text]
  • Monitoring Systems and Tricks of the Trade
    Enabling Grids for E-sciencE Monitoring Systems and Tricks of the Trade Antun Balaz Scientific Computing Laboratory Institute of Physics Belgrade http://www.scl.rs/ 21 Jan – 01 Feb 2009 www.eu-egee.org FP7-INFRA-222667 The 2nd workshop on HPC, IPM and Shahid Beheshti University, Tehran, Iran Overview Enabling Grids for E-sciencE • Ganglia (fabric monitoring) • Nagios (fabric + network monitoring) • Yumit/Pakiti (security) • CGMT (integration + hardware sensors) • WMSMON (custom service monitoring) • BBmSAM (mobile interface) • CLI scripts • Summary FP7-INFRA-222667 The 2nd workshop on HPC, IPM and Shahid Beheshti University, Tehran, Iran Ganglia Overview Enabling Grids for E-sciencE • Introduction • Ganglia Architecture • Apache Web Frontend • Gmond & Gmetad • Extending Ganglia – GMetrics – Gmond Module Development FP7-INFRA-222667 The 2nd workshop on HPC, IPM and Shahid Beheshti University, Tehran, Iran Introduction to Ganglia Enabling Grids for E-sciencE • Scalable Distributed Monitoring System • Targeted at monitoring clusters and grids • Multicast-based Listen/Announce protocol • Depends on open standards – XML – XDR compact portable data transport – RRDTool - Round Robin Database – APR – Apache Portable Runtime – Apache HTTPD Server – PHP based web interface • http://ganglia.sourceforge.net or http://www.ganglia.info FP7-INFRA-222667 The 2nd workshop on HPC, IPM and Shahid Beheshti University, Tehran, Iran Ganglia Architecture Enabling Grids for E-sciencE • Gmond – Metric gathering agent installed on individual servers • Gmetad –
    [Show full text]
  • Ganglia Deployment Guide @CERN Crist´Ov˜Aocordeiro, IT-SDC-ID [email protected]
    Ganglia Deployment Guide @CERN Crist´ov~aoCordeiro, IT-SDC-ID [email protected] 1 Introduction With the constant increase of Cloud resources being used, there is the need of having something which allows their monitoring/accounting. This can be very useful and practical in a way where we will be able to not only create alarms, and automatic decisions based on these, but also compare and report resource usages for specific cloud infrastructures, over specific periods of time. Ganglia is a distributed system which allows us to achieve exactly this. "Ganglia is a scalable distributed monitoring system for high-performance computing systems such as clusters and Grids. It is based on a hierarchical design targeted at federations of clusters. It leverages widely used technolo- gies such as XML for data representation, XDR for compact, portable data transport, and RRDtool for data storage and visualization. It uses carefully engineered data structures and algorithms to achieve very low per-node over- heads and high concurrency. The implementation is robust, has been ported to an extensive set of operating systems and processor architectures, and is currently in use on thousands of clusters around the world."1. It works on a Headnode Node based interaction and its deployment is fairly easy. During instantiation the workernodes can also be easily config- ured to report their metrics to the headnode by using the Ganglia module for CloudInit which is available and maintained at CERN (configuration through other contextualization methods is also possible). NOTE: Ganglia is a highly configurable system. This guide only covers the basics for some specific situations.
    [Show full text]
  • Monitoring Systems and POWER5/6 Lpars with Ganglia
    Monitoring Systems and POWER5/6 LPARs with Ganglia Michael Perzl – [email protected] Agenda . Ganglia – what is it ? . Ganglia components and data flow . An introduction to RRDTool . Ganglia metrics – what can be measured ? . New POWER5/6 metrics (AIX & Linux) . Extending Ganglia with gmetric . Add device specific information to Ganglia . Ganglia network communication . Installation issues . Where to get Ganglia for AIX and Linux on POWER ? . Best practices . Future additions / plans . Discussion . Links 2 Monitoring Systems and POWER5/6 LPARs with Ganglia Ganglia – what is it ? Ganglia – what is it ? (1/3) . Ganglia is an Open Source cluster performance monitoring tool and has been extended to include POWER5/6 features like shared processor LPARs, entitlement, physical CPU usage etc. This session covers: – the technical details of Ganglia and the POWER5/6 extensions – how to set it up and use it to monitor all LPARs in a single machine and lots of machines 4 Monitoring Systems and POWER5/6 LPARs with Ganglia Ganglia – what is it ? (2/3) Ganglia properties: . scalable distributed monitoring system for high-performance computing systems such as clusters and grids . based on a hierarchical design targeted at federations of clusters . relies on a multicast-based listen/announce protocol to monitor state within clusters and uses a tree of point-to-point connections amongst representative cluster nodes to federate clusters and aggregate their state . leverages widely used technologies such as – XML for data representation – XDR (eXternal Data Representation) for compact, portable data transport – RRDtool for data storage and visualization . uses carefully engineered data structures and algorithms to achieve very low per-node overheads and high concurrency .
    [Show full text]
  • Thirty Billion Metrics a Day: Large-Scale Performance Metrics with Ganglia Adam Compton, Quantcast [email protected] @Comptona
    Thirty Billion Metrics a Day: Large-Scale Performance Metrics with Ganglia Adam Compton, Quantcast [email protected] @comptona November 8–13, 2015 | Washington, D.C. www.usenix.org/lisa15 #lisa15 Thirty Billion Metrics a Day: Forty Adam Compton, Quantcast [email protected] @comptona November 8–13, 2015 | Washington, D.C. www.usenix.org/lisa15 #lisa15 ● 7,000,000 unique metrics collected every 15 sec ● from 1000s of machines ● 480,000 metrics/second ● 41,000,000,000 (billion) metrics/day How many machines do we need for this? Two. Who am I? ● What is Ganglia? ● How Ganglia works ● Inputs ● Outputs ● Scaling ● What’s next What is Ganglia? “Ganglia is a scalable distributed monitoring system for high-performance computing systems” What does “monitoring” mean? What is Ganglia - monitoring vs. metrics performance metrics: regular, numeric, time-series data monitoring: scheduled checks (of metrics, processes, endpoints, etc.) to identify anomalous behavior alerting: getting a human’s attention visualization: charts and graphs By these definitions, Ganglia collects, aggregates, and visualizes performance metrics. What is Ganglia not? ● No monitoring ● No alerting ● No asset database ● No Julienne fries ● What is Ganglia? ● How Ganglia works ● Inputs ● Outputs ● Scaling ● What’s next How Ganglia works How Ganglia works - gmond How Ganglia works - gmetad (aside) How RRDs work How Ganglia works - gweb How Ganglia works - Upsides Built-in hierarchy, summarization, and metadata Web UI is easy to browse and grok How Ganglia works - Downsides
    [Show full text]
  • HPC Best Practices: Software Lifecycles San Francisco, California September 28-29, 2009
    Report of the 3rd DOE Workshop on HPC Best Practices: Software Lifecycles San Francisco, California September 28-29, 2009 HPC Best Practices: Software Lifecycles Findings and notes from the the third in a series of HPC community workshops Workshop Sponsors: DOE Office of Science – ASCR and DOE NNSA Chair: David E. Skinner (LBNL) Vice-Chair: Jon Stearley (SNL) Report Editors: John Hules (LBNL) and Jon Bashor (LBNL Attendees/Report Contributors: Deb Agarwal (LBNL), Dong Ahn (LLNL), William Allcock (ALCF), Kenneth Alvin (SNL), Chris Atwood (HPCMPO/CREATE), Charles Bacon (ANL), Bryan Biegel (NASA NAS), Buddy Bland (ORNL), Brett Bode (NCSA), Robert Bohn (NCO/NITRD), Jim Brandt (SNL), Jeff Broughton (NERSC), Shane Canon (NERSC), Shreyas Cholia (NERSC), Bob Ciotti (NASA NAS), Susan Coghlan (ANL), Bradley Comes (DoD HPCMP ), Paul “Steve” Cotter (ESnet), Nathan DeBardeleben (LANL), Sudip Dosanjh (SNL), Tony Drummond (LBNL), Mark Gary (LLNL), Ann Gentile (SNL), Gary Grider (LANL), Pam Hamilton (LLNL), Andrew Hanushevsky (SLAC), Daniel Hitchcock (DOE ASCR), Paul Iwanchuk (LANL), Gary Jung (LBNL), Suzanne Kelly (SNL), Patricia Kovatch (NICS/UTK), William Kramer (NCSA), Manojkumar Krishnan (PNNL), Sander Lee(NNSA), Janet Lebens (Cray Inc.), Lie-Quan Lee (SLAC), Ewing Lusk (ANL), Osni Marques (DOE ASCR), David Montoya (LANL), Krishna Muriki (LBNL), Tinu Ogunde (ASC/NNSA/DOE), Viraj Paropkari (NERSC), Rob Pennington (NSF), Terri Quinn (LLNL), Randal Rheinheimer (LANL), Alain Roy (Univ. Wisconsin-Madison), Stephen Scott (ORNL), Yukiko Sekine (DOE ASCR),
    [Show full text]
  • Ganglia on the Brain
    iVoyeur: More Ganglia on the Brain DAVE JOSEPHSEN Dave Josephsen is the Welcome to the second installment in my Ganglia series . In the last issue I prom- author of Building a ised (threatened?) to walk you through building a Ganglia data collection module Monitoring Infrastructure in C, and that’s exactly what we’re going to do . with Nagios (Prentice Ganglia, as you’ll recall, is composed primarily of two daemons: gmond, which Hall PTR, 2007) and is senior systems runs on the client side, collecting metrics, and gmetad, which runs server-side engineer at DBG, Inc., where he maintains and polls the clients, pushing their data into RRDTool databases . Gmond, out of a gaggle of geographically dispersed server the box, can collect a litany of interesting metrics from the system on which it is farms. He won LISA ’04’s Best Paper award for installed and can be extended to collect user-defined metrics in three different his co-authored work on spam mitigation, and ways . he donates his spare time to the SourceMage GNU Linux Project. The first method to add new metrics to gmond is to collect the data yourself using [email protected] a shell script, or similar program, piping the resultant data to the Gexec daemon . This method is simple and widely used, but adds overhead to a system carefully designed to minimize it . The second and third methods are to write plug-ins for gmond in Python or C . Writing gmond plug-ins in Python requires that Python be installed and that gmond be compiled against the Python libs on every box where you might want to use your module .
    [Show full text]
  • Open Source Software Options for Government
    Open Source Software Options for Government Version 2.0, April 2012 Aim 1. This document presents options for Open Source Software for use in Government. 2. It is presented in recognition that open source software is underused across Government and the wider public sector. 3. This set of options is primarily intended to be used by Government to encourage IT suppliers and integrators to evaluate open source options when designing solutions and services. 4. This publication does not imply preference for any vendor or product. Open source software, by definition, is not tied inextricably to any particular commercial organisation. Any commercial entity can choose to support, maintain, or integrate open source software. 5. It is understood that the software market, and the open source ecosystem in particular, is a rapidly developing environment and any options list will be incomplete and may become outdated quickly. Even so, given the relatively low level of open source experience in Government, this options list has proven useful for encouraging IT suppliers to consider open source, and to aid the assurance of their proposals. Context 1. The Coalition Government believes Open Source Software can potentially deliver significant short and long term cost savings across Government IT. 2. Typical benefits of open source software include lower procurement prices, no license costs, interoperability, easier integration and customisation, fewer barriers to reuse, conformance to open technology and data standards giving autonomy over your own information, and freedom from vendor lock in. 3. Open Source is not widely used in Government IT. The leading systems integrators and supplies to Government do not routinely and effectively consider open source software for IT solutions, as required by the existing HMG ICT policy.
    [Show full text]
  • GANGLIA on the BRAIN 55 Specific Purpose in Mind, So Some of What It Isn’T Is by Design
    IT’S IRONIC, I THINK, THAT I’VE BEEN dissatisfied with my RRDTool data DAVE JOSEPHSEN collection and display options for as long as I have. Ironic in the sense that RRDTool is such a category killer for what it does (storing and graphing time series data). iVoyeur: Ganglia It used to be novel, to see that distinctive- looking RRDTool graph popping up on the brain somewhere unexpected, but these days Dave Josephsen is the author of Building it’s so ubiquitous that I’m surprised to see a Monitoring Infrastructure with Nagios anything but. So if RRDTool is the ultimate (Prentice Hall PTR, 2007) and is senior systems engineer at DBG, Inc., where he solution for everything that happens maintains a gaggle of geographically dispersed server farms. He won LISA ’04’s between data coming in and graphs going Best Paper award for his co-authored out, the open source community has surely work on spam mitigation, and he do- nates his spare time to the SourceMage provided category killers for polling data GNU Linux Project. and displaying those graphs, yes? [email protected] No. When it comes to polling and displaying that data, we’re far from having a category-killer, in my opinion. It’s not for lack of candidates, mind you. Freshmeat can provide you with myriad options written in all manner of languages (but mostly PHP) that do essentially the same thing—put an RRDTool graph on a Web page. It’s a bit of a cop-out to say they all do “essentially” the same thing, in fact, since they all seem to make the same mistakes over and over again.
    [Show full text]
  • Maestro: a Remote Execution Tool for Visualization Clusters Aron Lee Bierbaum Iowa State University
    Iowa State University Capstones, Theses and Retrospective Theses and Dissertations Dissertations 2007 Maestro: a remote execution tool for visualization clusters Aron Lee Bierbaum Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/rtd Part of the Computer Sciences Commons Recommended Citation Bierbaum, Aron Lee, "Maestro: a remote execution tool for visualization clusters" (2007). Retrospective Theses and Dissertations. 14635. https://lib.dr.iastate.edu/rtd/14635 This Thesis is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Retrospective Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. Maestro: A remote execution tool for visualization clusters by Aron Lee Bierbaum A thesis submitted to the graduate faculty in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE Major: Computer Engineering Program of Study Committee: Carolina Cruz-Neira, Major Professor Julie Dickerson Chris Harding Iowa State University Ames, Iowa 2007 UMI Number: 1447485 UMI Microform 1447485 Copyright 2008 by ProQuest Information and Learning Company. All rights reserved. This microform edition is protected against unauthorized copying under Title 17, United States Code. ProQuest Information and Learning Company 300 North Zeeb Road P.O. Box 1346 Ann Arbor, MI 48106-1346
    [Show full text]