SlideShare uma empresa Scribd logo
1 de 69
Baixar para ler offline
1
Headline	
  Goes	
  Here	
  
Speaker	
  Name	
  or	
  Subhead	
  Goes	
  Here	
  
DO	
  NOT	
  USE	
  PUBLICLY	
  
PRIOR	
  TO	
  10/23/12	
  
ApplicaAon	
  Architectures	
  with	
  
Hadoop	
  
Mark	
  Grover	
  |	
  SoGware	
  Engineer	
  
Jonathan	
  Seidman	
  	
  |	
  SoluAons	
  Architect,	
  Partner	
  
Engineering	
  
April	
  1,	
  2014	
  
©2014 Cloudera, Inc. All Rights
Reserved.
About	
  Us	
  
•  Mark	
  
•  CommiOer	
  on	
  Apache	
  Bigtop,	
  commiOer	
  and	
  PPMC	
  member	
  on	
  Apache	
  
Sentry	
  (incubaAng).	
  
•  Contributor	
  to	
  Hadoop,	
  Hive,	
  Spark,	
  Sqoop,	
  Flume.	
  
•  @mark_grover	
  
•  Jonathan	
  
•  SoluAons	
  Architect,	
  Partner	
  Engineering	
  Team.	
  
•  Co-­‐founder	
  of	
  Chicago	
  Hadoop	
  User	
  Group	
  and	
  Chicago	
  Big	
  Data.	
  
•  jseidman@cloudera.com	
  
•  @jseidman	
  
2
©2014 Cloudera, Inc. All Rights
Reserved.
Co-­‐authoring	
  O’Reilly	
  book	
  
•  Titled	
  ‘Hadoop	
  ApplicaAon	
  Architectures’	
  
•  How	
  to	
  build	
  end-­‐to-­‐end	
  soluAons	
  using	
  	
  
Apache	
  Hadoop	
  and	
  related	
  tools	
  
•  Updates	
  on	
  TwiOer:	
  @hadooparchbook	
  
•  hOp://www.hadooparchitecturebook.com	
  
©2014 Cloudera, Inc. All Rights
Reserved.
3
Challenges	
  of	
  Hadoop	
  ImplementaAon	
  
4	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Challenges	
  of	
  Hadoop	
  ImplementaAon	
  
5	
  
©2014 Cloudera, Inc. All Rights
Reserved.
6
Click	
  Stream	
  Analysis	
  
Case	
  Study	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Click	
  Stream	
  Analysis	
  
7	
  
Log	
  
Files	
  
DWH	
  
X	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Web	
  Log	
  Example	
  
©2014 Cloudera, Inc. All Rights
Reserved.
8	
  
[2012/09/22 20:56:04.294 -0500] "GET /info/ HTTP/1.1" 200 701 "-"
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en)"
"age=38&gender=1&incomeCategory=5&session=983040389&user=627735038&
region=8&userType=1”
[2012/09/23 14:12:52.294 -0500] "GET /wish/remove/275 HTTP/1.1" 200
701 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us)
AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16"
"age=63&gender=1&incomeCategory=1&session=1561203915&user=136433448
8&region=4&userType=1"
Hadoop	
  Architectural	
  ConsideraAons	
  	
  
•  Storage	
  managers?	
  
•  HDFS?	
  HBase?	
  
•  Data	
  storage	
  and	
  modeling:	
  
•  File	
  formats?	
  Compression?	
  Schema	
  design?	
  
•  Data	
  movement	
  
•  How	
  do	
  we	
  actually	
  get	
  the	
  data	
  into	
  Hadoop?	
  How	
  do	
  we	
  get	
  it	
  out?	
  
•  Metadata	
  
•  How	
  do	
  we	
  manage	
  data	
  about	
  the	
  data?	
  
•  Data	
  access	
  and	
  processing	
  
•  How	
  will	
  the	
  data	
  be	
  accessed	
  once	
  in	
  Hadoop?	
  How	
  can	
  we	
  transform	
  it?	
  How	
  do	
  
we	
  query	
  it?	
  
•  OrchestraAon	
  
•  How	
  do	
  we	
  manage	
  the	
  workflow	
  for	
  all	
  of	
  this?	
  
9
©2014 Cloudera, Inc. All Rights
Reserved.
10
Data	
  Storage	
  and	
  Modeling	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  Storage	
  Manager	
  consideraAons	
  
•  Popular	
  storage	
  managers	
  for	
  Hadoop	
  
•  Hadoop	
  Distributed	
  File	
  System	
  (HDFS)	
  
•  HBase	
  
11
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  HDFS	
  vs	
  HBase	
  
HDFS	
  
•  Stores	
  data	
  directly	
  as	
  files	
  
•  Fast	
  scans	
  
•  Poor	
  random	
  reads/writes	
  
HBase	
  
•  Stores	
  data	
  as	
  Hfiles	
  on	
  HDFS	
  
•  Slow	
  scans	
  
•  Fast	
  random	
  reads/writes	
  
12	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  Storage	
  Manager	
  consideraAons	
  
•  We	
  choose	
  HDFS	
  
•  AnalyAcal	
  needs	
  in	
  this	
  case	
  served	
  beOer	
  by	
  fast	
  scans.	
  
13
©2014 Cloudera, Inc. All Rights
Reserved.
14
Data	
  Storage	
  Format	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  Format	
  ConsideraAons	
  	
  
•  Store	
  as	
  plain	
  text?	
  
•  Sure,	
  well	
  supported	
  by	
  Hadoop.	
  
•  Text	
  can	
  easily	
  be	
  processed	
  by	
  MapReduce,	
  loaded	
  into	
  Hive	
  for	
  
analysis,	
  and	
  so	
  on.	
  
•  But…	
  
•  Will	
  begin	
  to	
  consume	
  lots	
  of	
  space	
  in	
  HDFS.	
  
•  May	
  not	
  be	
  opAmal	
  for	
  processing	
  by	
  tools	
  in	
  the	
  Hadoop	
  
ecosystem.	
  
15
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  Format	
  ConsideraAons	
  	
  
•  But,	
  we	
  can	
  compress	
  the	
  text	
  files…	
  
•  Gzip	
  –	
  supported	
  by	
  Hadoop,	
  but	
  not	
  spliOable.	
  
•  Bzip2	
  –	
  hey,	
  spliOable!	
  Great	
  compression!	
  But	
  decompression	
  is	
  
slooowww.	
  
•  LZO	
  –	
  spliOable	
  (with	
  some	
  work),	
  good	
  compress/de-­‐compress	
  
performance.	
  Good	
  choice	
  for	
  storing	
  text	
  files	
  on	
  Hadoop.	
  	
  
•  Snappy	
  –	
  provides	
  a	
  good	
  tradeoff	
  between	
  size	
  and	
  speed.	
  	
  
16
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Storage	
  –	
  More	
  About	
  Snappy	
  
•  Designed	
  at	
  Google	
  to	
  provide	
  high	
  compression	
  speeds	
  with	
  
reasonable	
  compression.	
  
•  Not	
  the	
  highest	
  compression,	
  but	
  provides	
  very	
  good	
  performance	
  
for	
  processing	
  on	
  Hadoop.	
  
•  Snappy	
  is	
  not	
  spliOable	
  though,	
  which	
  brings	
  us	
  to…	
  
	
  
17
©2014 Cloudera, Inc. All Rights
Reserved.
SequenceFile	
  
• Stores	
  records	
  as	
  binary	
  
key/value	
  pairs.	
  
• SequenceFile	
  “blocks”	
  
can	
  be	
  compressed.	
  
• This	
  enables	
  spliOability	
  
with	
  non-­‐spliOable	
  
compression.	
  	
  	
  
18	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Avro	
  
•  Kinda	
  SequenceFile	
  on	
  
Steroids.	
  
•  Self-­‐documenAng	
  –	
  stores	
  
schema	
  in	
  header.	
  
•  Provides	
  very	
  efficient	
  
storage.	
  
•  Supports	
  spliOable	
  
compression.	
  
19	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Our	
  Format	
  Choices…	
  
•  Avro	
  with	
  Snappy	
  
•  Snappy	
  provides	
  opAmized	
  compression.	
  
•  Avro	
  provides	
  compact	
  storage,	
  self-­‐documenAng	
  files,	
  and	
  
supports	
  schema	
  evoluAon.	
  
•  Avro	
  also	
  provides	
  beOer	
  failure	
  handling	
  than	
  other	
  choices.	
  
•  SequenceFiles	
  would	
  also	
  be	
  a	
  good	
  choice,	
  and	
  are	
  directly	
  
supported	
  by	
  ingesAon	
  tools	
  in	
  the	
  ecosystem.	
  
•  But	
  only	
  supports	
  Java.	
  
20
©2014 Cloudera, Inc. All Rights
Reserved.
21
HDFS	
  Schema	
  Design	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Recommended	
  HDFS	
  Schema	
  Design	
  
•  How	
  to	
  lay	
  out	
  data	
  on	
  HDFS?	
  
22
©2014 Cloudera, Inc. All Rights
Reserved.
Recommended	
  HDFS	
  Schema	
  Design	
  
/user/<username>	
  -­‐	
  User	
  specific	
  data,	
  jars,	
  conf	
  files	
  
/etl	
  –	
  Data	
  in	
  various	
  stages	
  of	
  ETL	
  workflow	
  
/tmp	
  –	
  temp	
  data	
  from	
  tools	
  or	
  shared	
  between	
  users	
  
/data	
  –	
  shared	
  data	
  for	
  the	
  enAre	
  organizaAon	
  
/app	
  –	
  Everything	
  but	
  data:	
  UDF	
  jars,	
  HQL	
  files,	
  Oozie	
  workflows	
  
23
©2014 Cloudera, Inc. All Rights
Reserved.
24
Advanced	
  HDFS	
  Schema	
  Design	
  
©2014 Cloudera, Inc. All Rights
Reserved.
What	
  is	
  ParAAoning?	
  
25
dataset	
  
	
  	
  	
  col=val1/file.txt	
  
	
  	
  	
  col=val2/file.txt	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  col=valn/file.txt	
  
dataset	
  
	
  	
  file1.txt	
  
	
  	
  file2.txt	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  filen.txt	
  
Un-­‐parAAoned	
  HDFS	
  
directory	
  structure	
  
ParAAoned	
  HDFS	
  directory	
  
structure	
  
©2014 Cloudera, Inc. All Rights
Reserved.
What	
  is	
  ParAAoning?	
  
26
clicks	
  
	
  	
  	
  dt=2014-­‐01-­‐01/clicks.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐02/clicks.txt	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  dt=2014-­‐03-­‐31/clicks.txt	
  
clicks	
  
	
  	
  clicks-­‐2014-­‐01-­‐01.txt	
  
	
  	
  clicks-­‐2014-­‐01-­‐02.txt	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  	
  .	
  
	
  	
  	
  clicks-­‐2014-­‐03-­‐31.txt	
  
Un-­‐parAAoned	
  HDFS	
  
directory	
  structure	
  
ParAAoned	
  HDFS	
  directory	
  
structure	
  
©2014 Cloudera, Inc. All Rights
Reserved.
ParAAoning	
  
•  Split	
  the	
  dataset	
  into	
  smaller	
  consumable	
  chunks	
  
•  Rudimentary	
  form	
  of	
  “indexing”	
  
•  <data	
  set	
  name>/
<parAAon_column_name=parAAon_column_value>/{files}	
  
27
©2014 Cloudera, Inc. All Rights
Reserved.
ParAAoning	
  consideraAons	
  
•  What	
  column	
  to	
  bucket	
  by?	
  
•  HDFS	
  is	
  append	
  only.	
  
•  Don’t	
  have	
  too	
  many	
  parAAons	
  (<10,000)	
  
•  Don’t	
  have	
  too	
  many	
  small	
  files	
  in	
  the	
  parAAons	
  (more	
  than	
  
block	
  size	
  generally)	
  
•  We	
  decided	
  to	
  parAAon	
  by	
  1mestamp	
  
28
©2014 Cloudera, Inc. All Rights
Reserved.
What	
  is	
  buckeAng?	
  
29
clicks	
  
	
  	
  	
  dt=2014-­‐01-­‐01/clicks.txt	
  
	
  
	
  	
  	
  dt=2014-­‐01-­‐02/clicks.txt	
  
Un-­‐bucketed	
  HDFS	
  
directory	
  structure	
  
clicks	
  
	
  	
  	
  dt=2014-­‐01-­‐01/file0.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐01/file1.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐01/file2.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐01/file3.txt	
  
	
  
	
  	
  	
  dt=2014-­‐01-­‐02/file0.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐02/file1.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐02/file2.txt	
  
	
  	
  	
  dt=2014-­‐01-­‐02/file3.txt	
  
Bucketed	
  HDFS	
  directory	
  
structure	
  
©2014 Cloudera, Inc. All Rights
Reserved.
BuckeAng	
  
•  Hash-­‐bucketed	
  files	
  within	
  each	
  parAAon	
  based	
  on	
  a	
  parAcular	
  
column	
  
•  Useful	
  when	
  sampling	
  
•  In	
  some	
  joins,	
  pre-­‐reqs:	
  
•  Datasets	
  bucketed	
  on	
  the	
  same	
  key	
  as	
  the	
  join	
  key	
  
•  Number	
  of	
  buckets	
  are	
  the	
  same	
  or	
  one	
  is	
  a	
  mulAple	
  of	
  the	
  other	
  
30
©2014 Cloudera, Inc. All Rights
Reserved.
BuckeAng	
  consideraAons?	
  
•  Which	
  column	
  to	
  bucket	
  on?	
  
•  How	
  many	
  buckets?	
  
•  We	
  decided	
  to	
  bucket	
  based	
  on	
  cookie	
  
31
©2014 Cloudera, Inc. All Rights
Reserved.
De-­‐normalizing	
  consideraAons	
  
•  In	
  general,	
  big	
  data	
  joins	
  are	
  expensive	
  
•  When	
  to	
  de-­‐normalize?	
  
•  Decided	
  to	
  join	
  the	
  smaller	
  dimension	
  tables	
  
•  Big	
  fact	
  tables	
  are	
  sAll	
  joined	
  
32
©2014 Cloudera, Inc. All Rights
Reserved.
33
Data	
  IngesAon	
  
©2014 Cloudera, Inc. All Rights
Reserved.
File	
  Transfers	
  	
  
• “hadoop	
  fs	
  –put	
  <file>”	
  
• Reliable,	
  but	
  not	
  resilient	
  
to	
  failure.	
  
• Other	
  opAons	
  are	
  
mountable	
  HDFS,	
  for	
  
example	
  NFSv3.	
  
34	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Streaming	
  IngesAon	
  
•  Flume	
  
•  Reliable,	
  distributed,	
  and	
  available	
  system	
  for	
  efficient	
  collecAon,	
  
aggregaAon	
  and	
  movement	
  of	
  streaming	
  data,	
  e.g.	
  logs.	
  
•  Ka{a	
  
•  Reliable	
  and	
  distributed	
  publish-­‐subscribe	
  messaging	
  system.	
  
35
©2014 Cloudera, Inc. All Rights
Reserved.
Flume	
  vs.	
  Ka{a	
  
• Purpose	
  built	
  for	
  Hadoop	
  
data	
  ingest.	
  
• Pre-­‐built	
  sinks	
  for	
  HDFS,	
  
HBase,	
  etc.	
  
• Supports	
  transformaAon	
  
of	
  data	
  in-­‐flight.	
  
• General	
  pub-­‐sub	
  
messaging	
  framework.	
  
• Hadoop	
  not	
  supported,	
  
requires	
  3rd-­‐party	
  
component	
  (Camus).	
  
• Just	
  a	
  message	
  transport	
  
(a	
  very	
  fast	
  one).	
  
36	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Flume	
  vs.	
  Ka{a	
  
•  BoOom	
  line:	
  
•  Flume	
  very	
  well	
  integrated	
  with	
  Hadoop	
  ecosystem,	
  well	
  suited	
  
to	
  ingesAon	
  of	
  sources	
  such	
  as	
  log	
  files.	
  
•  Ka{a	
  is	
  a	
  highly	
  reliable	
  and	
  scalable	
  enterprise	
  messaging	
  
system,	
  and	
  great	
  for	
  scaling	
  out	
  to	
  mulAple	
  consumers.	
  
37
©2014 Cloudera, Inc. All Rights
Reserved.
A	
  Quick	
  IntroducAon	
  to	
  Flume	
  
38	
  
Flume	
  Agent	
  
Source	
   Channel	
   Sink	
   DesAnaAon	
  External	
  
Source	
  
Web	
  Server	
  
TwiOer	
  
JMS	
  
System	
  logs	
  
…	
  
Consumes	
  events	
  
and	
  forwards	
  to	
  
channels	
  
Stores	
  events	
  
unAl	
  consumed	
  
by	
  sinks	
  –	
  file,	
  
memory,	
  JDBC	
  
Removes	
  event	
  from	
  
channel	
  and	
  puts	
  
into	
  external	
  
desAnaAon	
  
JVM	
  	
  process	
  hosAng	
  components	
  
©2014 Cloudera, Inc. All Rights
Reserved.
A	
  Quick	
  IntroducAon	
  to	
  Flume	
  
•  Reliable	
  –	
  events	
  are	
  stored	
  in	
  channel	
  unAl	
  delivered	
  to	
  next	
  stage.	
  
•  Recoverable	
  –	
  events	
  can	
  be	
  persisted	
  to	
  disk	
  and	
  recovered	
  in	
  the	
  
event	
  of	
  failure.	
  
39
Flume	
  Agent	
  
Source	
   Channel	
   Sink	
   DesAnaAon	
  
©2014 Cloudera, Inc. All Rights
Reserved.
A	
  Quick	
  IntroducAon	
  to	
  Flume	
  
• DeclaraAve	
  	
  
•  No	
  coding	
  required.	
  
•  ConfiguraAon	
  specifies	
  
how	
  components	
  are	
  
wired	
  together.	
  
40	
  
©2014 Cloudera, Inc. All Rights
Reserved.
A	
  Brief	
  Discussion	
  of	
  Flume	
  PaOerns	
  –	
  Fan-­‐in	
  
• Flume	
  agent	
  runs	
  on	
  
each	
  of	
  our	
  servers.	
  
• These	
  agents	
  send	
  data	
  
to	
  mulAple	
  agents	
  to	
  
provide	
  reliability.	
  
• Flume	
  provides	
  support	
  
for	
  load	
  balancing.	
  
41	
  
©2014 Cloudera, Inc. All Rights
Reserved.
A	
  Brief	
  Discussion	
  of	
  Flume	
  PaOerns	
  –	
  Spli~ng	
  
•  Common	
  need	
  is	
  to	
  split	
  
data	
  on	
  ingest.	
  
•  For	
  example:	
  
•  Sending	
  data	
  to	
  mulAple	
  
clusters	
  for	
  DR.	
  
•  To	
  mulAple	
  desAnaAons.	
  
•  Flume	
  also	
  supports	
  
parAAoning,	
  which	
  is	
  key	
  
to	
  our	
  implementaAon.	
  
42	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Sqoop	
  Overview	
  
•  Apache	
  project	
  designed	
  to	
  ease	
  import	
  and	
  export	
  of	
  data	
  
between	
  Hadoop	
  and	
  external	
  data	
  stores	
  such	
  as	
  relaAonal	
  
databases.	
  
•  Great	
  for	
  doing	
  bulk	
  imports	
  and	
  exports	
  of	
  data	
  between	
  
HDFS,	
  Hive	
  and	
  HBase	
  and	
  an	
  external	
  data	
  store.	
  Not	
  suited	
  
for	
  ingesAng	
  event	
  based	
  data.	
  
©2014 Cloudera, Inc. All Rights
Reserved.
43
IngesAon	
  Decisions	
  
•  Historical	
  Data	
  
•  Smaller	
  files:	
  file	
  transfer	
  
•  Larger	
  files:	
  Flume	
  with	
  spooling	
  directory	
  source.	
  
•  Incoming	
  Data	
  
•  Flume	
  with	
  the	
  spooling	
  directory	
  source.	
  
44
©2014 Cloudera, Inc. All Rights
Reserved.
45
Data	
  Processing	
  and	
  Access	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  flow	
  
46	
  
Raw	
  data	
  
ParAAoned	
  
clickstream	
  
data	
  
Other	
  data	
  
(Financial,	
  
CRM,	
  etc.)	
  
Aggregated	
  
dataset	
  #2	
  
Aggregated	
  
dataset	
  #1	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  processing	
  tools	
  
47	
  
•  Hive	
  
•  Impala	
  
•  Pig,	
  etc.	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Hive	
  
48	
  
•  Open	
  source	
  data	
  warehouse	
  system	
  for	
  Hadoop	
  
•  Converts	
  SQL-­‐like	
  queries	
  to	
  MapReduce	
  jobs	
  
•  Work	
  is	
  being	
  done	
  to	
  move	
  this	
  away	
  from	
  MR	
  
•  Stores	
  metadata	
  in	
  Hive	
  metastore	
  
•  Can	
  create	
  tables	
  over	
  HDFS	
  or	
  HBase	
  data	
  
•  Access	
  available	
  via	
  JDBC/ODBC	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Impala	
  
49	
  
•  Real-­‐Ame	
  open	
  source	
  SQL	
  query	
  engine	
  for	
  Hadoop	
  
•  Doesn’t	
  build	
  on	
  MapReduce	
  
•  WriOen	
  in	
  C++,	
  uses	
  LLVM	
  for	
  run-­‐Ame	
  code	
  generaAon	
  
•  Can	
  create	
  tables	
  over	
  HDFS	
  or	
  HBase	
  data	
  
•  Accesses	
  Hive	
  metastore	
  for	
  metadata	
  
•  Access	
  available	
  via	
  JDBC/ODBC	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Pig	
  
50	
  
•  Higher	
  level	
  abstracAon	
  over	
  MapReduce	
  (like	
  Hive)	
  
•  Write	
  transformaAons	
  in	
  scripAng	
  language	
  –	
  Pig	
  LaAn	
  
•  Can	
  access	
  Hive	
  metastore	
  via	
  HCatalog	
  for	
  metadata	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Data	
  Processing	
  consideraAons	
  
51	
  
•  We	
  chose	
  Hive	
  for	
  ETL	
  	
  and	
  Impala	
  for	
  interac1ve	
  BI.	
  
©2014 Cloudera, Inc. All Rights
Reserved.
52
Metadata	
  Management	
  
©2014 Cloudera, Inc. All Rights
Reserved.
What	
  is	
  Metadata?	
  
53	
  
•  Metadata	
  is	
  data	
  about	
  the	
  data	
  
•  Format	
  in	
  which	
  data	
  is	
  stored	
  
•  Compression	
  codec	
  
•  LocaAon	
  of	
  the	
  data	
  
•  Is	
  the	
  data	
  parAAoned/bucketed/sorted?	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Metadata	
  in	
  Hive	
  
54
Hive	
  
Metastore	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Metadata	
  
55	
  
•  Hive	
  metastore	
  has	
  become	
  the	
  de-­‐facto	
  metadata	
  repository	
  
•  HCatalog	
  makes	
  Hive	
  metastore	
  accessible	
  to	
  other	
  
applicaAons	
  (Pig,	
  MapReduce,	
  custom	
  apps,	
  etc.)	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Hive	
  +	
  HCatalog	
  
56	
  
©2014 Cloudera, Inc. All Rights
Reserved.
57
OrchestraAon	
  
©2014 Cloudera, Inc. All Rights
Reserved.
OrchestraAon	
  
•  Once	
  the	
  data	
  is	
  in	
  Hadoop,	
  we	
  need	
  a	
  way	
  to	
  manage	
  
workflows	
  in	
  our	
  architecture.	
  
•  Scheduling	
  and	
  tracking	
  MapReduce	
  jobs,	
  Hive	
  jobs,	
  etc.	
  
•  Several	
  opAons	
  here:	
  
•  Cron	
  
•  Oozie,	
  Azkaban	
  
•  3rd-­‐party	
  tools,	
  Talend,	
  Pentaho,	
  InformaAca,	
  enterprise	
  
schedulers.	
  
58
©2014 Cloudera, Inc. All Rights
Reserved.
Oozie	
  
• Supports	
  defining	
  and	
  
execuAng	
  a	
  sequence	
  of	
  
jobs.	
  
• Can	
  trigger	
  jobs	
  based	
  on	
  
external	
  dependencies	
  or	
  
schedules.	
  
59	
  
©2014 Cloudera, Inc. All Rights
Reserved.
60
Final	
  Architecture	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  High	
  Level	
  Overview	
  
61	
  
Data	
  
Sources	
  
IngesAon	
  
Data	
  
Storage/
Processing	
  
Data	
  
ReporAng/
Analysis	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  High	
  Level	
  Overview	
  
62	
  
Data	
  
Sources	
  
IngesAon	
  
Data	
  
Storage/
Processing	
  
Data	
  
ReporAng/
Analysis	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  IngesAon	
  
63	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Web	
  App	
   Avro	
  Agent	
  
Flume	
  Agent	
  
Flume	
  Agent	
  
Flume	
  Agent	
  
Flume	
  Agent	
  
Fan-­‐in	
  	
  
PaOern	
  
MulA	
  Agents	
  for	
  	
  
Failover	
  and	
  rolling	
  restarts	
  
HDFS	
  	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  High	
  Level	
  Overview	
  
64	
  
Data	
  
Sources	
  
IngesAon	
  
Data	
  
Storage/
Processing	
  
Data	
  
ReporAng/
Analysis	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  Storage	
  and	
  Processing	
  
65	
  
/etl/weblogs/20140331/	
  
/etl/weblogs/20140401/	
  
…	
  
Data	
  Processing	
  
/data/markeAng/clickstream/bouncerate/	
  
/data/markeAng/clickstream/aOribuAon/	
  
…	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  High	
  Level	
  Overview	
  
66	
  
Data	
  
Sources	
  
IngesAon	
  
Data	
  
Storage/
Processing	
  
Data	
  
ReporAng/
Analysis	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Final	
  Architecture	
  –	
  Data	
  Access	
  
67	
  
Hive/
Impala	
  
BI/
AnalyAcs	
  
Tools	
  
DWH	
  
Sqoop	
  
Local	
  
Disk	
  
R,	
  etc.	
  
DB	
  import	
  tool	
  
JDBC/ODBC	
  
©2014 Cloudera, Inc. All Rights
Reserved.
Contact	
  info	
  
•  Mark	
  Grover	
  
•  @mark_grover	
  
•  www.linkedin.com/in/grovermark	
  
•  Jonathan	
  Seidman	
  
•  jseidman@cloudera.com	
  
•  @jseidman	
  
•  hOps://www.linkedin.com/pub/jonathan-­‐seidman/1/26a/959	
  
•  hOp://www.slideshare.net/jseidman	
  
•  Slides	
  at	
  slideshare.net/hadooparchbook	
  
68
©2014 Cloudera, Inc. All Rights
Reserved.
69
©2014 Cloudera, Inc. All Rights
Reserved.

Mais conteúdo relacionado

Mais procurados

Architectural Patterns for Streaming Applications
Architectural Patterns for Streaming ApplicationsArchitectural Patterns for Streaming Applications
Architectural Patterns for Streaming Applicationshadooparchbook
 
Fraud Detection using Hadoop
Fraud Detection using HadoopFraud Detection using Hadoop
Fraud Detection using Hadoophadooparchbook
 
Architecting application with Hadoop - using clickstream analytics as an example
Architecting application with Hadoop - using clickstream analytics as an exampleArchitecting application with Hadoop - using clickstream analytics as an example
Architecting application with Hadoop - using clickstream analytics as an examplehadooparchbook
 
SQL Engines for Hadoop - The case for Impala
SQL Engines for Hadoop - The case for ImpalaSQL Engines for Hadoop - The case for Impala
SQL Engines for Hadoop - The case for Impalamarkgrover
 
Hadoop Application Architectures tutorial - Strata London
Hadoop Application Architectures tutorial - Strata LondonHadoop Application Architectures tutorial - Strata London
Hadoop Application Architectures tutorial - Strata Londonhadooparchbook
 
NYC HUG - Application Architectures with Apache Hadoop
NYC HUG - Application Architectures with Apache HadoopNYC HUG - Application Architectures with Apache Hadoop
NYC HUG - Application Architectures with Apache Hadoopmarkgrover
 
Application Architectures with Hadoop - UK Hadoop User Group
Application Architectures with Hadoop - UK Hadoop User GroupApplication Architectures with Hadoop - UK Hadoop User Group
Application Architectures with Hadoop - UK Hadoop User Grouphadooparchbook
 
Hadoop application architectures - using Customer 360 as an example
Hadoop application architectures - using Customer 360 as an exampleHadoop application architectures - using Customer 360 as an example
Hadoop application architectures - using Customer 360 as an examplehadooparchbook
 
Strata NY 2014 - Architectural considerations for Hadoop applications tutorial
Strata NY 2014 - Architectural considerations for Hadoop applications tutorialStrata NY 2014 - Architectural considerations for Hadoop applications tutorial
Strata NY 2014 - Architectural considerations for Hadoop applications tutorialhadooparchbook
 
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv Data Pipelines in Hadoop - SAP Meetup in Tel Aviv
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv larsgeorge
 
Hadoop Application Architectures tutorial at Big DataService 2015
Hadoop Application Architectures tutorial at Big DataService 2015Hadoop Application Architectures tutorial at Big DataService 2015
Hadoop Application Architectures tutorial at Big DataService 2015hadooparchbook
 
Intro to hadoop tutorial
Intro to hadoop tutorialIntro to hadoop tutorial
Intro to hadoop tutorialmarkgrover
 
Cloudera Impala: A Modern SQL Engine for Apache Hadoop
Cloudera Impala: A Modern SQL Engine for Apache HadoopCloudera Impala: A Modern SQL Engine for Apache Hadoop
Cloudera Impala: A Modern SQL Engine for Apache HadoopCloudera, Inc.
 
Architecting a Fraud Detection Application with Hadoop
Architecting a Fraud Detection Application with HadoopArchitecting a Fraud Detection Application with Hadoop
Architecting a Fraud Detection Application with HadoopDataWorks Summit
 
Application architectures with hadoop – big data techcon 2014
Application architectures with hadoop – big data techcon 2014Application architectures with hadoop – big data techcon 2014
Application architectures with hadoop – big data techcon 2014Jonathan Seidman
 
A brave new world in mutable big data relational storage (Strata NYC 2017)
A brave new world in mutable big data  relational storage (Strata NYC 2017)A brave new world in mutable big data  relational storage (Strata NYC 2017)
A brave new world in mutable big data relational storage (Strata NYC 2017)Todd Lipcon
 
Application Architectures with Hadoop
Application Architectures with HadoopApplication Architectures with Hadoop
Application Architectures with Hadoophadooparchbook
 
Cloudera Impala: A modern SQL Query Engine for Hadoop
Cloudera Impala: A modern SQL Query Engine for HadoopCloudera Impala: A modern SQL Query Engine for Hadoop
Cloudera Impala: A modern SQL Query Engine for HadoopCloudera, Inc.
 
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard Of
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard OfApache Drill and Zeppelin: Two Promising Tools You've Never Heard Of
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard OfCharles Givre
 

Mais procurados (20)

Architectural Patterns for Streaming Applications
Architectural Patterns for Streaming ApplicationsArchitectural Patterns for Streaming Applications
Architectural Patterns for Streaming Applications
 
Fraud Detection using Hadoop
Fraud Detection using HadoopFraud Detection using Hadoop
Fraud Detection using Hadoop
 
Architecting application with Hadoop - using clickstream analytics as an example
Architecting application with Hadoop - using clickstream analytics as an exampleArchitecting application with Hadoop - using clickstream analytics as an example
Architecting application with Hadoop - using clickstream analytics as an example
 
SQL Engines for Hadoop - The case for Impala
SQL Engines for Hadoop - The case for ImpalaSQL Engines for Hadoop - The case for Impala
SQL Engines for Hadoop - The case for Impala
 
Hadoop Application Architectures tutorial - Strata London
Hadoop Application Architectures tutorial - Strata LondonHadoop Application Architectures tutorial - Strata London
Hadoop Application Architectures tutorial - Strata London
 
NYC HUG - Application Architectures with Apache Hadoop
NYC HUG - Application Architectures with Apache HadoopNYC HUG - Application Architectures with Apache Hadoop
NYC HUG - Application Architectures with Apache Hadoop
 
Application Architectures with Hadoop - UK Hadoop User Group
Application Architectures with Hadoop - UK Hadoop User GroupApplication Architectures with Hadoop - UK Hadoop User Group
Application Architectures with Hadoop - UK Hadoop User Group
 
Hadoop application architectures - using Customer 360 as an example
Hadoop application architectures - using Customer 360 as an exampleHadoop application architectures - using Customer 360 as an example
Hadoop application architectures - using Customer 360 as an example
 
Strata NY 2014 - Architectural considerations for Hadoop applications tutorial
Strata NY 2014 - Architectural considerations for Hadoop applications tutorialStrata NY 2014 - Architectural considerations for Hadoop applications tutorial
Strata NY 2014 - Architectural considerations for Hadoop applications tutorial
 
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv Data Pipelines in Hadoop - SAP Meetup in Tel Aviv
Data Pipelines in Hadoop - SAP Meetup in Tel Aviv
 
Hadoop Application Architectures tutorial at Big DataService 2015
Hadoop Application Architectures tutorial at Big DataService 2015Hadoop Application Architectures tutorial at Big DataService 2015
Hadoop Application Architectures tutorial at Big DataService 2015
 
Intro to hadoop tutorial
Intro to hadoop tutorialIntro to hadoop tutorial
Intro to hadoop tutorial
 
Cloudera Impala: A Modern SQL Engine for Apache Hadoop
Cloudera Impala: A Modern SQL Engine for Apache HadoopCloudera Impala: A Modern SQL Engine for Apache Hadoop
Cloudera Impala: A Modern SQL Engine for Apache Hadoop
 
Architecting a Fraud Detection Application with Hadoop
Architecting a Fraud Detection Application with HadoopArchitecting a Fraud Detection Application with Hadoop
Architecting a Fraud Detection Application with Hadoop
 
Application architectures with hadoop – big data techcon 2014
Application architectures with hadoop – big data techcon 2014Application architectures with hadoop – big data techcon 2014
Application architectures with hadoop – big data techcon 2014
 
A brave new world in mutable big data relational storage (Strata NYC 2017)
A brave new world in mutable big data  relational storage (Strata NYC 2017)A brave new world in mutable big data  relational storage (Strata NYC 2017)
A brave new world in mutable big data relational storage (Strata NYC 2017)
 
Apache HAWQ Architecture
Apache HAWQ ArchitectureApache HAWQ Architecture
Apache HAWQ Architecture
 
Application Architectures with Hadoop
Application Architectures with HadoopApplication Architectures with Hadoop
Application Architectures with Hadoop
 
Cloudera Impala: A modern SQL Query Engine for Hadoop
Cloudera Impala: A modern SQL Query Engine for HadoopCloudera Impala: A modern SQL Query Engine for Hadoop
Cloudera Impala: A modern SQL Query Engine for Hadoop
 
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard Of
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard OfApache Drill and Zeppelin: Two Promising Tools You've Never Heard Of
Apache Drill and Zeppelin: Two Promising Tools You've Never Heard Of
 

Destaque

Architecting next generation big data platform
Architecting next generation big data platformArchitecting next generation big data platform
Architecting next generation big data platformhadooparchbook
 
Architecting a Next Generation Data Platform
Architecting a Next Generation Data PlatformArchitecting a Next Generation Data Platform
Architecting a Next Generation Data Platformhadooparchbook
 
Impala Architecture presentation
Impala Architecture presentationImpala Architecture presentation
Impala Architecture presentationhadooparchbook
 
Hortonworks roadshow
Hortonworks roadshowHortonworks roadshow
Hortonworks roadshowAccenture
 
Making Sense of Big data with Hadoop
Making Sense of Big data with HadoopMaking Sense of Big data with Hadoop
Making Sense of Big data with HadoopGwen (Chen) Shapira
 
An Intro to Atom Editor
An Intro to Atom EditorAn Intro to Atom Editor
An Intro to Atom EditorAteev Chopra
 
Box2D with SIMD in JavaScript
Box2D with SIMD in JavaScriptBox2D with SIMD in JavaScript
Box2D with SIMD in JavaScriptIntel® Software
 
Building Big Data Applications
Building Big Data ApplicationsBuilding Big Data Applications
Building Big Data ApplicationsRichard McDougall
 
Online hotel booking application - Design Process
Online hotel booking application - Design ProcessOnline hotel booking application - Design Process
Online hotel booking application - Design Processchayapathi sarath
 
Intro to-freecad
Intro to-freecadIntro to-freecad
Intro to-freecadSLQedge
 
How to Operationalise Real-Time Hadoop in the Cloud
How to Operationalise Real-Time Hadoop in the CloudHow to Operationalise Real-Time Hadoop in the Cloud
How to Operationalise Real-Time Hadoop in the CloudAttunity
 
Google guava overview
Google guava overviewGoogle guava overview
Google guava overviewSteve Min
 
Equinix Big Data Platform and Cassandra - A view into the journey
Equinix Big Data Platform and Cassandra - A view into the journeyEquinix Big Data Platform and Cassandra - A view into the journey
Equinix Big Data Platform and Cassandra - A view into the journeyPraveen Kumar
 
Streaming Big Data & Analytics For Scale
Streaming Big Data & Analytics For ScaleStreaming Big Data & Analytics For Scale
Streaming Big Data & Analytics For ScaleHelena Edelson
 
Clickstream Analysis with Spark
Clickstream Analysis with Spark Clickstream Analysis with Spark
Clickstream Analysis with Spark Josef Adersberger
 

Destaque (17)

Architecting next generation big data platform
Architecting next generation big data platformArchitecting next generation big data platform
Architecting next generation big data platform
 
Architecting a Next Generation Data Platform
Architecting a Next Generation Data PlatformArchitecting a Next Generation Data Platform
Architecting a Next Generation Data Platform
 
Impala Architecture presentation
Impala Architecture presentationImpala Architecture presentation
Impala Architecture presentation
 
Hortonworks roadshow
Hortonworks roadshowHortonworks roadshow
Hortonworks roadshow
 
Making Sense of Big data with Hadoop
Making Sense of Big data with HadoopMaking Sense of Big data with Hadoop
Making Sense of Big data with Hadoop
 
An Intro to Atom Editor
An Intro to Atom EditorAn Intro to Atom Editor
An Intro to Atom Editor
 
Box2D with SIMD in JavaScript
Box2D with SIMD in JavaScriptBox2D with SIMD in JavaScript
Box2D with SIMD in JavaScript
 
Building Big Data Applications
Building Big Data ApplicationsBuilding Big Data Applications
Building Big Data Applications
 
Online hotel booking application - Design Process
Online hotel booking application - Design ProcessOnline hotel booking application - Design Process
Online hotel booking application - Design Process
 
Intro to-freecad
Intro to-freecadIntro to-freecad
Intro to-freecad
 
Google guava
Google guavaGoogle guava
Google guava
 
How to Operationalise Real-Time Hadoop in the Cloud
How to Operationalise Real-Time Hadoop in the CloudHow to Operationalise Real-Time Hadoop in the Cloud
How to Operationalise Real-Time Hadoop in the Cloud
 
Google guava overview
Google guava overviewGoogle guava overview
Google guava overview
 
Equinix Big Data Platform and Cassandra - A view into the journey
Equinix Big Data Platform and Cassandra - A view into the journeyEquinix Big Data Platform and Cassandra - A view into the journey
Equinix Big Data Platform and Cassandra - A view into the journey
 
Streaming Big Data & Analytics For Scale
Streaming Big Data & Analytics For ScaleStreaming Big Data & Analytics For Scale
Streaming Big Data & Analytics For Scale
 
Clickstream Analysis with Spark
Clickstream Analysis with Spark Clickstream Analysis with Spark
Clickstream Analysis with Spark
 
Google Guava
Google GuavaGoogle Guava
Google Guava
 

Semelhante a Application architectures with Hadoop – Big Data TechCon 2014

Intro to Hadoop Presentation at Carnegie Mellon - Silicon Valley
Intro to Hadoop Presentation at Carnegie Mellon - Silicon ValleyIntro to Hadoop Presentation at Carnegie Mellon - Silicon Valley
Intro to Hadoop Presentation at Carnegie Mellon - Silicon Valleymarkgrover
 
Hadoop Present - Open Enterprise Hadoop
Hadoop Present - Open Enterprise HadoopHadoop Present - Open Enterprise Hadoop
Hadoop Present - Open Enterprise HadoopYifeng Jiang
 
Application Architectures with Hadoop | Data Day Texas 2015
Application Architectures with Hadoop | Data Day Texas 2015Application Architectures with Hadoop | Data Day Texas 2015
Application Architectures with Hadoop | Data Day Texas 2015Cloudera, Inc.
 
Applications on Hadoop
Applications on HadoopApplications on Hadoop
Applications on Hadoopmarkgrover
 
Strata EU tutorial - Architectural considerations for hadoop applications
Strata EU tutorial - Architectural considerations for hadoop applicationsStrata EU tutorial - Architectural considerations for hadoop applications
Strata EU tutorial - Architectural considerations for hadoop applicationshadooparchbook
 
Building a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with ImpalaBuilding a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with Impalahuguk
 
Webinar: Productionizing Hadoop: Lessons Learned - 20101208
Webinar: Productionizing Hadoop: Lessons Learned - 20101208Webinar: Productionizing Hadoop: Lessons Learned - 20101208
Webinar: Productionizing Hadoop: Lessons Learned - 20101208Cloudera, Inc.
 
Big data - Online Training
Big data - Online TrainingBig data - Online Training
Big data - Online TrainingLearntek1
 
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3tcloudcomputing-tw
 
Building data pipelines with kite
Building data pipelines with kiteBuilding data pipelines with kite
Building data pipelines with kiteJoey Echeverria
 
Hadoop HDFS and Oracle
Hadoop HDFS and OracleHadoop HDFS and Oracle
Hadoop HDFS and OracleJohan Louwers
 
Apache hadoop basics
Apache hadoop basicsApache hadoop basics
Apache hadoop basicssaili mane
 
Building a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with ImpalaBuilding a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with ImpalaSwiss Big Data User Group
 
Hadoop And Their Ecosystem ppt
 Hadoop And Their Ecosystem ppt Hadoop And Their Ecosystem ppt
Hadoop And Their Ecosystem pptsunera pathan
 
Hadoop And Their Ecosystem
 Hadoop And Their Ecosystem Hadoop And Their Ecosystem
Hadoop And Their Ecosystemsunera pathan
 
hadoop-ecosystem-ppt.pptx
hadoop-ecosystem-ppt.pptxhadoop-ecosystem-ppt.pptx
hadoop-ecosystem-ppt.pptxraghavanand36
 

Semelhante a Application architectures with Hadoop – Big Data TechCon 2014 (20)

Intro to Hadoop Presentation at Carnegie Mellon - Silicon Valley
Intro to Hadoop Presentation at Carnegie Mellon - Silicon ValleyIntro to Hadoop Presentation at Carnegie Mellon - Silicon Valley
Intro to Hadoop Presentation at Carnegie Mellon - Silicon Valley
 
Hadoop Present - Open Enterprise Hadoop
Hadoop Present - Open Enterprise HadoopHadoop Present - Open Enterprise Hadoop
Hadoop Present - Open Enterprise Hadoop
 
Application Architectures with Hadoop | Data Day Texas 2015
Application Architectures with Hadoop | Data Day Texas 2015Application Architectures with Hadoop | Data Day Texas 2015
Application Architectures with Hadoop | Data Day Texas 2015
 
Applications on Hadoop
Applications on HadoopApplications on Hadoop
Applications on Hadoop
 
Strata EU tutorial - Architectural considerations for hadoop applications
Strata EU tutorial - Architectural considerations for hadoop applicationsStrata EU tutorial - Architectural considerations for hadoop applications
Strata EU tutorial - Architectural considerations for hadoop applications
 
Building a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with ImpalaBuilding a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with Impala
 
Webinar: Productionizing Hadoop: Lessons Learned - 20101208
Webinar: Productionizing Hadoop: Lessons Learned - 20101208Webinar: Productionizing Hadoop: Lessons Learned - 20101208
Webinar: Productionizing Hadoop: Lessons Learned - 20101208
 
Big data - Online Training
Big data - Online TrainingBig data - Online Training
Big data - Online Training
 
Big data and hadoop
Big data and hadoopBig data and hadoop
Big data and hadoop
 
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3
Tcloud Computing Hadoop Family and Ecosystem Service 2013.Q3
 
Building data pipelines with kite
Building data pipelines with kiteBuilding data pipelines with kite
Building data pipelines with kite
 
Hadoop HDFS and Oracle
Hadoop HDFS and OracleHadoop HDFS and Oracle
Hadoop HDFS and Oracle
 
Apache hadoop basics
Apache hadoop basicsApache hadoop basics
Apache hadoop basics
 
Building a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with ImpalaBuilding a Hadoop Data Warehouse with Impala
Building a Hadoop Data Warehouse with Impala
 
Hadoop In Action
Hadoop In ActionHadoop In Action
Hadoop In Action
 
Hadoop And Their Ecosystem ppt
 Hadoop And Their Ecosystem ppt Hadoop And Their Ecosystem ppt
Hadoop And Their Ecosystem ppt
 
Hadoop And Their Ecosystem
 Hadoop And Their Ecosystem Hadoop And Their Ecosystem
Hadoop And Their Ecosystem
 
hadoop-ecosystem-ppt.pptx
hadoop-ecosystem-ppt.pptxhadoop-ecosystem-ppt.pptx
hadoop-ecosystem-ppt.pptx
 
Introduction to Hadoop
Introduction to HadoopIntroduction to Hadoop
Introduction to Hadoop
 
Hadoop in a Nutshell
Hadoop in a NutshellHadoop in a Nutshell
Hadoop in a Nutshell
 

Mais de hadooparchbook

Architecting a next generation data platform
Architecting a next generation data platformArchitecting a next generation data platform
Architecting a next generation data platformhadooparchbook
 
Architecting a next-generation data platform
Architecting a next-generation data platformArchitecting a next-generation data platform
Architecting a next-generation data platformhadooparchbook
 
Top 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationsTop 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationshadooparchbook
 
Hadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialHadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialhadooparchbook
 
Hadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialHadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialhadooparchbook
 
Top 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationsTop 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationshadooparchbook
 
Hadoop Application Architectures - Fraud Detection
Hadoop Application Architectures - Fraud  DetectionHadoop Application Architectures - Fraud  Detection
Hadoop Application Architectures - Fraud Detectionhadooparchbook
 
Data warehousing with Hadoop
Data warehousing with HadoopData warehousing with Hadoop
Data warehousing with Hadoophadooparchbook
 

Mais de hadooparchbook (8)

Architecting a next generation data platform
Architecting a next generation data platformArchitecting a next generation data platform
Architecting a next generation data platform
 
Architecting a next-generation data platform
Architecting a next-generation data platformArchitecting a next-generation data platform
Architecting a next-generation data platform
 
Top 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationsTop 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applications
 
Hadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialHadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorial
 
Hadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorialHadoop application architectures - Fraud detection tutorial
Hadoop application architectures - Fraud detection tutorial
 
Top 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applicationsTop 5 mistakes when writing Spark applications
Top 5 mistakes when writing Spark applications
 
Hadoop Application Architectures - Fraud Detection
Hadoop Application Architectures - Fraud  DetectionHadoop Application Architectures - Fraud  Detection
Hadoop Application Architectures - Fraud Detection
 
Data warehousing with Hadoop
Data warehousing with HadoopData warehousing with Hadoop
Data warehousing with Hadoop
 

Último

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackVICTOR MAESTRE RAMIREZ
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendArshad QA
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about usDynamic Netsoft
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionSolGuruz
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 

Último (20)

HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Exploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the ProcessExploring iOS App Development: Simplifying the Process
Exploring iOS App Development: Simplifying the Process
 
Cloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStackCloud Management Software Platforms: OpenStack
Cloud Management Software Platforms: OpenStack
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Test Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and BackendTest Automation Strategy for Frontend and Backend
Test Automation Strategy for Frontend and Backend
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
DNT_Corporate presentation know about us
DNT_Corporate presentation know about usDNT_Corporate presentation know about us
DNT_Corporate presentation know about us
 
Diamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with PrecisionDiamond Application Development Crafting Solutions with Precision
Diamond Application Development Crafting Solutions with Precision
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 

Application architectures with Hadoop – Big Data TechCon 2014

  • 1. 1 Headline  Goes  Here   Speaker  Name  or  Subhead  Goes  Here   DO  NOT  USE  PUBLICLY   PRIOR  TO  10/23/12   ApplicaAon  Architectures  with   Hadoop   Mark  Grover  |  SoGware  Engineer   Jonathan  Seidman    |  SoluAons  Architect,  Partner   Engineering   April  1,  2014   ©2014 Cloudera, Inc. All Rights Reserved.
  • 2. About  Us   •  Mark   •  CommiOer  on  Apache  Bigtop,  commiOer  and  PPMC  member  on  Apache   Sentry  (incubaAng).   •  Contributor  to  Hadoop,  Hive,  Spark,  Sqoop,  Flume.   •  @mark_grover   •  Jonathan   •  SoluAons  Architect,  Partner  Engineering  Team.   •  Co-­‐founder  of  Chicago  Hadoop  User  Group  and  Chicago  Big  Data.   •  jseidman@cloudera.com   •  @jseidman   2 ©2014 Cloudera, Inc. All Rights Reserved.
  • 3. Co-­‐authoring  O’Reilly  book   •  Titled  ‘Hadoop  ApplicaAon  Architectures’   •  How  to  build  end-­‐to-­‐end  soluAons  using     Apache  Hadoop  and  related  tools   •  Updates  on  TwiOer:  @hadooparchbook   •  hOp://www.hadooparchitecturebook.com   ©2014 Cloudera, Inc. All Rights Reserved. 3
  • 4. Challenges  of  Hadoop  ImplementaAon   4   ©2014 Cloudera, Inc. All Rights Reserved.
  • 5. Challenges  of  Hadoop  ImplementaAon   5   ©2014 Cloudera, Inc. All Rights Reserved.
  • 6. 6 Click  Stream  Analysis   Case  Study   ©2014 Cloudera, Inc. All Rights Reserved.
  • 7. Click  Stream  Analysis   7   Log   Files   DWH   X   ©2014 Cloudera, Inc. All Rights Reserved.
  • 8. Web  Log  Example   ©2014 Cloudera, Inc. All Rights Reserved. 8   [2012/09/22 20:56:04.294 -0500] "GET /info/ HTTP/1.1" 200 701 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en)" "age=38&gender=1&incomeCategory=5&session=983040389&user=627735038& region=8&userType=1” [2012/09/23 14:12:52.294 -0500] "GET /wish/remove/275 HTTP/1.1" 200 701 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_3; en-us) AppleWebKit/533.16 (KHTML, like Gecko) Version/5.0 Safari/533.16" "age=63&gender=1&incomeCategory=1&session=1561203915&user=136433448 8&region=4&userType=1"
  • 9. Hadoop  Architectural  ConsideraAons     •  Storage  managers?   •  HDFS?  HBase?   •  Data  storage  and  modeling:   •  File  formats?  Compression?  Schema  design?   •  Data  movement   •  How  do  we  actually  get  the  data  into  Hadoop?  How  do  we  get  it  out?   •  Metadata   •  How  do  we  manage  data  about  the  data?   •  Data  access  and  processing   •  How  will  the  data  be  accessed  once  in  Hadoop?  How  can  we  transform  it?  How  do   we  query  it?   •  OrchestraAon   •  How  do  we  manage  the  workflow  for  all  of  this?   9 ©2014 Cloudera, Inc. All Rights Reserved.
  • 10. 10 Data  Storage  and  Modeling   ©2014 Cloudera, Inc. All Rights Reserved.
  • 11. Data  Storage  –  Storage  Manager  consideraAons   •  Popular  storage  managers  for  Hadoop   •  Hadoop  Distributed  File  System  (HDFS)   •  HBase   11 ©2014 Cloudera, Inc. All Rights Reserved.
  • 12. Data  Storage  –  HDFS  vs  HBase   HDFS   •  Stores  data  directly  as  files   •  Fast  scans   •  Poor  random  reads/writes   HBase   •  Stores  data  as  Hfiles  on  HDFS   •  Slow  scans   •  Fast  random  reads/writes   12   ©2014 Cloudera, Inc. All Rights Reserved.
  • 13. Data  Storage  –  Storage  Manager  consideraAons   •  We  choose  HDFS   •  AnalyAcal  needs  in  this  case  served  beOer  by  fast  scans.   13 ©2014 Cloudera, Inc. All Rights Reserved.
  • 14. 14 Data  Storage  Format   ©2014 Cloudera, Inc. All Rights Reserved.
  • 15. Data  Storage  –  Format  ConsideraAons     •  Store  as  plain  text?   •  Sure,  well  supported  by  Hadoop.   •  Text  can  easily  be  processed  by  MapReduce,  loaded  into  Hive  for   analysis,  and  so  on.   •  But…   •  Will  begin  to  consume  lots  of  space  in  HDFS.   •  May  not  be  opAmal  for  processing  by  tools  in  the  Hadoop   ecosystem.   15 ©2014 Cloudera, Inc. All Rights Reserved.
  • 16. Data  Storage  –  Format  ConsideraAons     •  But,  we  can  compress  the  text  files…   •  Gzip  –  supported  by  Hadoop,  but  not  spliOable.   •  Bzip2  –  hey,  spliOable!  Great  compression!  But  decompression  is   slooowww.   •  LZO  –  spliOable  (with  some  work),  good  compress/de-­‐compress   performance.  Good  choice  for  storing  text  files  on  Hadoop.     •  Snappy  –  provides  a  good  tradeoff  between  size  and  speed.     16 ©2014 Cloudera, Inc. All Rights Reserved.
  • 17. Data  Storage  –  More  About  Snappy   •  Designed  at  Google  to  provide  high  compression  speeds  with   reasonable  compression.   •  Not  the  highest  compression,  but  provides  very  good  performance   for  processing  on  Hadoop.   •  Snappy  is  not  spliOable  though,  which  brings  us  to…     17 ©2014 Cloudera, Inc. All Rights Reserved.
  • 18. SequenceFile   • Stores  records  as  binary   key/value  pairs.   • SequenceFile  “blocks”   can  be  compressed.   • This  enables  spliOability   with  non-­‐spliOable   compression.       18   ©2014 Cloudera, Inc. All Rights Reserved.
  • 19. Avro   •  Kinda  SequenceFile  on   Steroids.   •  Self-­‐documenAng  –  stores   schema  in  header.   •  Provides  very  efficient   storage.   •  Supports  spliOable   compression.   19   ©2014 Cloudera, Inc. All Rights Reserved.
  • 20. Our  Format  Choices…   •  Avro  with  Snappy   •  Snappy  provides  opAmized  compression.   •  Avro  provides  compact  storage,  self-­‐documenAng  files,  and   supports  schema  evoluAon.   •  Avro  also  provides  beOer  failure  handling  than  other  choices.   •  SequenceFiles  would  also  be  a  good  choice,  and  are  directly   supported  by  ingesAon  tools  in  the  ecosystem.   •  But  only  supports  Java.   20 ©2014 Cloudera, Inc. All Rights Reserved.
  • 21. 21 HDFS  Schema  Design   ©2014 Cloudera, Inc. All Rights Reserved.
  • 22. Recommended  HDFS  Schema  Design   •  How  to  lay  out  data  on  HDFS?   22 ©2014 Cloudera, Inc. All Rights Reserved.
  • 23. Recommended  HDFS  Schema  Design   /user/<username>  -­‐  User  specific  data,  jars,  conf  files   /etl  –  Data  in  various  stages  of  ETL  workflow   /tmp  –  temp  data  from  tools  or  shared  between  users   /data  –  shared  data  for  the  enAre  organizaAon   /app  –  Everything  but  data:  UDF  jars,  HQL  files,  Oozie  workflows   23 ©2014 Cloudera, Inc. All Rights Reserved.
  • 24. 24 Advanced  HDFS  Schema  Design   ©2014 Cloudera, Inc. All Rights Reserved.
  • 25. What  is  ParAAoning?   25 dataset        col=val1/file.txt        col=val2/file.txt          .          .          .        col=valn/file.txt   dataset      file1.txt      file2.txt          .          .          .        filen.txt   Un-­‐parAAoned  HDFS   directory  structure   ParAAoned  HDFS  directory   structure   ©2014 Cloudera, Inc. All Rights Reserved.
  • 26. What  is  ParAAoning?   26 clicks        dt=2014-­‐01-­‐01/clicks.txt        dt=2014-­‐01-­‐02/clicks.txt          .          .          .        dt=2014-­‐03-­‐31/clicks.txt   clicks      clicks-­‐2014-­‐01-­‐01.txt      clicks-­‐2014-­‐01-­‐02.txt          .          .          .        clicks-­‐2014-­‐03-­‐31.txt   Un-­‐parAAoned  HDFS   directory  structure   ParAAoned  HDFS  directory   structure   ©2014 Cloudera, Inc. All Rights Reserved.
  • 27. ParAAoning   •  Split  the  dataset  into  smaller  consumable  chunks   •  Rudimentary  form  of  “indexing”   •  <data  set  name>/ <parAAon_column_name=parAAon_column_value>/{files}   27 ©2014 Cloudera, Inc. All Rights Reserved.
  • 28. ParAAoning  consideraAons   •  What  column  to  bucket  by?   •  HDFS  is  append  only.   •  Don’t  have  too  many  parAAons  (<10,000)   •  Don’t  have  too  many  small  files  in  the  parAAons  (more  than   block  size  generally)   •  We  decided  to  parAAon  by  1mestamp   28 ©2014 Cloudera, Inc. All Rights Reserved.
  • 29. What  is  buckeAng?   29 clicks        dt=2014-­‐01-­‐01/clicks.txt          dt=2014-­‐01-­‐02/clicks.txt   Un-­‐bucketed  HDFS   directory  structure   clicks        dt=2014-­‐01-­‐01/file0.txt        dt=2014-­‐01-­‐01/file1.txt        dt=2014-­‐01-­‐01/file2.txt        dt=2014-­‐01-­‐01/file3.txt          dt=2014-­‐01-­‐02/file0.txt        dt=2014-­‐01-­‐02/file1.txt        dt=2014-­‐01-­‐02/file2.txt        dt=2014-­‐01-­‐02/file3.txt   Bucketed  HDFS  directory   structure   ©2014 Cloudera, Inc. All Rights Reserved.
  • 30. BuckeAng   •  Hash-­‐bucketed  files  within  each  parAAon  based  on  a  parAcular   column   •  Useful  when  sampling   •  In  some  joins,  pre-­‐reqs:   •  Datasets  bucketed  on  the  same  key  as  the  join  key   •  Number  of  buckets  are  the  same  or  one  is  a  mulAple  of  the  other   30 ©2014 Cloudera, Inc. All Rights Reserved.
  • 31. BuckeAng  consideraAons?   •  Which  column  to  bucket  on?   •  How  many  buckets?   •  We  decided  to  bucket  based  on  cookie   31 ©2014 Cloudera, Inc. All Rights Reserved.
  • 32. De-­‐normalizing  consideraAons   •  In  general,  big  data  joins  are  expensive   •  When  to  de-­‐normalize?   •  Decided  to  join  the  smaller  dimension  tables   •  Big  fact  tables  are  sAll  joined   32 ©2014 Cloudera, Inc. All Rights Reserved.
  • 33. 33 Data  IngesAon   ©2014 Cloudera, Inc. All Rights Reserved.
  • 34. File  Transfers     • “hadoop  fs  –put  <file>”   • Reliable,  but  not  resilient   to  failure.   • Other  opAons  are   mountable  HDFS,  for   example  NFSv3.   34   ©2014 Cloudera, Inc. All Rights Reserved.
  • 35. Streaming  IngesAon   •  Flume   •  Reliable,  distributed,  and  available  system  for  efficient  collecAon,   aggregaAon  and  movement  of  streaming  data,  e.g.  logs.   •  Ka{a   •  Reliable  and  distributed  publish-­‐subscribe  messaging  system.   35 ©2014 Cloudera, Inc. All Rights Reserved.
  • 36. Flume  vs.  Ka{a   • Purpose  built  for  Hadoop   data  ingest.   • Pre-­‐built  sinks  for  HDFS,   HBase,  etc.   • Supports  transformaAon   of  data  in-­‐flight.   • General  pub-­‐sub   messaging  framework.   • Hadoop  not  supported,   requires  3rd-­‐party   component  (Camus).   • Just  a  message  transport   (a  very  fast  one).   36   ©2014 Cloudera, Inc. All Rights Reserved.
  • 37. Flume  vs.  Ka{a   •  BoOom  line:   •  Flume  very  well  integrated  with  Hadoop  ecosystem,  well  suited   to  ingesAon  of  sources  such  as  log  files.   •  Ka{a  is  a  highly  reliable  and  scalable  enterprise  messaging   system,  and  great  for  scaling  out  to  mulAple  consumers.   37 ©2014 Cloudera, Inc. All Rights Reserved.
  • 38. A  Quick  IntroducAon  to  Flume   38   Flume  Agent   Source   Channel   Sink   DesAnaAon  External   Source   Web  Server   TwiOer   JMS   System  logs   …   Consumes  events   and  forwards  to   channels   Stores  events   unAl  consumed   by  sinks  –  file,   memory,  JDBC   Removes  event  from   channel  and  puts   into  external   desAnaAon   JVM    process  hosAng  components   ©2014 Cloudera, Inc. All Rights Reserved.
  • 39. A  Quick  IntroducAon  to  Flume   •  Reliable  –  events  are  stored  in  channel  unAl  delivered  to  next  stage.   •  Recoverable  –  events  can  be  persisted  to  disk  and  recovered  in  the   event  of  failure.   39 Flume  Agent   Source   Channel   Sink   DesAnaAon   ©2014 Cloudera, Inc. All Rights Reserved.
  • 40. A  Quick  IntroducAon  to  Flume   • DeclaraAve     •  No  coding  required.   •  ConfiguraAon  specifies   how  components  are   wired  together.   40   ©2014 Cloudera, Inc. All Rights Reserved.
  • 41. A  Brief  Discussion  of  Flume  PaOerns  –  Fan-­‐in   • Flume  agent  runs  on   each  of  our  servers.   • These  agents  send  data   to  mulAple  agents  to   provide  reliability.   • Flume  provides  support   for  load  balancing.   41   ©2014 Cloudera, Inc. All Rights Reserved.
  • 42. A  Brief  Discussion  of  Flume  PaOerns  –  Spli~ng   •  Common  need  is  to  split   data  on  ingest.   •  For  example:   •  Sending  data  to  mulAple   clusters  for  DR.   •  To  mulAple  desAnaAons.   •  Flume  also  supports   parAAoning,  which  is  key   to  our  implementaAon.   42   ©2014 Cloudera, Inc. All Rights Reserved.
  • 43. Sqoop  Overview   •  Apache  project  designed  to  ease  import  and  export  of  data   between  Hadoop  and  external  data  stores  such  as  relaAonal   databases.   •  Great  for  doing  bulk  imports  and  exports  of  data  between   HDFS,  Hive  and  HBase  and  an  external  data  store.  Not  suited   for  ingesAng  event  based  data.   ©2014 Cloudera, Inc. All Rights Reserved. 43
  • 44. IngesAon  Decisions   •  Historical  Data   •  Smaller  files:  file  transfer   •  Larger  files:  Flume  with  spooling  directory  source.   •  Incoming  Data   •  Flume  with  the  spooling  directory  source.   44 ©2014 Cloudera, Inc. All Rights Reserved.
  • 45. 45 Data  Processing  and  Access   ©2014 Cloudera, Inc. All Rights Reserved.
  • 46. Data  flow   46   Raw  data   ParAAoned   clickstream   data   Other  data   (Financial,   CRM,  etc.)   Aggregated   dataset  #2   Aggregated   dataset  #1   ©2014 Cloudera, Inc. All Rights Reserved.
  • 47. Data  processing  tools   47   •  Hive   •  Impala   •  Pig,  etc.   ©2014 Cloudera, Inc. All Rights Reserved.
  • 48. Hive   48   •  Open  source  data  warehouse  system  for  Hadoop   •  Converts  SQL-­‐like  queries  to  MapReduce  jobs   •  Work  is  being  done  to  move  this  away  from  MR   •  Stores  metadata  in  Hive  metastore   •  Can  create  tables  over  HDFS  or  HBase  data   •  Access  available  via  JDBC/ODBC   ©2014 Cloudera, Inc. All Rights Reserved.
  • 49. Impala   49   •  Real-­‐Ame  open  source  SQL  query  engine  for  Hadoop   •  Doesn’t  build  on  MapReduce   •  WriOen  in  C++,  uses  LLVM  for  run-­‐Ame  code  generaAon   •  Can  create  tables  over  HDFS  or  HBase  data   •  Accesses  Hive  metastore  for  metadata   •  Access  available  via  JDBC/ODBC   ©2014 Cloudera, Inc. All Rights Reserved.
  • 50. Pig   50   •  Higher  level  abstracAon  over  MapReduce  (like  Hive)   •  Write  transformaAons  in  scripAng  language  –  Pig  LaAn   •  Can  access  Hive  metastore  via  HCatalog  for  metadata   ©2014 Cloudera, Inc. All Rights Reserved.
  • 51. Data  Processing  consideraAons   51   •  We  chose  Hive  for  ETL    and  Impala  for  interac1ve  BI.   ©2014 Cloudera, Inc. All Rights Reserved.
  • 52. 52 Metadata  Management   ©2014 Cloudera, Inc. All Rights Reserved.
  • 53. What  is  Metadata?   53   •  Metadata  is  data  about  the  data   •  Format  in  which  data  is  stored   •  Compression  codec   •  LocaAon  of  the  data   •  Is  the  data  parAAoned/bucketed/sorted?   ©2014 Cloudera, Inc. All Rights Reserved.
  • 54. Metadata  in  Hive   54 Hive   Metastore   ©2014 Cloudera, Inc. All Rights Reserved.
  • 55. Metadata   55   •  Hive  metastore  has  become  the  de-­‐facto  metadata  repository   •  HCatalog  makes  Hive  metastore  accessible  to  other   applicaAons  (Pig,  MapReduce,  custom  apps,  etc.)   ©2014 Cloudera, Inc. All Rights Reserved.
  • 56. Hive  +  HCatalog   56   ©2014 Cloudera, Inc. All Rights Reserved.
  • 57. 57 OrchestraAon   ©2014 Cloudera, Inc. All Rights Reserved.
  • 58. OrchestraAon   •  Once  the  data  is  in  Hadoop,  we  need  a  way  to  manage   workflows  in  our  architecture.   •  Scheduling  and  tracking  MapReduce  jobs,  Hive  jobs,  etc.   •  Several  opAons  here:   •  Cron   •  Oozie,  Azkaban   •  3rd-­‐party  tools,  Talend,  Pentaho,  InformaAca,  enterprise   schedulers.   58 ©2014 Cloudera, Inc. All Rights Reserved.
  • 59. Oozie   • Supports  defining  and   execuAng  a  sequence  of   jobs.   • Can  trigger  jobs  based  on   external  dependencies  or   schedules.   59   ©2014 Cloudera, Inc. All Rights Reserved.
  • 60. 60 Final  Architecture   ©2014 Cloudera, Inc. All Rights Reserved.
  • 61. Final  Architecture  –  High  Level  Overview   61   Data   Sources   IngesAon   Data   Storage/ Processing   Data   ReporAng/ Analysis   ©2014 Cloudera, Inc. All Rights Reserved.
  • 62. Final  Architecture  –  High  Level  Overview   62   Data   Sources   IngesAon   Data   Storage/ Processing   Data   ReporAng/ Analysis   ©2014 Cloudera, Inc. All Rights Reserved.
  • 63. Final  Architecture  –  IngesAon   63   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Web  App   Avro  Agent   Flume  Agent   Flume  Agent   Flume  Agent   Flume  Agent   Fan-­‐in     PaOern   MulA  Agents  for     Failover  and  rolling  restarts   HDFS     ©2014 Cloudera, Inc. All Rights Reserved.
  • 64. Final  Architecture  –  High  Level  Overview   64   Data   Sources   IngesAon   Data   Storage/ Processing   Data   ReporAng/ Analysis   ©2014 Cloudera, Inc. All Rights Reserved.
  • 65. Final  Architecture  –  Storage  and  Processing   65   /etl/weblogs/20140331/   /etl/weblogs/20140401/   …   Data  Processing   /data/markeAng/clickstream/bouncerate/   /data/markeAng/clickstream/aOribuAon/   …   ©2014 Cloudera, Inc. All Rights Reserved.
  • 66. Final  Architecture  –  High  Level  Overview   66   Data   Sources   IngesAon   Data   Storage/ Processing   Data   ReporAng/ Analysis   ©2014 Cloudera, Inc. All Rights Reserved.
  • 67. Final  Architecture  –  Data  Access   67   Hive/ Impala   BI/ AnalyAcs   Tools   DWH   Sqoop   Local   Disk   R,  etc.   DB  import  tool   JDBC/ODBC   ©2014 Cloudera, Inc. All Rights Reserved.
  • 68. Contact  info   •  Mark  Grover   •  @mark_grover   •  www.linkedin.com/in/grovermark   •  Jonathan  Seidman   •  jseidman@cloudera.com   •  @jseidman   •  hOps://www.linkedin.com/pub/jonathan-­‐seidman/1/26a/959   •  hOp://www.slideshare.net/jseidman   •  Slides  at  slideshare.net/hadooparchbook   68 ©2014 Cloudera, Inc. All Rights Reserved.
  • 69. 69 ©2014 Cloudera, Inc. All Rights Reserved.