Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Dryad (programming)

From Wikipedia, the free encyclopedia
Research project at Microsoft
Dryad
Original author(s)Microsoft Research
Developer(s)Microsoft
Stable release
v0.2.1 / October 7, 2014; 10 years ago (2014-10-07)
Repositorygithub.com/MicrosoftResearch/Dryad
Written inC#,C++,C
Operating systemMicrosoft Windows
Platform.NET Framework
TypeSoftware framework
LicenseApache License 2.0
Websitewww.microsoft.com/en-us/research/project/dryad/

Dryad was a research project atMicrosoft Research for a general purpose runtime for execution ofdata parallel applications. The research prototypes of the Dryad and DryadLINQ data-parallel processing frameworks are available in source form atGitHub.[1]

Overview

[edit]

Microsoft made several preview releases of this technology available as add-ons toWindows HPC Server 2008 R2.

An application written for Dryad is modeled as adirected acyclic graph (DAG). The DAG defines thedataflow of the application, and the vertices of the graph defines the operations that are to be performed on the data. The "computational vertices" are written using sequential constructs, devoid of anyconcurrency ormutual exclusion semantics. The Dryad runtime parallelizes the dataflow graph by distributing the computational vertices across various execution engines (which can be multiple processor cores on the same computer or different physical computers connected by a network, as in acluster). Scheduling of the computational vertices on the available hardware is handled by the Dryad runtime, without any explicit intervention by the developer of the application or administrator of the network. The flow of data between one computational vertex to another is implemented by using communication "channels" between the vertices, which in physical implementation is realized byTCP/IP streams,shared memory or temporaryfiles. A stream is used at runtime to transport a finite number ofstructuredItems.

Dryad defines adomain-specific language, which is implemented via aC++ library, that is used to create and model a Dryad execution graph. Computational vertices are written using standard C++ constructs. To make them accessible to the Dryad runtime, they must be encapsulated in aclass thatinherits from theGraphNode base class. The graph is defined by adding edges; edges are added by using a composition operator (defined by Dryad) that connects two graphs (or two nodes of a graph) with an edge.Managed code wrappers for the DryadAPI can also be written.

There exist several high-level language compilers which use Dryad as a runtime; examples includeScope (Structured Computations Optimized for Parallel Execution) and DryadLINQ.[2]

In October 2011, Microsoft discontinued active development on Dryad, shifting focus to theApache Hadoop framework.[3][4][5]

References

[edit]
  1. ^GitHub - MicrosoftResearch/Dryad: This is a research prototype of the Dryad and DryadLINQ data-parallel processing frameworks running on Hadoop YARN.
  2. ^"DryadLINQ: A System for General-Purpose Distributed Data-Parallel Computing Using a High-Level Language"(PDF).Microsoft Research. Retrieved2009-01-21.
  3. ^Patee, Don."Announcing the Windows Azure HPC Scheduler and HPC Pack 2008 R2 Service Pack 3 releases!". Microsoft. Retrieved2013-05-31.
  4. ^Foley, Mary Joe."Microsoft drops Dryad; puts its big-data bets on Hadoop". ZDNet. Archived fromthe original on November 17, 2011. Retrieved2013-05-31.
  5. ^Henschen, Doug."Microsoft Ditches Dryad, Focuses On Hadoop". Information Week. Retrieved2013-05-31.

Further reading

[edit]

External links

[edit]
Main
projects
Languages, compilers
Distributedgrid computing
Internet,networking
Other projects
Operating systems
APIs
Launched as products
MSR Labs
applied
research
Live Labs
Current
Discontinued
FUSE Labs
Other labs
Overview
Software
Applications
Video games
Programming
languages
Frameworks,
development tools
Operating systems
Other
Licenses
Forges
Related
General
Levels
Multithreading
Theory
Elements
Coordination
Programming
Hardware
APIs
Problems
Retrieved from "https://en.wikipedia.org/w/index.php?title=Dryad_(programming)&oldid=1288357290"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp