Distributed Computing Seminar
#1

Distributed Computing Seminar
[attachment=18215]

Motivating Concepts



Performing computation on a graph data structure requires processing at each node
Each node contains node-specific data as well as links (edges) to other nodes
Computation must traverse the graph and perform the computation step

How do we traverse a graph in MapReduce? How do we represent the graph for this?


Breadth-First Search


Breadth-First Search is an iterated algorithm over graphs
Frontier advances from origin by one level with each pass



Breadth-First Search & MapReduce



Problem: This doesn't “fit” into MapReduce
Solution: Iterated passes through MapReduce – map some nodes, result includes additional nodes which are fed into successive MapReduce passes



Graph Representations


The most straightforward representation of graphs uses references from each node to its neighbors



Finding the Shortest Path: Intuition


We can define the solution to this problem inductively:
DistanceTo(startNode) = 0
For all nodes n directly reachable from startNode, DistanceTo(n) = 1
For all nodes n reachable from some other set of nodes S,
DistanceTo(n) = 1 + min(DistanceTo(m), m  S)




Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: distributed computing seminar report ppt, distributed system seminar report, 1 distributed com seminar, distributed computer system seminar report, seminar report on distributed supercomputing, mapreduce, seminar report of distributed sysyem,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  WATERPROOFING BELOW GROUND LEVEL SEMINAR REPORT seminar addict 1 2,140 12-02-2013, 01:42 PM
Last Post: Guest
  virtual network computing seminar addict 1 1,373 12-12-2012, 02:07 PM
Last Post: seminar details
  CLOUD COMPUTING CLOUD COMPUTING project uploader 1 1,788 03-10-2012, 03:10 PM
Last Post: seminar details
  CLOUD COMPUTING: A PERSPECTIVE STUDY seminar addict 1 1,531 03-10-2012, 03:10 PM
Last Post: seminar details
  cloud-computing project uploader 1 1,199 03-10-2012, 03:10 PM
Last Post: seminar details
  Smart Clothing: The Shift to Wearable Computing project uploader 0 1,141 11-06-2012, 11:22 AM
Last Post: project uploader
  VIRTUAL DATABASE TECHNOLOGY FOR DISTRIBUTED DATABASE abstract seminar details 0 1,411 09-06-2012, 06:00 PM
Last Post: seminar details
  Power System Reliability Analysis with Distributed Generators seminar details 0 537 09-06-2012, 01:54 PM
Last Post: seminar details
  Addressing the Issues and Challenges of Cloud Computing seminar details 0 953 09-06-2012, 12:17 PM
Last Post: seminar details
  Cloud Computing for Beginners seminar details 0 868 09-06-2012, 11:38 AM
Last Post: seminar details

Forum Jump: