Introduction to Apache Hadoop & Pig. Milind Bhandarkar ([email protected]) Y!IM: gridsolutions
|
|
|
- Scott Small
- 10 years ago
- Views:
Transcription
1 Introduction to Apache Hadoop & Pig Milind Bhandarkar Y!IM: gridsolutions
2 Agenda Apache Hadoop Map-Reduce Distributed File System Writing Scalable Applications Apache Pig Q & A 2
3 Hadoop: Behind Every Click At Yahoo! 3
4 Hadoop At Yahoo! (Some Statistics) 40,000 + machines in 20+ clusters Largest cluster is 4,000 machines 6 Petabytes of data (compressed, unreplicated) users 200,000+ jobs/day 4
5 !"# *'"# $"# )$1# # %"# +%"#78#29-4/:3# *""# &"#!"#$%&'(%)#*)+,-.,-%) '"# ("# )"# *"# B/.--C# # B/.--C#29-4/:3#D78E# 3,%,&-4") +45,'4,) 678&40) +'"# 9&5:2) /-#($4;#') +""# '"# /,0&120,%) +"# "#,-./0# *""&# *""%# *""$# *""!# *"+"# "#
6 Sample Applications Data analysis is the inner loop at Yahoo! Data Information Value Log processing: Analytics, reporting, buzz Search index Content Optimization, Spam filters Computational Advertising 6
7 BEHIND EVERY CLICK
8 BEHIND EVERY CLICK
9
10 Who Uses Hadoop?
11 Why Clusters? 10
12 Big Datasets (Data-Rich Computing theme proposal. J. Campbell, et al, 2007)
13 Cost Per Gigabyte (
14 Storage Trends (Graph by Adam Leventhal, ACM Queue, Dec 2009)
15 Motivating Examples 14
16 Yahoo! Search Assist
17 Search Assist Insight: Related concepts appear close together in text corpus Input: Web pages 1 Billion Pages, 10K bytes each 10 TB of input data Output: List(word, List(related words)) 16
18 Search Assist // Input: List(URL, Text) foreach URL in Input : Words = Tokenize(Text(URL)); foreach word in Tokens : Insert (word, Next(word, Tokens)) in Pairs; Insert (word, Previous(word, Tokens)) in Pairs; // Result: Pairs = List (word, RelatedWord) Group Pairs by word; // Result: List (word, List(RelatedWords) foreach word in Pairs : Count RelatedWords in GroupedPairs; // Result: List (word, List(RelatedWords, count)) foreach word in CountedPairs : Sort Pairs(word, *) descending by count; choose Top 5 Pairs; // Result: List (word, Top5(RelatedWords)) 17
19 You Might Also Know
20 You Might Also Know Insight: You might also know Joe Smith if a lot of folks you know, know Joe Smith if you don t know Joe Smith already Numbers: 300 MM users Average connections per user is
21 You Might Also Know // Input: List(UserName, List(Connections)) foreach u in UserList : // 300 MM foreach x in Connections(u) : // 100 foreach y in Connections(x) : // 100 if (y not in Connections(u)) : Count(u, y)++; // 3 Trillion Iterations Sort (u,y) in descending order of Count(u,y); Choose Top 3 y; Store (u, {y0, y1, y2}) for serving; 20
22 Performance 101 Random accesses for each user Assume 1 ms per random access 100 ms per user 300 MM users 300 days on a single machine 21
23 MapReduce Paradigm 22
24 Map & Reduce Primitives in Lisp (& Other functional languages) 1970s Google Paper mapreduce.html 23
25 Map Output_List = Map (Input_List) Square (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) = (1, 4, 9, 16, 25, 36,49, 64, 81, 100) 24
26 Reduce Output_Element = Reduce (Input_List) Sum (1, 4, 9, 16, 25, 36,49, 64, 81, 100) =
27 Parallelism Map is inherently parallel Each list element processed independently Reduce is inherently sequential Unless processing multiple lists Grouping to produce multiple lists 26
28 Search Assist Map // Input: Pairs = Tokenize_And_Pair ( Text ( Input ) ) Output = { (apache, hadoop) (hadoop, mapreduce) (hadoop, streaming) (hadoop, pig) (apache, pig) (hadoop, DFS) (streaming, commandline) (hadoop, java) (DFS, namenode) (datanode, block) (replication, default)... } 27
29 Search Assist Reduce // Input: GroupedList (word, GroupedList(words)) CountedPairs = CountOccurrences (word, RelatedWords) Output = { (hadoop, apache, 7) (hadoop, DFS, 3) (hadoop, streaming, 4) (hadoop, mapreduce, 9)... } 28
30 Issues with Large Data Map Parallelism: Splitting input data Shipping input data Reduce Parallelism: Grouping related data Dealing with failures Load imbalance 29
31
32 Apache Hadoop January 2006: Subproject of Lucene January 2008: Top-level Apache project Stable Version: 0.20 S (Strong Authentication) Latest Version: 0.21 Major contributors: Yahoo!, Facebook, Powerset, Cloudera 31
33 Apache Hadoop Reliable, Performant Distributed file system MapReduce Programming framework Related Projects: HBase, Hive, Pig, Howl, Oozie, Zookeeper, Chukwa, Mahout, Cascading, Scribe, Cassandra, Hypertable, Voldemort, Azkaban, Sqoop, Flume, Avro... 32
34 Problem: Bandwidth to Data Scan 100TB Datasets on 1000 node cluster Remote 10MB/s = 165 mins Local MB/s = 33-8 mins Moving computation is more efficient than moving data Need visibility into data placement 33
35 Problem: Scaling Reliably Failure is not an option, it s a rule! 1000 nodes, MTBF < 1 day 4000 disks, 8000 cores, 25 switches, 1000 NICs, 2000 DIMMS (16TB RAM) Need fault tolerant store with reasonable availability guarantees Handle hardware faults transparently 34
36 Hadoop Goals Scalable: Petabytes (10 15 Bytes) of data on thousands on nodes Economical: Commodity components only Reliable Engineering reliability into every application is expensive 35
37 Hadoop MapReduce 36
38 Think MR Record = (Key, Value) Key : Comparable, Serializable Value: Serializable Input, Map, Shuffle, Reduce, Output 37
39 Seems Familiar? cat /var/log/auth.log* \ grep session opened cut -d -f10 \ sort \ uniq -c > \ ~/userlist 38
40 Map Input: (Key1, Value1) Output: List(Key2, Value2) Projections, Filtering, Transformation 39
41 Shuffle Input: List(Key2, Value2) Output Sort(Partition(List(Key2, List(Value2)))) Provided by Hadoop 40
42 Reduce Input: List(Key2, List(Value2)) Output: List(Key3, Value3) Aggregation 41
43 Example: Unigrams Input: Huge text corpus Wikipedia Articles (40GB uncompressed) Output: List of words sorted in descending order of frequency 42
44 Unigrams $ cat ~/wikipedia.txt \ sed -e 's/ /\n/g' grep. \ sort \ uniq -c > \ ~/frequencies.txt $ cat ~/frequencies.txt \ # cat \ sort -n -k1,1 -r # cat > \ ~/unigrams.txt 43
45 MR for Unigrams mapper (filename, file-contents): for each word in file-contents: emit (word, 1) reducer (word, values): sum = 0 for each value in values: sum = sum + value emit (word, sum) 44
46 MR for Unigrams mapper (word, frequency): emit (frequency, word) reducer (frequency, words): for each word in words: emit (word, frequency) 45
47 Hadoop Streaming Hadoop is written in Java Java MapReduce code is native What about Non-Java Programmers? Perl, Python, Shell, R grep, sed, awk, uniq as Mappers/Reducers Text Input and Output 46
48 Hadoop Streaming Thin Java wrapper for Map & Reduce Tasks Forks actual Mapper & Reducer IPC via stdin, stdout, stderr Key.toString() \t Value.toString() \n Slower than Java programs Allows for quick prototyping / debugging 47
49 Hadoop Streaming $ bin/hadoop jar hadoop-streaming.jar \ -input in-files -output out-dir \ -mapper mapper.sh -reducer reducer.sh # mapper.sh sed -e 's/ /\n/g' grep. # reducer.sh uniq -c awk '{print $2 "\t" $1}' 48
50 Running Hadoop Jobs 49
51 Running a Job [milindb@gateway ~]$ hadoop jar \ $HADOOP_HOME/hadoop-examples.jar wordcount \ /data/newsarchive/ /tmp/newsout input.fileinputformat: Total input paths to process : 4 mapred.jobclient: Running job: job_ _5709 mapred.jobclient: map 0% reduce 0% mapred.jobclient: map 3% reduce 0% mapred.jobclient: map 7% reduce 0%... mapred.jobclient: map 100% reduce 21% mapred.jobclient: map 100% reduce 31% mapred.jobclient: map 100% reduce 33% mapred.jobclient: map 100% reduce 66% mapred.jobclient: map 100% reduce 100% mapred.jobclient: Job complete: job_ _
52 Running a Job mapred.jobclient: Counters: 18 mapred.jobclient: Job Counters mapred.jobclient: Launched reduce tasks=1 mapred.jobclient: Rack-local map tasks=10 mapred.jobclient: Launched map tasks=25 mapred.jobclient: Data-local map tasks=1 mapred.jobclient: FileSystemCounters mapred.jobclient: FILE_BYTES_READ= mapred.jobclient: HDFS_BYTES_READ= mapred.jobclient: FILE_BYTES_WRITTEN= mapred.jobclient: HDFS_BYTES_WRITTEN=
53 Running a Job mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: mapred.jobclient: Map-Reduce Framework Combine output records= Map input records= Reduce shuffle bytes= Spilled Records= Map output bytes= Combine input records= Map output records= Reduce input records=
54 JobTracker WebUI
55 JobTracker Status
56 Jobs Status
57 Job Details
58 Job Counters
59 Job Progress
60 All Tasks
61 Task Details
62 Task Counters
63 Task Logs
64 Hadoop Distributed File System 63
65 HDFS Data is organized into files and directories Files are divided into uniform sized blocks (default 64MB) and distributed across cluster nodes HDFS exposes block placement so that computation can be migrated to data 64
66 HDFS Blocks are replicated (default 3) to handle hardware failure Replication for performance and fault tolerance (Rack-Aware placement) HDFS keeps checksums of data for corruption detection and recovery 65
67 HDFS Master-Worker Architecture Single NameNode Many (Thousands) DataNodes 66
68 HDFS Master (NameNode) Manages filesystem namespace File metadata (i.e. inode ) Mapping inode to list of blocks + locations Authorization & Authentication Checkpoint & journal namespace changes 67
69 Namenode Mapping of datanode to list of blocks Monitor datanode health Replicate missing blocks Keeps ALL namespace in memory 60M objects (File/Block) in 16GB 68
70 Datanodes Handle block storage on multiple volumes & block integrity Clients access the blocks directly from data nodes Periodically send heartbeats and block reports to Namenode Blocks are stored as underlying OS s files 69
71 HDFS Architecture
72 Replication A file s replication factor can be changed dynamically (default 3) Block placement is rack aware Block under-replication & over-replication is detected by Namenode Balancer application rebalances blocks to balance datanode utilization 71
73 Accessing HDFS hadoop fs [-fs <local file system URI>] [-conf <configuration file>] [-D <property=value>] [-ls <path>] [-lsr <path>] [-du <path>] [-dus <path>] [-mv <src> <dst>] [-cp <src> <dst>] [-rm <src>] [-rmr <src>] [-put <localsrc>... <dst>] [-copyfromlocal <localsrc>... <dst>] [-movefromlocal <localsrc>... <dst>] [-get [-ignorecrc] [-crc] <src> <localdst> [-getmerge <src> <localdst> [addnl]] [-cat <src>] [-copytolocal [-ignorecrc] [-crc] <src> <localdst>] [-movetolocal <src> <localdst>] [-mkdir <path>] [-report] [-setrep [-R] [-w] <rep> <path/file>] [-touchz <path>] [-test -[ezd] <path>] [-stat [format] <path>] [-tail [-f] <path>] [-text <path>] [-chmod [-R] <MODE[,MODE]... OCTALMODE> PATH...] [-chown [-R] [OWNER][:[GROUP]] PATH...] [-chgrp [-R] GROUP PATH...] [-count[-q] <path>] [-help [cmd]] 72
74 HDFS Java API // Get default file system instance fs = Filesystem.get(new Configuration()); // Or Get file system instance from URI fs = Filesystem.get(URI.create(uri), new Configuration()); // Create, open, list, OutputStream out = fs.create(path, ); InputStream in = fs.open(path, ); boolean isdone = fs.delete(path, recursive); FileStatus[] fstat = fs.liststatus(path); 73
75 libhdfs #include hdfs.h hdfsfs fs = hdfsconnectnewinstance("default", 0); hdfsfile writefile = hdfsopenfile(fs, /tmp/test.txt, O_WRONLY O_CREAT, 0, 0, 0); tsize num_written = hdfswrite(fs, writefile, (void*)buffer, sizeof(buffer)); hdfsclosefile(fs, writefile); hdfsfile readfile = hdfsopenfile(fs, /tmp/test.txt, O_RDONLY, 0, 0, 0); tsize num_read = hdfsread(fs, readfile, (void*)buffer, sizeof(buffer)); hdfsclosefile(fs, readfile); hdfsdisconnect(fs); 74
76 Hadoop Scalability
77 Scalability of Parallel Programs If one node processes k MB/s, then N nodes should process (k*n) MB/s If some fixed amount of data is processed in T minutes on one node, the N nodes should process same data in (T/N) minutes Linear Scalability
78 Latency Goal: Minimize program execution time
79 Throughput Goal: Maximize Data processed per unit time
80 Amdahl s Law If computation C is split into N different parts, C1..CN If partial computation Ci can be speeded up by a factor of Si Then overall computation speedup is limited by Ci/ (Ci/Si)
81 Amdahl s Law Suppose Job has 5 phases: P0 is 10 seconds, P1, P2, P3 are 200 seconds each, and P4 is 10 seconds Sequential runtime = 620 seconds P1, P2, P3 parallelized on 100 machines with speedup of 80 (Each executes in 2.5 seconds) After parallelization, runtime = 27.5 seconds Effective Speedup: 22.5
82 Efficiency Suppose, speedup on N processors is S, then Efficiency = S/N In previous example, Efficiency = Goal: Maximize efficiency, while meeting required SLA
83 Amdahl s Law
84 Map Reduce Data Flow
85 MapReduce Dataflow
86 MapReduce
87 Job Submission
88 Initialization
89 Scheduling
90 Execution
91 Map Task
92 Reduce Task
93 Hadoop Performance Tuning
94 Example Bob wants to count records in event logs (several hundred GB) Used Identity Mapper (/bin/cat) & Single counting reducer (/bin/wc -l) What is he doing wrong? This happened, really!
95 MapReduce Performance Minimize Overheads Task Scheduling & Startup Network Connection Setup Reduce intermediate data size Map Outputs + Reduce Inputs Opportunity to load balance
96 Number of Maps Number of Input Splits, computed by InputFormat Default FileInputFormat: Number of HDFS Blocks Good locality Does not cross file boundary
97 Changing Number of Maps mapred.map.tasks mapred.min.split.size Concatenate small files into big files Change dfs.block.size Implement InputFormat CombineFileInputFormat
98 Number of Reduces mapred.reduce.tasks Shuffle Overheads (M*R) 1-2 GB of data per reduce task Consider time needed for re-execution Memory consumed per group/bag
99 Shuffle Often the most expensive component M * R Transfers over the network Sort map outputs (intermediate data) Merge reduce inputs
100 8 x 1Gbps 8 x 1Gbps 40 x 1Gbps 40 x 1Gbps 40 x 1Gbps 40 Typical Hadoop Network Architecture
101 Improving Shuffle Avoid shuffling/sorting if possible Minimize redundant transfers Compress intermediate data
102 Avoid Shuffle Set mapred.reduce.tasks to zero Known as map-only computations Filters, Projections, Transformations Number of output files = number of input splits = number of input blocks May overwhelm HDFS
103 Minimize Redundant Transfers Combiners Intermediate data compression
104 Combiners When Maps produce many repeated keys Combiner: Local aggregation after Map & before Reduce Side-effect free Same interface as Reducers, and often the same class
105 Compression Often yields huge performance gains Set mapred.output.compress=true to compress job output Set mapred.compress.map.output=true to compress map outputs Codecs: Java zlib (default), LZO, bzip2, native gzip
106 Load Imbalance Inherent in application Imbalance in input splits Imbalance in computations Imbalance in partitions Heterogenous hardware Degradation over time
107 Speculative Execution Runs multiple instances of slow tasks Instance that finishes first, succeeds mapred.map.speculative.execution=true mapred.reduce.speculative.execution=true Can dramatically bring in long tails on jobs
108 Best Practices - 1 Use higher-level languages (e.g. Pig) Coalesce small files into larger ones & use bigger HDFS block size Tune buffer sizes for tasks to avoid spill to disk, consume one slot per task Use combiner if local aggregation reduces size
109 Best Practices - 2 Use compression everywhere CPU-efficient for intermediate data Disk-efficient for output data Use Distributed Cache to distribute small side-files (Less than DFS block size) Minimize number of NameNode/JobTracker RPCs from tasks
110 Apache Pig
111 What is Pig? System for processing large semi-structured data sets using Hadoop MapReduce platform Pig Latin: High-level procedural language Pig Engine: Parser, Optimizer and distributed query execution
112 Pig vs SQL Pig is procedural (How) Nested relational data model Schema is optional Scan-centric analytic workloads Limited query optimization SQL is declarative Flat relational data model Schema is required OLTP + OLAP workloads Significant opportunity for query optimization
113 Pig vs Hadoop Increase programmer productivity Decrease duplication of effort Insulates against Hadoop complexity Version Upgrades JobConf configuration tuning Job Chains
114 Example Input: User profiles, Page visits Find the top 5 most visited pages by users aged 18-25
115 In Native Hadoop
116 In Pig Users = load users as (name, age); Filtered = filter Users by age >= 18 and age <= 25; Pages = load pages as (user, url); Joined = join Filtered by name, Pages by user; Grouped = group Joined by url; Summed = foreach Grouped generate group, COUNT(Joined) as clicks; Sorted = order Summed by clicks desc; Top5 = limit Sorted 5; store Top5 into top5sites ; 115
117 Natural Fit
118 Comparison
119 Flexibility & Control Easy to plug-in user code Metadata is not mandatory Pig does not impose a data model on you Fine grained control Complex data types
120 Pig Data Types Tuple: Ordered set of fields Field can be simple or complex type Nested relational model Bag: Collection of tuples Can contain duplicates Map: Set of (key, value) pairs
121 Simple data types int : 42 long : 42L float : f double : chararray : UTF-8 String bytearray : blob
122 Expressions A = LOAD data.txt AS (f1:int, f2:{t:(n1:int, n2:int)}, f3: map[] ) A = { } (1, -- A.f1 or A.$0 { (2, 3), (4, 6) }, -- A.f2 or A.$1 [ yahoo # mail ] -- A.f3 or A.$2 121
123 Counting Word Frequencies Input: Large text document Process: Load the file For each line, generate word tokens Group by word Count words in each group
124 Load myinput = load '/user/milindb/text.txt' USING TextLoader() as (myword:chararray); (program program) (pig pig) (program pig) (hadoop pig) (latin latin) (pig latin) 123
125 Tokenize words = FOREACH myinput GENERATE FLATTEN(TOKENIZE(*)); (program) (program) (pig) (pig) (program) (pig) (hadoop) (pig) (latin) (latin) (pig) (latin) 124
126 Group grouped = GROUP words BY $0; (pig, {(pig), (pig), (pig), (pig), (pig)}) (latin, {(latin), (latin), (latin)}) (hadoop, {(hadoop)}) (program, {(program), (program), (program)}) 125
127 Count counts = FOREACH grouped GENERATE group, COUNT(words); (pig, 5L) (latin, 3L) (hadoop, 1L) (program, 3L) 126
128 Store store counts into /user/milindb/output using PigStorage(); pig 5 latin 3 hadoop 1 program 3 127
129 Example: Log Processing -- use a custom loader Logs = load apachelogfile using CommonLogLoader() as (addr, logname, user, time, method, uri, p, bytes); -- apply your own function Cleaned = foreach Logs generate addr, canonicalize(url) as url; Grouped = group Cleaned by url; -- run the result through a binary Analyzed = stream Grouped through urlanalyzer.py ; store Analyzed into analyzedurls ; 128
130 Schema on the fly -- declare your types Grades = load studentgrades as (name: chararray, age: int, gpa: double); Good = filter Grades by age > 18 and gpa > 3.0; -- ordering will be by type Sorted = order Good by gpa; store Sorted into smartgrownups ; 129
131 Nested Data Logs = load weblogs as (url, userid); Grouped = group Logs by url; -- Code inside {} will be applied to each -- value in turn. DisinctCount = foreach Grouped { Userid = Logs.userid; DistinctUsers = distinct Userid; generate group, COUNT(DistinctUsers); } store DistinctCount into distinctcount ; 130
132 Pig Architecture
133 Pig Frontend
134 Logical Plan Directed Acyclic Graph Logical Operator as Node Data flow as edges Logical Operators One per Pig statement Type checking with Schema
135 Pig Statements Load Read data from the file system Store Write data to the file system Dump Write data to stdout
136 Pig Statements Foreach..Generate Filter Stream..through Apply expression to each record and generate one or more records Apply predicate to each record and remove records where false Stream records through user-provided binary
137 Pig Statements Group/CoGroup Collect records with the same key from one or more inputs Join Join two or more inputs based on a key Order..by Sort records based on a key
138 Physical Plan Pig supports two back-ends Local Hadoop MapReduce 1:1 correspondence with most logical operators Except Distinct, Group, Cogroup, Join etc
139 MapReduce Plan Detect Map-Reduce boundaries Group, Cogroup, Order, Distinct Coalesce operators into Map and Reduce stages Job.jar is created and submitted to Hadoop JobControl
140 Lazy Execution Nothing really executes until you request output Store, Dump, Explain, Describe, Illustrate Advantages In-memory pipelining Filter re-ordering across multiple commands
141 Parallelism Split-wise parallelism on Map-side operators By default, 1 reducer PARALLEL keyword group, cogroup, cross, join, distinct, order
142 Running Pig $ pig grunt > A = load students as (name, age, gpa); grunt > B = filter A by gpa > 3.5 ; grunt > store B into good_students ; grunt > dump A; (jessica thompson, 73, 1.63) (victor zipper, 23, 2.43) (rachel hernandez, 40, 3.60) grunt > describe A; A: (name, age, gpa ) 141
143 Running Pig Batch mode $ pig myscript.pig Local mode $ pig x local Java mode (embed pig statements in java) Keep pig.jar in the class path
144 Pig for SQL Programmers
145 SQL to Pig SQL Pig...FROM MyTable... A = LOAD MyTable USING PigStorage( \t ) AS (col1:int, col2:int, col3:int); SELECT col1 + col2, col3... B = FOREACH A GENERATE col1 + col2, col3;...where col2 > 2 C = FILTER B by col2 > 2;
146 SQL to Pig SQL Pig SELECT col1, col2, sum(col3) FROM X GROUP BY col1, col2 D = GROUP A BY (col1, col2) E = FOREACH D GENERATE FLATTEN(group), SUM(A.col3);...HAVING sum(col3) > 5 F = FILTER E BY $2 > 5;...ORDER BY col1 G = ORDER F BY $0;
147 SQL to Pig SQL Pig SELECT DISTINCT col1 from X I = FOREACH A GENERATE col1; J = DISTINCT I; SELECT col1, count (DISTINCT col2) FROM X GROUP BY col1 K = GROUP A BY col1; L = FOREACH K { M = DISTINCT A.col2; GENERATE FLATTEN(group), count(m); }
148 SQL to Pig SQL Pig N = JOIN A by col1 INNER, B by col1 INNER; O = FOREACH N GENERATE A.col1, B.col3; SELECT A.col1, B. col3 FROM A JOIN B USING (col1) -- Or N = COGROUP A by col1 INNER, B by col1 INNER; O = FOREACH N GENERATE flatten(a), flatten(b); P = FOREACH O GENERATE A.col1, B.col3
149 Questions?
Hadoop At Yahoo! (Some Statistics)
Session B: Hadoop Hadoop At Yahoo! (Some Statistics) 25,000 + machines in 10+ clusters Largest cluster is 3,000 machines 3 Petabytes of data (compressed, unreplicated) 1000+ users 100,000+ jobs/week 2
CS242 PROJECT. Presented by Moloud Shahbazi Spring 2015
CS242 PROJECT Presented by Moloud Shahbazi Spring 2015 AGENDA Project Overview Data Collection Indexing Big Data Processing PROJECT- PART1 1.1 Data Collection: 5G < data size < 10G Deliverables: Document
Lecture 2 (08/31, 09/02, 09/09): Hadoop. Decisions, Operations & Information Technologies Robert H. Smith School of Business Fall, 2015
Lecture 2 (08/31, 09/02, 09/09): Hadoop Decisions, Operations & Information Technologies Robert H. Smith School of Business Fall, 2015 K. Zhang BUDT 758 What we ll cover Overview Architecture o Hadoop
MapReduce Programming with Apache Hadoop Viraj Bhat [email protected]
MapReduce Programming with Apache Hadoop Viraj Bhat [email protected] - 1 - Agenda Session I and II (8-12pm) Introduction Hadoop Distributed File System (HDFS) Hadoop Map-Reduce Programming Hadoop Architecture
Take An Internal Look at Hadoop. Hairong Kuang Grid Team, Yahoo! Inc [email protected]
Take An Internal Look at Hadoop Hairong Kuang Grid Team, Yahoo! Inc [email protected] What s Hadoop Framework for running applications on large clusters of commodity hardware Scale: petabytes of data
Prepared By : Manoj Kumar Joshi & Vikas Sawhney
Prepared By : Manoj Kumar Joshi & Vikas Sawhney General Agenda Introduction to Hadoop Architecture Acknowledgement Thanks to all the authors who left their selfexplanatory images on the internet. Thanks
Data Science Analytics & Research Centre
Data Science Analytics & Research Centre Data Science Analytics & Research Centre 1 Big Data Big Data Overview Characteristics Applications & Use Case HDFS Hadoop Distributed File System (HDFS) Overview
HDFS File System Shell Guide
Table of contents 1 Overview...3 1.1 cat... 3 1.2 chgrp... 3 1.3 chmod... 3 1.4 chown... 4 1.5 copyfromlocal...4 1.6 copytolocal...4 1.7 count... 4 1.8 cp... 4 1.9 du... 5 1.10 dus...5 1.11 expunge...5
CSE-E5430 Scalable Cloud Computing Lecture 2
CSE-E5430 Scalable Cloud Computing Lecture 2 Keijo Heljanko Department of Computer Science School of Science Aalto University [email protected] 14.9-2015 1/36 Google MapReduce A scalable batch processing
Hadoop Shell Commands
Table of contents 1 FS Shell...3 1.1 cat... 3 1.2 chgrp... 3 1.3 chmod... 3 1.4 chown... 4 1.5 copyfromlocal...4 1.6 copytolocal...4 1.7 cp... 4 1.8 du... 4 1.9 dus...5 1.10 expunge...5 1.11 get...5 1.12
Hadoop 只 支 援 用 Java 開 發 嘛? Is Hadoop only support Java? 總 不 能 全 部 都 重 新 設 計 吧? 如 何 與 舊 系 統 相 容? Can Hadoop work with existing software?
Hadoop 只 支 援 用 Java 開 發 嘛? Is Hadoop only support Java? 總 不 能 全 部 都 重 新 設 計 吧? 如 何 與 舊 系 統 相 容? Can Hadoop work with existing software? 可 以 跟 資 料 庫 結 合 嘛? Can Hadoop work with Databases? 開 發 者 們 有 聽 到
Hadoop Shell Commands
Table of contents 1 DFShell... 3 2 cat...3 3 chgrp...3 4 chmod...3 5 chown...4 6 copyfromlocal... 4 7 copytolocal... 4 8 cp...4 9 du...4 10 dus... 5 11 expunge... 5 12 get... 5 13 getmerge... 5 14 ls...
Hadoop Distributed File System. Dhruba Borthakur Apache Hadoop Project Management Committee [email protected] [email protected]
Hadoop Distributed File System Dhruba Borthakur Apache Hadoop Project Management Committee [email protected] [email protected] Hadoop, Why? Need to process huge datasets on large clusters of computers
INTRODUCTION TO APACHE HADOOP MATTHIAS BRÄGER CERN GS-ASE
INTRODUCTION TO APACHE HADOOP MATTHIAS BRÄGER CERN GS-ASE AGENDA Introduction to Big Data Introduction to Hadoop HDFS file system Map/Reduce framework Hadoop utilities Summary BIG DATA FACTS In what timeframe
International Journal of Advancements in Research & Technology, Volume 3, Issue 2, February-2014 10 ISSN 2278-7763
International Journal of Advancements in Research & Technology, Volume 3, Issue 2, February-2014 10 A Discussion on Testing Hadoop Applications Sevuga Perumal Chidambaram ABSTRACT The purpose of analysing
Apache Hadoop. Alexandru Costan
1 Apache Hadoop Alexandru Costan Big Data Landscape No one-size-fits-all solution: SQL, NoSQL, MapReduce, No standard, except Hadoop 2 Outline What is Hadoop? Who uses it? Architecture HDFS MapReduce Open
Using Hadoop for Webscale Computing. Ajay Anand Yahoo! [email protected] Usenix 2008
Using Hadoop for Webscale Computing Ajay Anand Yahoo! [email protected] Agenda The Problem Solution Approach / Introduction to Hadoop HDFS File System Map Reduce Programming Pig Hadoop implementation
File System Shell Guide
Table of contents 1 Overview...3 1.1 cat... 3 1.2 chgrp... 3 1.3 chmod... 3 1.4 chown... 4 1.5 copyfromlocal...4 1.6 copytolocal...4 1.7 count... 4 1.8 cp... 5 1.9 du... 5 1.10 dus...5 1.11 expunge...6
Tutorial: Big Data Algorithms and Applications Under Hadoop KUNPENG ZHANG SIDDHARTHA BHATTACHARYYA
Tutorial: Big Data Algorithms and Applications Under Hadoop KUNPENG ZHANG SIDDHARTHA BHATTACHARYYA http://kzhang6.people.uic.edu/tutorial/amcis2014.html August 7, 2014 Schedule I. Introduction to big data
Hadoop Distributed File System. Dhruba Borthakur Apache Hadoop Project Management Committee [email protected] June 3 rd, 2008
Hadoop Distributed File System Dhruba Borthakur Apache Hadoop Project Management Committee [email protected] June 3 rd, 2008 Who Am I? Hadoop Developer Core contributor since Hadoop s infancy Focussed
Hadoop: A Framework for Data- Intensive Distributed Computing. CS561-Spring 2012 WPI, Mohamed Y. Eltabakh
1 Hadoop: A Framework for Data- Intensive Distributed Computing CS561-Spring 2012 WPI, Mohamed Y. Eltabakh 2 What is Hadoop? Hadoop is a software framework for distributed processing of large datasets
Big Data Management and NoSQL Databases
NDBI040 Big Data Management and NoSQL Databases Lecture 3. Apache Hadoop Doc. RNDr. Irena Holubova, Ph.D. [email protected] http://www.ksi.mff.cuni.cz/~holubova/ndbi040/ Apache Hadoop Open-source
Big Data With Hadoop
With Saurabh Singh [email protected] The Ohio State University February 11, 2016 Overview 1 2 3 Requirements Ecosystem Resilient Distributed Datasets (RDDs) Example Code vs Mapreduce 4 5 Source: [Tutorials
DATA MINING WITH HADOOP AND HIVE Introduction to Architecture
DATA MINING WITH HADOOP AND HIVE Introduction to Architecture Dr. Wlodek Zadrozny (Most slides come from Prof. Akella s class in 2014) 2015-2025. Reproduction or usage prohibited without permission of
Hadoop at Yahoo! Owen O Malley Yahoo!, Grid Team [email protected]
Hadoop at Yahoo! Owen O Malley Yahoo!, Grid Team [email protected] Who Am I? Yahoo! Architect on Hadoop Map/Reduce Design, review, and implement features in Hadoop Working on Hadoop full time since Feb
Introduction to Hadoop HDFS and Ecosystems. Slides credits: Cloudera Academic Partners Program & Prof. De Liu, MSBA 6330 Harvesting Big Data
Introduction to Hadoop HDFS and Ecosystems ANSHUL MITTAL Slides credits: Cloudera Academic Partners Program & Prof. De Liu, MSBA 6330 Harvesting Big Data Topics The goal of this presentation is to give
Hadoop and Map-Reduce. Swati Gore
Hadoop and Map-Reduce Swati Gore Contents Why Hadoop? Hadoop Overview Hadoop Architecture Working Description Fault Tolerance Limitations Why Map-Reduce not MPI Distributed sort Why Hadoop? Existing Data
Hadoop Ecosystem B Y R A H I M A.
Hadoop Ecosystem B Y R A H I M A. History of Hadoop Hadoop was created by Doug Cutting, the creator of Apache Lucene, the widely used text search library. Hadoop has its origins in Apache Nutch, an open
Hadoop and its Usage at Facebook. Dhruba Borthakur [email protected], June 22 rd, 2009
Hadoop and its Usage at Facebook Dhruba Borthakur [email protected], June 22 rd, 2009 Who Am I? Hadoop Developer Core contributor since Hadoop s infancy Focussed on Hadoop Distributed File System Facebook
CS54100: Database Systems
CS54100: Database Systems Cloud Databases: The Next Post- Relational World 18 April 2012 Prof. Chris Clifton Beyond RDBMS The Relational Model is too limiting! Simple data model doesn t capture semantics
Lecture 32 Big Data. 1. Big Data problem 2. Why the excitement about big data 3. What is MapReduce 4. What is Hadoop 5. Get started with Hadoop
Lecture 32 Big Data 1. Big Data problem 2. Why the excitement about big data 3. What is MapReduce 4. What is Hadoop 5. Get started with Hadoop 1 2 Big Data Problems Data explosion Data from users on social
RDMA for Apache Hadoop 0.9.9 User Guide
0.9.9 User Guide HIGH-PERFORMANCE BIG DATA TEAM http://hibd.cse.ohio-state.edu NETWORK-BASED COMPUTING LABORATORY DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING THE OHIO STATE UNIVERSITY Copyright (c)
MapReduce and Hadoop. Aaron Birkland Cornell Center for Advanced Computing. January 2012
MapReduce and Hadoop Aaron Birkland Cornell Center for Advanced Computing January 2012 Motivation Simple programming model for Big Data Distributed, parallel but hides this Established success at petabyte
Big Data Too Big To Ignore
Big Data Too Big To Ignore Geert! Big Data Consultant and Manager! Currently finishing a 3 rd Big Data project! IBM & Cloudera Certified! IBM & Microsoft Big Data Partner 2 Agenda! Defining Big Data! Introduction
Hadoop & its Usage at Facebook
Hadoop & its Usage at Facebook Dhruba Borthakur Project Lead, Hadoop Distributed File System [email protected] Presented at the The Israeli Association of Grid Technologies July 15, 2009 Outline Architecture
Introduction to MapReduce and Hadoop
Introduction to MapReduce and Hadoop Jie Tao Karlsruhe Institute of Technology [email protected] Die Kooperation von Why Map/Reduce? Massive data Can not be stored on a single machine Takes too long to process
Jeffrey D. Ullman slides. MapReduce for data intensive computing
Jeffrey D. Ullman slides MapReduce for data intensive computing Single-node architecture CPU Machine Learning, Statistics Memory Classical Data Mining Disk Commodity Clusters Web data sets can be very
Open source software framework designed for storage and processing of large scale data on clusters of commodity hardware
Open source software framework designed for storage and processing of large scale data on clusters of commodity hardware Created by Doug Cutting and Mike Carafella in 2005. Cutting named the program after
Cloudera Certified Developer for Apache Hadoop
Cloudera CCD-333 Cloudera Certified Developer for Apache Hadoop Version: 5.6 QUESTION NO: 1 Cloudera CCD-333 Exam What is a SequenceFile? A. A SequenceFile contains a binary encoding of an arbitrary number
Introduction to Hadoop
Introduction to Hadoop Miles Osborne School of Informatics University of Edinburgh [email protected] October 28, 2010 Miles Osborne Introduction to Hadoop 1 Background Hadoop Programming Model Examples
Big Data Course Highlights
Big Data Course Highlights The Big Data course will start with the basics of Linux which are required to get started with Big Data and then slowly progress from some of the basics of Hadoop/Big Data (like
Data-Intensive Computing with Hadoop. Thanks to: Milind Bhandarkar <[email protected]> Yahoo! Inc.
Data-Intensive Computing with Hadoop Thanks to: Milind Bhandarkar Yahoo! Inc. Agenda Hadoop Overview HDFS Programming Hadoop Architecture Examples Hadoop Streaming Performance Tuning
Apache Hadoop FileSystem and its Usage in Facebook
Apache Hadoop FileSystem and its Usage in Facebook Dhruba Borthakur Project Lead, Apache Hadoop Distributed File System [email protected] Presented at Indian Institute of Technology November, 2010 http://www.facebook.com/hadoopfs
CS2510 Computer Operating Systems
CS2510 Computer Operating Systems HADOOP Distributed File System Dr. Taieb Znati Computer Science Department University of Pittsburgh Outline HDF Design Issues HDFS Application Profile Block Abstraction
CS2510 Computer Operating Systems
CS2510 Computer Operating Systems HADOOP Distributed File System Dr. Taieb Znati Computer Science Department University of Pittsburgh Outline HDF Design Issues HDFS Application Profile Block Abstraction
Hadoop implementation of MapReduce computational model. Ján Vaňo
Hadoop implementation of MapReduce computational model Ján Vaňo What is MapReduce? A computational model published in a paper by Google in 2004 Based on distributed computation Complements Google s distributed
Systems Infrastructure for Data Science. Web Science Group Uni Freiburg WS 2012/13
Systems Infrastructure for Data Science Web Science Group Uni Freiburg WS 2012/13 Hadoop Ecosystem Overview of this Lecture Module Background Google MapReduce The Hadoop Ecosystem Core components: Hadoop
How To Scale Out Of A Nosql Database
Firebird meets NoSQL (Apache HBase) Case Study Firebird Conference 2011 Luxembourg 25.11.2011 26.11.2011 Thomas Steinmaurer DI +43 7236 3343 896 [email protected] www.scch.at Michael Zwick DI
COURSE CONTENT Big Data and Hadoop Training
COURSE CONTENT Big Data and Hadoop Training 1. Meet Hadoop Data! Data Storage and Analysis Comparison with Other Systems RDBMS Grid Computing Volunteer Computing A Brief History of Hadoop Apache Hadoop
Chapter 7. Using Hadoop Cluster and MapReduce
Chapter 7 Using Hadoop Cluster and MapReduce Modeling and Prototyping of RMS for QoS Oriented Grid Page 152 7. Using Hadoop Cluster and MapReduce for Big Data Problems The size of the databases used in
HDFS Architecture Guide
by Dhruba Borthakur Table of contents 1 Introduction... 3 2 Assumptions and Goals... 3 2.1 Hardware Failure... 3 2.2 Streaming Data Access...3 2.3 Large Data Sets... 3 2.4 Simple Coherency Model...3 2.5
Distributed Filesystems
Distributed Filesystems Amir H. Payberah Swedish Institute of Computer Science [email protected] April 8, 2014 Amir H. Payberah (SICS) Distributed Filesystems April 8, 2014 1 / 32 What is Filesystem? Controls
Extreme computing lab exercises Session one
Extreme computing lab exercises Session one Michail Basios ([email protected]) Stratis Viglas ([email protected]) 1 Getting started First you need to access the machine where you will be doing all
HDFS Under the Hood. Sanjay Radia. [email protected] Grid Computing, Hadoop Yahoo Inc.
HDFS Under the Hood Sanjay Radia [email protected] Grid Computing, Hadoop Yahoo Inc. 1 Outline Overview of Hadoop, an open source project Design of HDFS On going work 2 Hadoop Hadoop provides a framework
Hadoop & its Usage at Facebook
Hadoop & its Usage at Facebook Dhruba Borthakur Project Lead, Hadoop Distributed File System [email protected] Presented at the Storage Developer Conference, Santa Clara September 15, 2009 Outline Introduction
and HDFS for Big Data Applications Serge Blazhievsky Nice Systems
Introduction PRESENTATION to Hadoop, TITLE GOES MapReduce HERE and HDFS for Big Data Applications Serge Blazhievsky Nice Systems SNIA Legal Notice The material contained in this tutorial is copyrighted
Hadoop Architecture. Part 1
Hadoop Architecture Part 1 Node, Rack and Cluster: A node is simply a computer, typically non-enterprise, commodity hardware for nodes that contain data. Consider we have Node 1.Then we can add more nodes,
Introduction to HDFS. Prasanth Kothuri, CERN
Prasanth Kothuri, CERN 2 What s HDFS HDFS is a distributed file system that is fault tolerant, scalable and extremely easy to expand. HDFS is the primary distributed storage for Hadoop applications. HDFS
Data-Intensive Computing with Map-Reduce and Hadoop
Data-Intensive Computing with Map-Reduce and Hadoop Shamil Humbetov Department of Computer Engineering Qafqaz University Baku, Azerbaijan [email protected] Abstract Every day, we create 2.5 quintillion
Hadoop Job Oriented Training Agenda
1 Hadoop Job Oriented Training Agenda Kapil CK [email protected] Module 1 M o d u l e 1 Understanding Hadoop This module covers an overview of big data, Hadoop, and the Hortonworks Data Platform. 1.1 Module
Hadoop. Apache Hadoop is an open-source software framework for storage and large scale processing of data-sets on clusters of commodity hardware.
Hadoop Source Alessandro Rezzani, Big Data - Architettura, tecnologie e metodi per l utilizzo di grandi basi di dati, Apogeo Education, ottobre 2013 wikipedia Hadoop Apache Hadoop is an open-source software
t] open source Hadoop Beginner's Guide ij$ data avalanche Garry Turkington Learn how to crunch big data to extract meaning from
Hadoop Beginner's Guide Learn how to crunch big data to extract meaning from data avalanche Garry Turkington [ PUBLISHING t] open source I I community experience distilled ftu\ ij$ BIRMINGHAMMUMBAI ')
HDFS. Hadoop Distributed File System
HDFS Kevin Swingler Hadoop Distributed File System File system designed to store VERY large files Streaming data access Running across clusters of commodity hardware Resilient to node failure 1 Large files
Hadoop: The Definitive Guide
FOURTH EDITION Hadoop: The Definitive Guide Tom White Beijing Cambridge Famham Koln Sebastopol Tokyo O'REILLY Table of Contents Foreword Preface xvii xix Part I. Hadoop Fundamentals 1. Meet Hadoop 3 Data!
Overview. Big Data in Apache Hadoop. - HDFS - MapReduce in Hadoop - YARN. https://hadoop.apache.org. Big Data Management and Analytics
Overview Big Data in Apache Hadoop - HDFS - MapReduce in Hadoop - YARN https://hadoop.apache.org 138 Apache Hadoop - Historical Background - 2003: Google publishes its cluster architecture & DFS (GFS)
EXPERIMENTATION. HARRISON CARRANZA School of Computer Science and Mathematics
BIG DATA WITH HADOOP EXPERIMENTATION HARRISON CARRANZA Marist College APARICIO CARRANZA NYC College of Technology CUNY ECC Conference 2016 Poughkeepsie, NY, June 12-14, 2016 Marist College AGENDA Contents
A very short Intro to Hadoop
4 Overview A very short Intro to Hadoop photo by: exfordy, flickr 5 How to Crunch a Petabyte? Lots of disks, spinning all the time Redundancy, since disks die Lots of CPU cores, working all the time Retry,
Hadoop Distributed File System. T-111.5550 Seminar On Multimedia 2009-11-11 Eero Kurkela
Hadoop Distributed File System T-111.5550 Seminar On Multimedia 2009-11-11 Eero Kurkela Agenda Introduction Flesh and bones of HDFS Architecture Accessing data Data replication strategy Fault tolerance
Design and Evolution of the Apache Hadoop File System(HDFS)
Design and Evolution of the Apache Hadoop File System(HDFS) Dhruba Borthakur Engineer@Facebook Committer@Apache HDFS SDC, Sept 19 2011 Outline Introduction Yet another file-system, why? Goals of Hadoop
Programming Hadoop 5-day, instructor-led BD-106. MapReduce Overview. Hadoop Overview
Programming Hadoop 5-day, instructor-led BD-106 MapReduce Overview The Client Server Processing Pattern Distributed Computing Challenges MapReduce Defined Google's MapReduce The Map Phase of MapReduce
COSC 6397 Big Data Analytics. 2 nd homework assignment Pig and Hive. Edgar Gabriel Spring 2015
COSC 6397 Big Data Analytics 2 nd homework assignment Pig and Hive Edgar Gabriel Spring 2015 2 nd Homework Rules Each student should deliver Source code (.java files) Documentation (.pdf,.doc,.tex or.txt
Data-Intensive Programming. Timo Aaltonen Department of Pervasive Computing
Data-Intensive Programming Timo Aaltonen Department of Pervasive Computing Data-Intensive Programming Lecturer: Timo Aaltonen University Lecturer [email protected] Assistants: Henri Terho and Antti
Large scale processing using Hadoop. Ján Vaňo
Large scale processing using Hadoop Ján Vaňo What is Hadoop? Software platform that lets one easily write and run applications that process vast amounts of data Includes: MapReduce offline computing engine
TP1: Getting Started with Hadoop
TP1: Getting Started with Hadoop Alexandru Costan MapReduce has emerged as a leading programming model for data-intensive computing. It was originally proposed by Google to simplify development of web
Hadoop MapReduce and Spark. Giorgio Pedrazzi, CINECA-SCAI School of Data Analytics and Visualisation Milan, 10/06/2015
Hadoop MapReduce and Spark Giorgio Pedrazzi, CINECA-SCAI School of Data Analytics and Visualisation Milan, 10/06/2015 Outline Hadoop Hadoop Import data on Hadoop Spark Spark features Scala MLlib MLlib
Internals of Hadoop Application Framework and Distributed File System
International Journal of Scientific and Research Publications, Volume 5, Issue 7, July 2015 1 Internals of Hadoop Application Framework and Distributed File System Saminath.V, Sangeetha.M.S Abstract- Hadoop
5 HDFS - Hadoop Distributed System
5 HDFS - Hadoop Distributed System 5.1 Definition and Remarks HDFS is a file system designed for storing very large files with streaming data access patterns running on clusters of commoditive hardware.
Big Data and Analytics by Seema Acharya and Subhashini Chellappan Copyright 2015, WILEY INDIA PVT. LTD. Introduction to Pig
Introduction to Pig Agenda What is Pig? Key Features of Pig The Anatomy of Pig Pig on Hadoop Pig Philosophy Pig Latin Overview Pig Latin Statements Pig Latin: Identifiers Pig Latin: Comments Data Types
Lecture 5: GFS & HDFS! Claudia Hauff (Web Information Systems)! [email protected]
Big Data Processing, 2014/15 Lecture 5: GFS & HDFS!! Claudia Hauff (Web Information Systems)! [email protected] 1 Course content Introduction Data streams 1 & 2 The MapReduce paradigm Looking behind
Certified Big Data and Apache Hadoop Developer VS-1221
Certified Big Data and Apache Hadoop Developer VS-1221 Certified Big Data and Apache Hadoop Developer Certification Code VS-1221 Vskills certification for Big Data and Apache Hadoop Developer Certification
Open source Google-style large scale data analysis with Hadoop
Open source Google-style large scale data analysis with Hadoop Ioannis Konstantinou Email: [email protected] Web: http://www.cslab.ntua.gr/~ikons Computing Systems Laboratory School of Electrical
Extreme computing lab exercises Session one
Extreme computing lab exercises Session one Miles Osborne (original: Sasa Petrovic) October 23, 2012 1 Getting started First you need to access the machine where you will be doing all the work. Do this
GraySort and MinuteSort at Yahoo on Hadoop 0.23
GraySort and at Yahoo on Hadoop.23 Thomas Graves Yahoo! May, 213 The Apache Hadoop[1] software library is an open source framework that allows for the distributed processing of large data sets across clusters
COSC 6397 Big Data Analytics. Distributed File Systems (II) Edgar Gabriel Spring 2014. HDFS Basics
COSC 6397 Big Data Analytics Distributed File Systems (II) Edgar Gabriel Spring 2014 HDFS Basics An open-source implementation of Google File System Assume that node failure rate is high Assumes a small
Comparative analysis of mapreduce job by keeping data constant and varying cluster size technique
Comparative analysis of mapreduce job by keeping data constant and varying cluster size technique Mahesh Maurya a, Sunita Mahajan b * a Research Scholar, JJT University, MPSTME, Mumbai, India,[email protected]
HADOOP MOCK TEST HADOOP MOCK TEST II
http://www.tutorialspoint.com HADOOP MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to Hadoop Framework. You can download these sample mock tests at
BIG DATA HANDS-ON WORKSHOP Data Manipulation with Hive and Pig
BIG DATA HANDS-ON WORKSHOP Data Manipulation with Hive and Pig Contents Acknowledgements... 1 Introduction to Hive and Pig... 2 Setup... 2 Exercise 1 Load Avro data into HDFS... 2 Exercise 2 Define an
Hadoop Introduction. Olivier Renault Solution Engineer - Hortonworks
Hadoop Introduction Olivier Renault Solution Engineer - Hortonworks Hortonworks A Brief History of Apache Hadoop Apache Project Established Yahoo! begins to Operate at scale Hortonworks Data Platform 2013
Introduction to HDFS. Prasanth Kothuri, CERN
Prasanth Kothuri, CERN 2 What s HDFS HDFS is a distributed file system that is fault tolerant, scalable and extremely easy to expand. HDFS is the primary distributed storage for Hadoop applications. Hadoop
THE HADOOP DISTRIBUTED FILE SYSTEM
THE HADOOP DISTRIBUTED FILE SYSTEM Konstantin Shvachko, Hairong Kuang, Sanjay Radia, Robert Chansler Presented by Alexander Pokluda October 7, 2013 Outline Motivation and Overview of Hadoop Architecture,
MapReduce with Apache Hadoop Analysing Big Data
MapReduce with Apache Hadoop Analysing Big Data April 2010 Gavin Heavyside [email protected] About Journey Dynamics Founded in 2006 to develop software technology to address the issues
Apache Hadoop FileSystem Internals
Apache Hadoop FileSystem Internals Dhruba Borthakur Project Lead, Apache Hadoop Distributed File System [email protected] Presented at Storage Developer Conference, San Jose September 22, 2010 http://www.facebook.com/hadoopfs
Weekly Report. Hadoop Introduction. submitted By Anurag Sharma. Department of Computer Science and Engineering. Indian Institute of Technology Bombay
Weekly Report Hadoop Introduction submitted By Anurag Sharma Department of Computer Science and Engineering Indian Institute of Technology Bombay Chapter 1 What is Hadoop? Apache Hadoop (High-availability
Complete Java Classes Hadoop Syllabus Contact No: 8888022204
1) Introduction to BigData & Hadoop What is Big Data? Why all industries are talking about Big Data? What are the issues in Big Data? Storage What are the challenges for storing big data? Processing What
Welcome to the unit of Hadoop Fundamentals on Hadoop architecture. I will begin with a terminology review and then cover the major components
Welcome to the unit of Hadoop Fundamentals on Hadoop architecture. I will begin with a terminology review and then cover the major components of Hadoop. We will see what types of nodes can exist in a Hadoop
Peers Techno log ies Pv t. L td. HADOOP
Page 1 Peers Techno log ies Pv t. L td. Course Brochure Overview Hadoop is a Open Source from Apache, which provides reliable storage and faster process by using the Hadoop distibution file system and
HowTo Hadoop. Devaraj Das
HowTo Hadoop Devaraj Das Hadoop http://hadoop.apache.org/core/ Hadoop Distributed File System Fault tolerant, scalable, distributed storage system Designed to reliably store very large files across machines
Big Data and Apache Hadoop s MapReduce
Big Data and Apache Hadoop s MapReduce Michael Hahsler Computer Science and Engineering Southern Methodist University January 23, 2012 Michael Hahsler (SMU/CSE) Hadoop/MapReduce January 23, 2012 1 / 23
