Presentation is loading. Please wait.

Presentation is loading. Please wait.

Cloud Computing and the MapReduce paradigm Helmut Neukirchen Iðnaðarverkfræði-, vélaverkfræði- og tölvunarfræðideild Verkfræði- og náttúruvísindasvið.

Similar presentations


Presentation on theme: "Cloud Computing and the MapReduce paradigm Helmut Neukirchen Iðnaðarverkfræði-, vélaverkfræði- og tölvunarfræðideild Verkfræði- og náttúruvísindasvið."— Presentation transcript:

1 Cloud Computing and the MapReduce paradigm Helmut Neukirchen helmut@hi.is Iðnaðarverkfræði-, vélaverkfræði- og tölvunarfræðideild Verkfræði- og náttúruvísindasvið Háskóli Íslands

2 Cloud Computing: Introduction Historic example: Amazon invested into hardware to handle Christmas shopping peak. –Outside Christmas season, 90% of the hardware is idle. –Amazon started to sell idle CPU time.  Cloud computing: Provide computer resources on demand and access them via a network: Just a hype? It depends! The Internet is often visualised as a cloud  Cloud computing Armbrust et al.: “Above the Clouds: A Berkeley View of Cloud Computing”, Technical Report EECS-2009-28, EECS Department, University of California, Berkeley.

3 Cloud Computing: Advantages Users do not need to invest into hardware. –“Pay as you go”: just pay for actual usage. Users can scale on demand. –1 CPU for 100 h costs same as 100 CPUs for 1 h, Cheaper. –Economy of scale (hardware prices, administration cost), –Averaging/multiplexing (better utilisation of hardware), –Energy (move to where energy is cheap).

4 Cloud Computing: Disadvantages Cloud computing is not suitable –if you have already invested in hardware. You have the hardware, so use it. –if you are as big as cloud computing providers. Then, you can do it cheaper than cloud provider. –if privacy/business secrets are an issue. Privacy laws may forbid to transmit data to cloud. Business secrets should not leave your company. –if you want to be in full control of your IT. Danger of cloud provider having technical problems.

5 Elastic Infrastructure as a Service Cloud offering Infrastructure as a Service (IaaS): –Provides virtual machines (=CPU and RAM) and storage server (=hard disk). Possible to install own operating system and software on it. –Virtualisation: You do not know on which hardware your virtual machine executes. You do not know on which hardware your data is stored. Scalability by “elasticity”: you can get as many resources as you need. –Virtual machines can be started/terminated on demand. –Data can be stored/disposed as needed.

6 Amazon Cloud Example: Services Elastic Compute Cloud (EC2): virtual machines. –Predefined image (hard disk partition dump containing operating system to boot and all needed software) or upload your own. –No storage: once virtual machine is stopped, everything written to file system of image is lost. Elastic Block Store (EBS): stores raw blocks (like hard disk). –For example to store EC2 images. Simple Storage Service (S3): storage as object/file. –For example to store application data.

7 Amazon Cloud Example: Practical issues Costs: –Free Usage Tier for trying out. –Small EC2 instance: $0.09/h http://aws.amazon.com/ec2/#pricing –S3: $0.125/GB and month http://aws.amazon.com/s3/#pricing Create virtual machine instance via Web interface or API. –Log in on instance: ssh (Linux instance). –Don’t forget to shut down instance if not needed anymore!

8 Amazon Cloud: Why use it at HÍ? Why use, e.g., Amazon EC2, if we have the Nordic High Performance Computing cluster (3456 cores, 72 TByte storage)? You are superuser on your virtual machine: –You can on your own install whatever software you need! Amazon grants for students, teachers and researchers: –Funding in form of credit for Amazon Cloud usage. –Easy to apply, easy to get! –http://aws.amazon.com/education/

9 http://goodqualitywristbands.blogspot.com

10 MapReduce: Introduction MapReduce is used by Google to process their data: – >20 petabytes (1 PB=1024 terabytes) per day [as of 2008]. Before data can be processes, it needs to be stored. Google uses ordinary desktop PCs instead of reliable, expensive server and storage hardware. –Cheap, but will fail more often. –Google File System (GFS) designed to tolerate failures. Understanding GFS helps understanding MapReduce.

11 Google File System (GFS) Internally, files data is stored in 64 MB chunks. –Each chunk stored as ordinary file in Linux filesystem. Hundreds of nodes acting as GFS chunkservers. –Each responsible for storing a subset of all chunks on their local hard disk. –Fault tolerance by replication: each chunk is stored three times (at different chunkservers). Ghemawat, Gobioff, Leung: “The Google File System”, ACM Symposium on Operating Systems Principles (SOSP), 2003

