restore reusing results of mapreduce jobs
play

RESTORE: REUSING RESULTS OF MAPREDUCE JOBS Junjie Hu 1 - PowerPoint PPT Presentation

RESTORE: REUSING RESULTS OF MAPREDUCE JOBS Junjie Hu 1 Introduction Current practice deletes intermediate results of MapReduce jobs These results are not useless A system that reuses the output of MapReduce jobs / sub-jobs --


  1. RESTORE: REUSING RESULTS OF MAPREDUCE JOBS Junjie Hu 1

  2. Introduction ¨ Current practice deletes intermediate results of MapReduce jobs ¨ These results are not useless ¨ A system that reuses the output of MapReduce jobs / sub-jobs -- ReStore 2

  3. Example Proje Stor Load Data1 ct e Proje Grou Stor Load Data1 ct p e 3

  4. Restore system architecture 4

  5. Plan Matcher and Rewriter ¨ Before a job J is matched, all other jobs J depends on have to be matched and rewritten to use the job stored in the repository ¨ A physical plan in the repository is considered matched if it is contained within the input MapReduce job 5

  6. Example ¨ A = load ¨ A = load ‘page_review’ as (user, ‘page_review’ as (user, timestamp, page_info); timestamp, page_info); ¨ Store A into ‘out1’; ¨ B = foreach A generate user, page_info ¨ Store B into ‘out2’; 6

  7. Match Algorithm ¨ Use DFS ¨ ReStore uses the first match(greedy) ¨ Rules to order the physical plans: 1) A is preferred to B if all the operators in B have equivalent operators in A(A subsumes B) 2) Based on the ratio between I/O size, execution time 7

  8. Two types of reuse ¨ Job pros: 1) easy to reuse 2) already stored cons: 1) not always reusable ¨ Sub-jobs (how to generate) pros: 1) more opportunities to be reused cons: discuss later 8

  9. Discussion ¨ Why not always reuses jobs? ¨ The challenge in reusing sub-jobs? ¨ The disadvantages in reusing sub-jobs? 9

  10. How to generate sub-jobs ¨ Inject ‘store’ after each Store operators ¨ Use heuristics, inject ‘store’ after ‘good’ OP1 Store OP2 candidate …… 10

  11. Heuristics for choosing sub-jobs ¨ Conservative Heuristic ¨ Aggressive Heuristic the operator that the operator that reduces the input-size. reduces input size and E.g.: project, filter. outputs of operators are known to be expensive. E.g.: join, group, project,filter 11

  12. The property of the job should be kept in the ReStore Repository ¨ Property 1: can reduce the execution time of a workflow that contains this job/sub-job ¨ Property 2: can be reused in future workflows ¨ Check these properties based on statistics of MapReduce system 12

  13. Experiment ¨ Use PigMix: a set of queries used to test Pig performance. E.g.: L3 join, L11 distinct + union ¨ Two instances to test: 15GB and 150GB(more details on paper) ¨ Speedup: improved execution time / original execution time ¨ Overhead: executing time in addition to injecting store operators / original execution time 13

  14. Overall: effect of reusing jobs Speedup: 9.8 L3:Group and aggregate L11:union two data sets 14

  15. The effect of reusing sub-jobs outputs for data size 150GB Speedup: 24.4 Overhead: 1.6 15

  16. Execution time when reusing sub-jobs chosen by different heuristics Why aggressive is much worse than no-h? L7: nested split 16

  17. Overall: Reusing whole jobs and sub-jobs 17

  18. Performance on 15GB and 150GB ¨ Data size:150GB ¨ Data size: 15GB Speedup: 24.4 Speedup: 3 Overhead:1.6 Over head:2.4 Win! 18

  19. Effect of Data Reduction ¨ As the amount of data eliminated by the Filter of Projector operator increases, overhead decreases and speedup increases. 19

  20. Conclusion ¨ Jobs of MapReduce can be reused ¨ Intermediate results of MapReduce jobs can be useful ¨ Trade-off between increased workload by injecting extra store operators and decreased workload by reusing results ¨ The type of command 20

  21. ONLY AGGRESSIVE ELEPHANTS ARE FAST ELEPHANTS Xueman Mou 21

  22. Background ¨ Hadoop + HDFS ¤ Each different filter conditions trigger a new MapRedece Job ¤ “going shopping without a shopping list” ¤ “Let’s see what I am going to encounter on the way” 22

  23. What is HAIL… ¨ Hadoop Aggressive Indexing Library ¨ HAIL: ¤ Keeps existing replicas in different sort orders and with different clustered indexes ¤ Faster to find a suitable index ¤ Longer runtime for a workload 23

  24. Why HAIL ¨ Each MapReduce job requires to scan the whole disk ¤ slow query time ¨ Trojan index ¤ expensive index creation ¤ How to use General attributes for other tasks ¨ HDFS keeps replicas which all have the same physical data layouts 24

  25. HAIL ¨ Client analyzes input data for each HDFS block ¨ Converts each HDFS block to binary PAX ¨ Sort data in parallel in different sorting orders ¨ Datanode creates clustered index ¨ MapReduce job exploits the indexes ¨ Failover: Standard Hadoop scanning 25

  26. What is PAX? ¨ Partition Attributes Across ¨ A data organization model ¨ Significantly improves cache performance by grouping together all values of each attribute within each page. Because PAX only affects layout inside the pages, it incurs no storage penalty and does not affect I/O behavior. http://www.pdl.cmu.edu/ftp/Database/pax.pdf 26

  27. Use case ¨ Bob: representative analyst ¨ A large web log has three fields, which may serve as different filter conditions: ¤ visitDate ¤ adRevenue ¤ sourceIP 27

  28. Upload Process Reuse as much HDFS existing pipeline as possible 8: DN1, DN2 immediately forward pckt 1: parse into rows based on end of line 9: DN3 verify checksums 2: parse each row by the schema specified 10: DN3 acknowledge pckt back to DN2 3: HDFS gets list of datanodes for block 6: assemble block in main memory 4: PAX data is cut into packets 7: Sorts data, create indexs, form HAIL block PCK – data packet ACK – acknowledgement number 28

  29. HDFS Namenode Extension ¨ It keeps track of different sort orders ¨ HAIL needs to schedule map tasks close to replicas having suitable indexes ¨ Central namenode keeps Dir_Block mapping: blockID → Set Of DataNodes. and Dir_rep mapping: (blockID, datanode) → HAILBlockReplicaInfo. 29

  30. Indexing Pipeline • Why clustered indexing? – Cheap to create in main memory – Cheap to write to disk – Cheap to query from disk • Divides data of attribute sourceIP into partitions Consisting of 1024 values • Child pointers to start offset • Only the first child pointer is explicit – all leaves are contiguous on disk – can be reached by simply multiplying the leaf size with the leaf ID. 30 Figure 2: HAIL data column index

  31. Query ¨ SELECT sourceIP FROM UserVisits WHERE visitDate BETWEEN ‘1999-01-01’ AND ‘2000-01-01’; 31

  32. For each map task, the JobTracker decides on Query Pipeline which computing node to schedule the map task, using the split locations. Annotates his map function to specify The map task uses a RecordReader UDF JobClient logically breaks the input the selection predicate and the in order to read its input data blocki into smaller pieces called input splits. projected attributes required from the closest datanode. An input split defines 32 by his MapReduce job. the input data of a map task.

  33. Query Pipeline – System Perspective ¨ It is crucial to be non-intrusive to the standard Hadoop execution pipeline so that users run MapReduce jobs exactly as before. ¨ HailInputFormat ¤ a more elaborate splitting policy, called HailSplitting. ¨ HailRecordReader ¤ responsible for retrieving the records that satisfy the selection predicate of MapReduce jobs. 33

  34. Experiment ¨ Six different clusters ¤ One physical cluster with 10 nodes ¤ Three EC2 clusters using different data types each with 10 nodes ¤ Two EC2 clusters: one with 50 nodes, the other 100 nodes ¨ Two datasets: ¤ UserVisits table – 20GB data per node ¤ Synthetic dataset – 13GB data per node n consisting of 19 integer attributes in order to understand the effects of selectivity. 34

  35. Queries Bob-Q1 (selectivity: 3.1 x 10 − 2) ¨ SELECT sourceIP FROM UserVisits WHERE visitDate BETWEEN ‘1999-01-01’ AND ‘2000-01-01’; Bob-Q2 (selectivity: 3.2 x 10 − 8 ) ¨ SELECT searchWord, duration, adRevenue FROM UserVisits WHERE sourceIP=‘172.101.11.46’; Bob-Q3 (selectivity: 6 x 10 − 9) ¨ SELECT searchWord, duration, adRevenue FROM UserVisits WHERE sourceIP=‘172.101.11.46’ ¨ AND visitDate=‘1992-12-22’; Bob-Q4 (selectivity: 1.7 x 10 − 2) SELECT searchWord, duration, adRevenue FROM UserVisits WHERE adRevenue>=1 AND ¨ adRevenue<=10; Additionally, we use a variation of query Bob-Q4 to see how well HAIL performs on queries with low selectivities: Bob-Q5 (selectivity: 2.04 x 10 − 1 ) ¨ SELECT searchWord, duration, adRevenue FROM UserVisits WHERE adRevenue>=1 AND ¨ adRevenue<=100; 35

  36. Experiment Result (1) HAIL outperforms Hadoop marks the time Hadoop HAIL has a negligible upload by a factor of 1.6 even takes to upload with overhead of ∼ 2% over when creating three indexes. the default repli- cation standard Hadoop. factor of three. When HAIL creates one index HAIL significantly outperforms Hadoop per replica the overhead still for any replication factor. remains very low (at most ∼ 14%). 36

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend