Difference between revisions of "Grid computing"

From LIMSWiki
Jump to navigationJump to search
m (Added section.)
(All revisions contained links to *.ch, blanking)
Line 1: Line 1:
'''Grid computing''' is the use of a shared "infrastructure that bonds and unifies globally remote and diverse [computing] resources"<ref name="MagoulesFund">{{cite book |url=http://books.google.com/books?id=Dei9vpdQiHcC&pg=PA1 |title=Fundamentals of Grid Computing: Theory, Algorithms and Technologies |author=Magoulès, Frédéric |publisher=CRC Press |year=2009 |pages=322 |isbn=9781439803684 |accessdate=17 September 2014}}</ref> for the purposes of completing one or more computational tasks that would otherwise require significantly more time if performed on any single machine. Grid computing is a form of distributed computing whereby a virtual supercomputer is formed from many loosely coupled computers acting together to perform large tasks. For certain applications, grid computing can be seen as a special type of parallel computing that relies on complete computers (with onboard CPUs, storage, power supplies, network interfaces, etc.) connected to a network (private, public, or the Internet) via a conventional network interface, such as Ethernet.<ref name="MagoulesFund" /> This is in contrast to the traditional notion of a supercomputer, which has many processors connected by a local high-speed computer bus.


One of the main strategies of grid computing is to use middleware to divide and apportion pieces of a program among several computers, sometimes up to many thousands. Grid computing involves computation in a distributed fashion, which may also involve the aggregation of large-scale clusters, which may vary in size from a small group of workstations confined to a network within a corporation (intra-node cooperation) to large public collaborations across many companies and networks (inter-node cooperation).
==History==
The idea grid computing originated in the 1990s as a metaphor for making computer power as easy to access as an electric power grid. Where parallel computing and supercomputers were primarily used in the '80s and '90s, grid computing began to take shape as an option by the mid-1990s. In 1995, the Information-Wide Area Year (I-WAY) project was initiated, dedicated to the integration of other existing high-bandwidth networks and the management of software run over them. This project stood out as one of the first major milestones towards true grid computing.<ref name="BermanGrid">{{cite book |url=http://books.google.com/books?id=b4LWXLRBRLsC&pg=PA3 |chapter=Chapter 1: The Grid: Past, Present, and Future |title=Grid Computing: Making the Global Infrastructure a Reality |author=Berman, Fran; Fox, Geoffrey; Hey, Tony |publisher=John Wiley and Sons |year=2003 |pages=9–50 |isbn=9780470853191 |accessdate=17 September 2014}}</ref><ref name="NSTCHPC">{{cite book |url=https://www.nitrd.gov/pubs/bluebooks/1997/cover-front.html |title=High Performance Computing and Communications: Advancing the Frontiers of Information Technology |author=National Science and Technology Council's Committee on Computing, Information, and Communications |publisher=National Science and Technology Council |year=November 1996 |accessdate=17 September 2014}}</ref> Not long afterwards, CPU scavenging and volunteer computing projects like distributed.net in 1997<ref name="DNHist">{{cite web |url=http://www.distributed.net/history |title=distributed.net History & Timeline |work=distributed.net |accessdate=17 September 2014}}</ref> and SETI@home in 1999<ref name="SETIAbout">{{cite web |url=http://setiathome.berkeley.edu/sah_about.php |title=About SETI@home |work=SETI@home |publisher=University of California |accessdate=17 September 2014}}</ref> began to harness the power of networked PCs worldwide to solve CPU-intensive research problems.
Grid computing was further refined with Ian Foster and Carl Kesselman's widely regarded 1998 work ''The Grid: Blueprint for a New Computing Infrastructure'', in which they set out to define and extend the concepts surrounding the idea.<ref name="FosterWhat">{{cite web |url=http://dlib.cs.odu.edu/WhatIsTheGrid.pdf |title=What is the Grid? A Three Point Checklist |author=Foster, Ian |date=20 July 2002 |accessdate=17 September 2014}}</ref> Along with software developer Steven Tuecke, the trio previously lent their expertise to the I-WAY project, particularly through their own Globus Project, which would link sites into "virtual organization" for scientific collaboration.<ref name="BravermanFather">{{cite journal |url=http://magazine.uchicago.edu/0404/features/index.shtml |title=Father of the Grid |author=Braverman, Amy M. |journal=The University of Chicago Magazine |volume=96 |issue=4 |date=April 2004 |accessdate=17 September 2014}}</ref> The group would not only further refine the definition in 2002, but they would also lead the release of the Globus Toolkit, an open-source toolkit for grid computing.<ref name="BravermanFather" />
In 2007 the term [[cloud computing]] came into popularity, which is conceptually similar to the canonical Foster definition of grid computing (in terms of computing resources being consumed as electricity is from the power grid). Indeed, grid computing is often (but not always) associated with the delivery of cloud computing systems.<ref name="GridCloudIBM">{{cite web |url=http://www.ibm.com/developerworks/library/wa-cloudgrid/ |title=Cloud computing versus grid computing |author=Myerson, Judith M. |work=IBM developerWorks |publisher=IBM |date=03 March 2009 |accessdate=17 September 2014}}</ref>
==Grid computing vs. supercomputing==
While supercomputing is essentially parallel computing<ref name="LaffertyPar">{{cite book |url=http://books.google.com/books?id=Xb2GAAAAQBAJ&pg=PA1 |title=Parallel Computing: An Introduction |author=Lafferty, Eduard L.; Michaud, Marion C.; Prelle, Myra Jean; Goethert, Joan B. |publisher=Noyes Data Corporation |year=1993 |pages=146 |isbn=9781437744934 |accessdate=17 September 2014}}</ref>, grid computing is a special type of parallel computing that relies on complete computers connected to a network. The primary performance disadvantage of grid computing to supercomputing is that the various processors and local storage areas typically do not have high-speed connections. This arrangement is thus well-suited to applications in which multiple parallel computations can take place independently, without the need to communicate intermediate results between processors.<ref name="GridCafe">{{cite web |url=http://www.e-sciencecity.org/EN/gridcafe/computational-problems.html |title=Computational problems |work=GridCafé |publisher=e-ScienceTalk |accessdate=17 September 2014}}</ref>
Additionally, differences in programming and deployment exist. It can be costly and difficult to write programs that can run in the environment of a supercomputer, which may have a custom operating system or require the program to address concurrency issues.<ref name="GrahamSuper">{{cite book |url=http://books.google.com/books?id=Llhr49iPJNIC&pg=PA134 |title=Getting Up To Speed: The Future of Supercomputing |author=Graham, Susan L.; Snir, Marc; Patterson, Cynthia A. |publisher=The National Academies Press |year=2005 |pages=134–135 |isbn=9780309165518 |accessdate=17 September 2014}}</ref> If a problem can be adequately parallelized, a "thin" layer of "grid" infrastructure can allow conventional, standalone programs — given a different part of the same problem — to run on multiple machines. This makes it possible to write and debug on a single conventional machine, and it eliminates complications due to multiple instances of the same program running in the same shared memory and storage space at the same time.
==Design considerations==
One feature of distributed grids is that they can be formed from computing resources belonging to multiple administrative domains. This can facilitate commercial transactions, as in utility computing, or make it easier to assemble volunteer computing networks. However, the computers which are actually performing the calculations might not be entirely trustworthy, requiring additional security measures to prevent malfunctions or malicious participants from producing false, misleading, or erroneous results. Authentication, authorization, and encryption methods must all be employed to ensure "the integrity and confidentiality of the data processed within the grid."<ref name="JacobIBMGrid">{{cite book |url=http://www.redbooks.ibm.com/redbooks/pdfs/sg246778.pdf |format=PDF |title=Introduction to Grid Computing |author=Jacob, Bart; Brown, Michael; Fukui, Kentaro; Trivedi, Nihar |publisher=IBM |year=December 2005 |pages=248 |accessdate=17 September 2014}}</ref>
The impacts of trust and availability on performance and development can influence the choice of whether to deploy onto a dedicated cluster, to idle machines internal to the developing organization, or to open an external network of volunteers or contractors.<ref name="JacobIBMGrid" /> In many cases, the participating nodes must trust the central system not to abuse the access that is being granted, by interfering with the operation of other programs, mangling stored information, transmitting private data, or creating new security holes. Other systems employ measures to reduce the amount of trust "client" nodes must place in the central system such as placing applications in virtual machines.
Public systems or those crossing administrative domains (including different departments in the same organization) often result in the need to run on heterogeneous systems, using different operating systems and hardware architectures.<ref name="JacobIBMGrid" /> With many languages, there is a trade off between investment in software development and the number of platforms that can be supported (and thus the size of the resulting network). Cross-platform languages can reduce the need to make this trade off, though potentially at the expense of high performance on any given node (due to run-time interpretation or lack of optimization for the particular platform).<ref name="PlaszczakGrid">{{cite book |url=http://books.google.com/books?id=ZyEoEn0_ITIC&pg=PA38&lpg=PA38 |title=Grid Computing: The Savvy Manager's Guide |author=Plaszczak, Pawel; Wellner, Jr., Richard |publisher=Elsevier |year=2005 |pages=38–39 |isbn=9780080470764 |accessdate=17 September 2014}}</ref>
==Projects and applications==
Grid computing offers a way to solve large-scale problems such as protein folding, financial modeling, and geographic and meteorological simulations. Grids offer a way of using the information technology resources optimally inside an organization. Examples include:
* {{As of|September 2014}} the open-source Berkeley Open Infrastructure for Network Computing (BOINC) platform was being used by over 3.2 million users. Of those users, 1.5 million users were attached to SETI@home, a project dedicated to detecting intelligent life beyond Earth, achieving an average of 1,969 TeraFLOPS (floating point operations per second).<ref name="SETIFLOPS">{{cite web |url=http://www.allprojectstats.com/po.php?projekt=15 |title=Project statistics - SETI@home |work=All Project Stats |publisher=BOINC |accessdate=17 September 2014}}</ref>
* {{As of|September 2014}}, Folding@home, a project dedicated to disease research, achieves 39,990 TeraFLOPS from over 172,000 users.<ref name="FHStats">{{cite web |url=http://fah-web.stanford.edu/cgi-bin/main.py?qtype=osstats2 |title=Folding@home Client statistics by OS |work=Folding@home |publisher=Pande Lab, Stanford University |accessdate=17 September 2014}}</ref>
* {{As of|September 2014}}, the Worldwide LHC Computing Grid — dedicated to handling nearly 30 petabytes of data per year from the Large Hadron Collider — involves 40 countries, 170 computing centers, and two million jobs run every day, making it one of the largest grid computing projects ever.<ref name="WLCG">{{cite web |url=http://wlcg-public.web.cern.ch/ |title=Welcome - Worldwide LHC Computing Grid |publisher=CERN |accessdate=17 September 2014}}</ref>
==Further reading==
* {{cite book |url=http://www.redbooks.ibm.com/redbooks/pdfs/sg246778.pdf |format=PDF |title=Introduction to Grid Computing |author=Jacob, Bart; Brown, Michael; Fukui, Kentaro; Trivedi, Nihar |publisher=IBM |year=December 2005 |pages=248}}
==See also==
* [[Cloud computing]]
==Notes==
This article reuses numerous content elements from [http://en.wikipedia.org/wiki/Grid_computing the Wikipedia article].
==References==
<references />

Revision as of 16:49, 4 February 2016