12 MapReduce Parallel/distributed processing to achieve speed-up of computations on huge data sets. MapReduce programming model / paradigm: –Break input data into a number smaller chunks. –Carry out processing on each chunk in parallel and independent from other chunks and produce intermediary results based on that chunk only (map). Move the job to where the data is stored: do processing on that node where the data is stored (i.e. one of the three associated GFS chunk servers).  Massive speed-up in comparison to traditional approaches with central storage. –Combine intermediary results into a final result (reduce). Application developer needs to provide only corresponding map and reduce functions, the MapReduce infrastructure takes care of the rest. MapReduce is only applicable for problems that can be broken down into independent sub-problems that just need to be joined afterwards. Dean, Ghemawat: “MapReduce: Simplified Data Processing on Large Clusters”, Proceedings of the 6th symposium on Operating Systems design and implementation, 2004

13 Map and Reduce functions Initial step: MapReduce infrastructure breaks data into splits and calls map function on each split: map: takes a list of input (key, value) pairs and produces for each pair a list of intermediary (key,value) pairs. –More formal: for all (k1, v1) pairs do map: (k1,v1)  list(k2,v2). Intermediate step: MapReduce groups intermediary (key,value) pairs that have the same key. reduce function is called on all grouped (key,value) pairs (key and group of all values for that key passed to reduce as parameter). reduce: Merges the group values into a smaller list of values, i.e. creates one output (key, list(values)) pair for each unique key. –More formal: for each group do reduce: (k2,list(v2))  (k2,list(v2'). –As the reduce function is supposed to reduce, typically less output values (usually just 1) are generated than grouped input values were provided. The final result is as set of output (key, list(values)) pairs with as many pairs as the intermediary has unique keys. –Either this set of pairs is already the desired result –Or a further MapReduce processing can be used to reduce it even further. Different “input reader” classes know where to split input reasonably, e.g. a text input reader splits at line breaks. Preferable split size is 64 MB so that a split corresponds roughly to a GFS chunk.

14 Map and Reduce functions – Example: count occurrence of words (histogram) For each words contained in a text file, it shall be counted how often it occurs. Input reader reads text file containing text. –Splits file at line or word boundaries and passes chunk of text lines to map function. –key=e.g. file name and offset in file (is ignored in example), value=chunk of text: reduce is called with –key=unique word, e.g. “word” –values=group of all values for that key, e.g. (1,1,1,1,1,1) map(String key, String value): // key: file name // value: file contents for each word w in value: EmitIntermediate(w, " 1 " ); reduce(String key, Iterator values): // key: a word // values: a list of counts int result = 0; for each v in values: result += ParseInt(v); Emit(key, result); Each time a word w occurs, write (w,1) as new intermediary (key,value) pair: if “word” occurs 6 times, 6 (“word”,1) pairs will be created. I.e. map may create much more intermediary (key,value) pairs than input (key,value) pairs were provided. (Will be shrunk again by intermediate step and reduce.) Will add, e.g., (“word”, 6) to result. For “another” word occurring only once, (“another”,1) would be added to the result.

15 MapReduce architecture remote Execution on same node or close to node storing GFS input data. (Each reduce worker writes it’s result to a separate GFS file.) Each reduce worker gets (via remote read) it’s partition of the intermediary results created at all the map worker nodes and sorts them. Stored on local file system. Each worker partitions it’s intermediary result in the same way (based on hash of key) into as many partitions as the number of reduce workers. Coulouris, Dollimore, Kindberg, Blair: Distributed Systems, Addison-Wesley, 2011

16 Apache Hadoop Open-source implementation of MapReduce. –http://hadoop.apache.org Hadoop Distributed File System (HDFS): –Implements ideas of Google File System (GFS). Hadoop MapReduce: –Implements ideas of Google MapReduce framework.

17 http://goodqualitywristbands.blogspot.com

18 Particle Physics Data Analysis Particle Physics (e.g. CERN LHC) – simplified: –Physicists have assumptions about particles. –Simulate expected outcome of particle collision. Probabilities of particles and their tracks. –Do actual experiment: record collision of particles. Observe particles and their tracks. –Compare recorded outcome with expected outcome: If it is the same: nice (assumed model is correct). If it is not the same: maybe even nicer (discovered something new). Petabytes of data produced at LHC. –Data processing (LHC Computing Grid) designed a decade ago. Assumed that petabytes is too much: data gets pre-filtered. Danger: rare (=most interesting) events get filtered out.

19 Outlook Possible to analyse unfiltered particle physics data? –Some say: will be impossible due to petabytes of data. –Some say: should be trivial using MapReduce.  Find out if Hadoop can be applied (probabilities are histograms)! In principle reasonable to use existing hardware (Nordic High Performance Computing cluster), but: –Will have to install and configure a lot, but have no root privileges.  Decided to use Amazon Cloud for evaluation! –Problem of MapReduce in a Cloud: virtualisation. If S3 or EBS used to store data: not possible to execute map jobs where data is stored.  Find out if local HDFS storage is feasible in Amazon Cloud!


Download ppt "Cloud Computing and the MapReduce paradigm Helmut Neukirchen Iðnaðarverkfræði-, vélaverkfræði- og tölvunarfræðideild Verkfræði- og náttúruvísindasvið."

Similar presentations


Ads by Google