1 / 8

Developing a MapReduce Application – packet dissection

Developing a MapReduce Application – packet dissection. How MapReduce Works?. MapReduce application is based on Hadoop Distributed FileSystem, HDFS. Steps of the MapReduce process: The client submits the job. JobTracker coordinates the job and splits into tasks.

yost
Télécharger la présentation

Developing a MapReduce Application – packet dissection

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Developing a MapReduce Application – packet dissection

  2. How MapReduce Works? • MapReduce application is based on Hadoop Distributed FileSystem, HDFS. • Steps of the MapReduce process: • The client submits the job. • JobTracker coordinates the job and splits into tasks. • TaskTrackers run the tasks, here is the main map and reduce phases.

  3. Shuffle and Sort • These two facilities are the heart of MapReduce which make Cloud Computing powerful. • Sort phase: guarantees the input to every reduce is sorted by key. • Shuffle phase: transfers the map output to the reducers as input.

  4. A MapReduce Application – packet dissection • With Jpcap library, captures packets and writes to HDFS directly.

  5. A MapReduce Application – packet dissection • Setup a job configuration and submit the job.

  6. A MapReduce Application – packet dissection • The mapper filters packets with the port 1863, which is the MSN protocol.

  7. A MapReduce Application – packet dissection • The reducer dissect the packet, and write message to output collector.

  8. A MapReduce Application – packet dissection • See the result:

More Related