SlideShare una empresa de Scribd logo
1 de 18
Descargar para leer sin conexión
HBase	
  status:	
  0.94,	
  0.96,	
  0.98,	
  and	
  future	
  releases
Ma6eo.Bertozzi	
  |	
  	
  @Cloudera	
  	
  
Speaker	
  Name	
  or	
  Subhead	
  Goes	
  Here
17	
  February	
  2014	
  (HBase	
  London	
  Meetup)

!1
What	
  is	
  HBase?
App

ZooKeeper
!2

MR

HDFS

Apache	
  HBase	
  is

an	
  Open	
  Source,

distributed,	
  consistent,

non-­‐relaQonal	
  database

that	
  provides	
  low-­‐latency,

random	
  read/write	
  operaQons	
  
on	
  top	
  of	
  HDFS
Open	
  Source	
  -­‐	
  Developer	
  Community

•  Vibrant,)Highly)

Ac1ve)community!))
•  We’re)Growing!)
!3

What	
  is	
  HBase?
non-­‐relaQonal
•

Key:Column/Value	
  Interface	
  
• Dynamic	
  columns	
  (qualifiers),	
  “no	
  schema	
  required”	
  
• “Fixed”	
  column	
  groups	
  (families)	
  
• table[row:family:column]	
  =	
  value
Key

Qualifier

Value

User-A

info

name

Theo

User-A

info

address

3 Abbey Rd - London NW8 9AY

User-B

info

name

Dave

User-C

!4

Family

info

. . .

. . .
Distributed
create,	
  delete	
  table	
  opera=ons

HMaster

put,	
  get,	
  scan

Client/App

ZooKeeper

•

Region	
  Server	
  
•
•

•

Server	
  that	
  contains	
  a	
  set	
  of	
  Regions	
  
Handle	
  reads	
  and	
  writes	
  requests	
  

Region	
  
•

Basic	
  unit	
  of	
  scalability	
  

Region	
  Server

Region	
  Server

Region	
  Server

•

Subset	
  of	
  the	
  table’s	
  data	
  

Region

Region

Region

•

Region

Region

Region

ConQguous,	
  sorted	
  range	
  of	
  rows	
  
stored	
  together	
  

Region

Region

Region

HDFS
!5

What	
  is	
  HBase?

•

Master	
  
•

Coordinate	
  the	
  cluster	
  (e.g.	
  Balancing)	
  

•

Admin	
  Ops	
  (create/delete	
  table,	
  …)
Apache	
  HBase
Timeline	
  and	
  Features

!6
Apache	
  HBase	
  Timeline
Nov$’06:$
Google$$
BigTable$OSDI$‘06$
Q3$‘14:$1.0$

2006$

2007$

Apr$‘07:$First$
Apache$HBase$
commit$as$
Hadoop$contrib$
project$

!7

2008$

2009$

2010$

2011$

2012$

2013$

2014$

Apr’11:''
0.90.1'
Jan‘08:$Promoted$
to$Hadoop$
subproject$

Apr$‘10:$Apache$
HBase$becomes$
top$level$project$

May$‘12:$0.94.0$
Jan$‘12:$0.92.0$

Oct$‘13:$0.96.0$

Feb$‘14:$0.98.0$
Apache	
  HBase	
  0.94
Create/Delete	
  Tables	
  
• Table	
  Insert,	
  Update,	
  Delete,	
  Get,	
  Scan	
  
• Import/Export	
  tools	
  
• Map-­‐Reduce	
  job	
  helpers	
  
• Kerberos	
  &	
  ACLs	
  
•…
•

!8
Apache	
  HBase	
  0.96
(The	
  Latest	
  Release)

!9
0.96:	
  Major	
  Changes,	
  Minimal	
  disturbance
…more	
  than	
  a	
  year	
  in	
  the	
  making	
  
• Lots	
  of	
  changes	
  under	
  the	
  hood	
  
• HadoopWritables	
  replaced	
  with	
  protobuf	
  (RPC,	
  metadata,	
  …)	
  
• -­‐ROOT-­‐	
  Table	
  Removed	
  
• /hbase	
  dir	
  Layout	
  Changes	
  
• Minimal	
  disturbance	
  to	
  the	
  API	
  
• Improved	
  stability	
  
• Mean	
  Time	
  To	
  Recovery	
  (MTTR)
•

!10
0.96:	
  New	
  Features
Online	
  Region	
  Merge	
  
• Online	
  “Schema”	
  Change	
  
• Snapshots	
  
• MTTR	
  
• Favored	
  Nodes	
  
• New	
  Balancers	
  
• Namespaces
•

h6ps://blogs.apache.org/hbase/entry/hbase_0_96_0_released
!11
Namespaces
AbstracQon	
  for	
  mulQple	
  tenants	
  to	
  create	
  and	
  manage	
  their	
  own	
  
tables	
  within	
  a	
  large	
  HBase	
  instance.
Separate	
  ACLs	
  
• Performance	
  IsolaQon	
  *	
  
• Region	
  Server	
  groups	
  	
  *
•

RSG$blue$

!12

Namespace(blue(

RSG$green$orange$

Namespace(green(

Namespace(orange(
Mean	
  Time	
  to	
  Recovery	
  (MTTR)
Region'available''
for'RW'

Region'
unavailable'

detect'

split'
hdfs'

hdfs'

replay'

assign'

recovered'

hdfs'

Machine	
  failures	
  happen	
  in	
  distributed	
  systems	
  
• Repair	
  ==	
  split,	
  assign,	
  replay	
  
• Distributed	
  log	
  replay	
  with	
  fast	
  write	
  recovery	
  
• Writes	
  in	
  HBase	
  do	
  not	
  incur	
  reads.	
  
• regions	
  open	
  for	
  write,	
  during	
  distributed	
  log	
  replay
•

!13
Apache	
  HBase	
  0.98
(The	
  Next	
  Release)

!14
0.98:	
  HBase
Wire	
  CompaQble	
  with	
  0.96	
  
• “No	
  binary	
  guarantee	
  with	
  0.96”	
  
• 0.94	
  -­‐>	
  0.98	
  upgrade	
  is	
  possible	
  
•

•
•
•
•
•

!15

Map-­‐Reduce	
  over	
  Snapshots	
  
Stripe	
  Compac=on	
  (Pluggable	
  Compac=on	
  Algo)	
  
Improved	
  WAL	
  write	
  throughput	
  
Reverse	
  Scan	
  
Per-­‐Cell	
  ACLs,	
  Visibility	
  Labels,	
  Encryp=on
HBase	
  Security
•

0.90+	
  Kerberos	
  (RPC	
  Level)	
  

•

0.92+	
  Access	
  Control	
  List	
  (aka	
  ACL)	
  

•

0.98+	
  Per-­‐Cell	
  ACLs	
  

•

0.98+	
  Visibility	
  Labels	
  (aka	
  Tags)	
  

•

0.98+	
  Transparent	
  Table/CF	
  encrypQon	
  (HBASE-­‐7544)	
  
•

!16

Java	
  KeyStore	
  support
“

What’s	
  Next?	
  
Apache	
  HBase	
  1.0	
  and	
  beyond

	
  	
  	
  	
  	
  	
  	
  

!17

”
QuesQons?
17	
  February	
  2014	
  (HBase	
  London	
  Meetup)

Speaker	
  Name	
  or	
  Subhead	
  Goes	
  Here

!18

Más contenido relacionado

La actualidad más candente

HBaseCon 2015- HBase @ Flipboard
HBaseCon 2015- HBase @ FlipboardHBaseCon 2015- HBase @ Flipboard
HBaseCon 2015- HBase @ FlipboardMatthew Blair
 
HBaseCon 2012 | HBase, the Use Case in eBay Cassini
HBaseCon 2012 | HBase, the Use Case in eBay Cassini HBaseCon 2012 | HBase, the Use Case in eBay Cassini
HBaseCon 2012 | HBase, the Use Case in eBay Cassini Cloudera, Inc.
 
HBase Read High Availability Using Timeline Consistent Region Replicas
HBase  Read High Availability Using Timeline Consistent Region ReplicasHBase  Read High Availability Using Timeline Consistent Region Replicas
HBase Read High Availability Using Timeline Consistent Region Replicasenissoz
 
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...HBaseCon
 
Dancing with the elephant h base1_final
Dancing with the elephant   h base1_finalDancing with the elephant   h base1_final
Dancing with the elephant h base1_finalasterix_smartplatf
 
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseHBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseCloudera, Inc.
 
Operating and supporting HBase Clusters
Operating and supporting HBase ClustersOperating and supporting HBase Clusters
Operating and supporting HBase Clustersenissoz
 
HBaseCon 2015: Elastic HBase on Mesos
HBaseCon 2015: Elastic HBase on MesosHBaseCon 2015: Elastic HBase on Mesos
HBaseCon 2015: Elastic HBase on MesosHBaseCon
 
HBase: Where Online Meets Low Latency
HBase: Where Online Meets Low LatencyHBase: Where Online Meets Low Latency
HBase: Where Online Meets Low LatencyHBaseCon
 
Meet hbase 2.0
Meet hbase 2.0Meet hbase 2.0
Meet hbase 2.0enissoz
 
The State of HBase Replication
The State of HBase ReplicationThe State of HBase Replication
The State of HBase ReplicationHBaseCon
 
Rails on HBase
Rails on HBaseRails on HBase
Rails on HBasezpinter
 
Rigorous and Multi-tenant HBase Performance Measurement
Rigorous and Multi-tenant HBase Performance MeasurementRigorous and Multi-tenant HBase Performance Measurement
Rigorous and Multi-tenant HBase Performance MeasurementDataWorks Summit
 
HBase and HDFS: Understanding FileSystem Usage in HBase
HBase and HDFS: Understanding FileSystem Usage in HBaseHBase and HDFS: Understanding FileSystem Usage in HBase
HBase and HDFS: Understanding FileSystem Usage in HBaseenissoz
 
HBaseCon 2013: Compaction Improvements in Apache HBase
HBaseCon 2013: Compaction Improvements in Apache HBaseHBaseCon 2013: Compaction Improvements in Apache HBase
HBaseCon 2013: Compaction Improvements in Apache HBaseCloudera, Inc.
 
Meet HBase 1.0
Meet HBase 1.0Meet HBase 1.0
Meet HBase 1.0enissoz
 
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketHBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketCloudera, Inc.
 

La actualidad más candente (19)

HBaseCon 2015- HBase @ Flipboard
HBaseCon 2015- HBase @ FlipboardHBaseCon 2015- HBase @ Flipboard
HBaseCon 2015- HBase @ Flipboard
 
HBaseCon 2012 | HBase, the Use Case in eBay Cassini
HBaseCon 2012 | HBase, the Use Case in eBay Cassini HBaseCon 2012 | HBase, the Use Case in eBay Cassini
HBaseCon 2012 | HBase, the Use Case in eBay Cassini
 
HBase Read High Availability Using Timeline Consistent Region Replicas
HBase  Read High Availability Using Timeline Consistent Region ReplicasHBase  Read High Availability Using Timeline Consistent Region Replicas
HBase Read High Availability Using Timeline Consistent Region Replicas
 
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
HBaseCon 2015: Apache Phoenix - The Evolution of a Relational Database Layer ...
 
Dancing with the elephant h base1_final
Dancing with the elephant   h base1_finalDancing with the elephant   h base1_final
Dancing with the elephant h base1_final
 
NoSQL: Cassadra vs. HBase
NoSQL: Cassadra vs. HBaseNoSQL: Cassadra vs. HBase
NoSQL: Cassadra vs. HBase
 
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBaseHBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
HBaseCon 2013: Project Valta - A Resource Management Layer over Apache HBase
 
Operating and supporting HBase Clusters
Operating and supporting HBase ClustersOperating and supporting HBase Clusters
Operating and supporting HBase Clusters
 
HBaseCon 2015: Elastic HBase on Mesos
HBaseCon 2015: Elastic HBase on MesosHBaseCon 2015: Elastic HBase on Mesos
HBaseCon 2015: Elastic HBase on Mesos
 
HBase: Where Online Meets Low Latency
HBase: Where Online Meets Low LatencyHBase: Where Online Meets Low Latency
HBase: Where Online Meets Low Latency
 
Meet hbase 2.0
Meet hbase 2.0Meet hbase 2.0
Meet hbase 2.0
 
SolrCloud on Hadoop
SolrCloud on HadoopSolrCloud on Hadoop
SolrCloud on Hadoop
 
The State of HBase Replication
The State of HBase ReplicationThe State of HBase Replication
The State of HBase Replication
 
Rails on HBase
Rails on HBaseRails on HBase
Rails on HBase
 
Rigorous and Multi-tenant HBase Performance Measurement
Rigorous and Multi-tenant HBase Performance MeasurementRigorous and Multi-tenant HBase Performance Measurement
Rigorous and Multi-tenant HBase Performance Measurement
 
HBase and HDFS: Understanding FileSystem Usage in HBase
HBase and HDFS: Understanding FileSystem Usage in HBaseHBase and HDFS: Understanding FileSystem Usage in HBase
HBase and HDFS: Understanding FileSystem Usage in HBase
 
HBaseCon 2013: Compaction Improvements in Apache HBase
HBaseCon 2013: Compaction Improvements in Apache HBaseHBaseCon 2013: Compaction Improvements in Apache HBase
HBaseCon 2013: Compaction Improvements in Apache HBase
 
Meet HBase 1.0
Meet HBase 1.0Meet HBase 1.0
Meet HBase 1.0
 
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, PhotobucketHBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
HBaseCon 2012 | Solbase - Kyungseog Oh, Photobucket
 

Destacado

メインフレームの構造理解
メインフレームの構造理解メインフレームの構造理解
メインフレームの構造理解Atsushi Nakamoto
 
Howfortunateweare
HowfortunateweareHowfortunateweare
Howfortunateweareguest1b49bd
 
Mobile meetup talk 2013.05.29 Testing mobile apps
Mobile meetup talk 2013.05.29 Testing mobile appsMobile meetup talk 2013.05.29 Testing mobile apps
Mobile meetup talk 2013.05.29 Testing mobile appshhartz
 
000267 pterygium and_topical_bevacizumab
000267 pterygium and_topical_bevacizumab000267 pterygium and_topical_bevacizumab
000267 pterygium and_topical_bevacizumabDr. Anand Sudhalkar
 
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)Ellh
 
2008 DREAM Initiative CID Presentation
2008 DREAM Initiative CID Presentation2008 DREAM Initiative CID Presentation
2008 DREAM Initiative CID PresentationStephanie Lindley
 
Smile in the snow
Smile in the snowSmile in the snow
Smile in the snowguest672216
 
Eval 4 evaluation
Eval 4 evaluationEval 4 evaluation
Eval 4 evaluationhamsterlife
 
The U.S. Government’s Global Health Initiative
The U.S. Government’s Global Health InitiativeThe U.S. Government’s Global Health Initiative
The U.S. Government’s Global Health Initiativejehill3
 
Mat o prat - bättre hälsa med digitala piller?
Mat o prat - bättre hälsa med digitala piller?Mat o prat - bättre hälsa med digitala piller?
Mat o prat - bättre hälsa med digitala piller?Dag Forsén
 
Online program evaluation proposal
Online program evaluation proposalOnline program evaluation proposal
Online program evaluation proposalbednarl
 
Animal groups by_food
Animal groups by_foodAnimal groups by_food
Animal groups by_foodpilarica006
 
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...Ellh
 
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσεις
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσειςτο καπλάνι της βιτρίνας δραστηριότητες και ερωτήσεις
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσειςEllh
 
φε το βιβλίο που μου έκανε συντροφιά 3
φε το βιβλίο που μου έκανε συντροφιά 3φε το βιβλίο που μου έκανε συντροφιά 3
φε το βιβλίο που μου έκανε συντροφιά 3Ellh
 
MediaPost's Social Media Insider Summit '14 - Snackable Take Home Lessons
MediaPost's Social Media Insider Summit '14 - Snackable Take Home LessonsMediaPost's Social Media Insider Summit '14 - Snackable Take Home Lessons
MediaPost's Social Media Insider Summit '14 - Snackable Take Home LessonsMichoel Ogince
 

Destacado (20)

メインフレームの構造理解
メインフレームの構造理解メインフレームの構造理解
メインフレームの構造理解
 
Howfortunateweare
HowfortunateweareHowfortunateweare
Howfortunateweare
 
Mobile meetup talk 2013.05.29 Testing mobile apps
Mobile meetup talk 2013.05.29 Testing mobile appsMobile meetup talk 2013.05.29 Testing mobile apps
Mobile meetup talk 2013.05.29 Testing mobile apps
 
000267 pterygium and_topical_bevacizumab
000267 pterygium and_topical_bevacizumab000267 pterygium and_topical_bevacizumab
000267 pterygium and_topical_bevacizumab
 
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)
παρουσιαση προγραμματος-επιμορφωσης-ειδικο-μερος (1)
 
Case study chaves_2013_en
Case study chaves_2013_enCase study chaves_2013_en
Case study chaves_2013_en
 
2008 DREAM Initiative CID Presentation
2008 DREAM Initiative CID Presentation2008 DREAM Initiative CID Presentation
2008 DREAM Initiative CID Presentation
 
Smile in the snow
Smile in the snowSmile in the snow
Smile in the snow
 
Eval 4 evaluation
Eval 4 evaluationEval 4 evaluation
Eval 4 evaluation
 
The U.S. Government’s Global Health Initiative
The U.S. Government’s Global Health InitiativeThe U.S. Government’s Global Health Initiative
The U.S. Government’s Global Health Initiative
 
Mat o prat - bättre hälsa med digitala piller?
Mat o prat - bättre hälsa med digitala piller?Mat o prat - bättre hälsa med digitala piller?
Mat o prat - bättre hälsa med digitala piller?
 
Online program evaluation proposal
Online program evaluation proposalOnline program evaluation proposal
Online program evaluation proposal
 
Animal groups by_food
Animal groups by_foodAnimal groups by_food
Animal groups by_food
 
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...
11 ∆ΕΚΕΜΒΡΙΟΥ, Η ΠΑΓΚΟΣΜΙΑ ΗΜΕΡΑ ΤΟΥ ΠΑΙ∆ΙΟΥ - ΥΠΕΝΘΥΜΙΣΗ ΓΙΑ ΤΑ ∆ΙΚΑΙΩΜΑΤΑ Τ...
 
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσεις
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσειςτο καπλάνι της βιτρίνας δραστηριότητες και ερωτήσεις
το καπλάνι της βιτρίνας δραστηριότητες και ερωτήσεις
 
Vertrouw je mij?
Vertrouw je mij?Vertrouw je mij?
Vertrouw je mij?
 
φε το βιβλίο που μου έκανε συντροφιά 3
φε το βιβλίο που μου έκανε συντροφιά 3φε το βιβλίο που μου έκανε συντροφιά 3
φε το βιβλίο που μου έκανε συντροφιά 3
 
2pahang
2pahang2pahang
2pahang
 
MediaPost's Social Media Insider Summit '14 - Snackable Take Home Lessons
MediaPost's Social Media Insider Summit '14 - Snackable Take Home LessonsMediaPost's Social Media Insider Summit '14 - Snackable Take Home Lessons
MediaPost's Social Media Insider Summit '14 - Snackable Take Home Lessons
 
Olma Presentation
Olma PresentationOlma Presentation
Olma Presentation
 

Similar a HBase lon meetup

Introduction to Apache HBase
Introduction to Apache HBaseIntroduction to Apache HBase
Introduction to Apache HBaseGokuldas Pillai
 
Hbasepreso 111116185419-phpapp02
Hbasepreso 111116185419-phpapp02Hbasepreso 111116185419-phpapp02
Hbasepreso 111116185419-phpapp02Gokuldas Pillai
 
Facebook keynote-nicolas-qcon
Facebook keynote-nicolas-qconFacebook keynote-nicolas-qcon
Facebook keynote-nicolas-qconYiwei Ma
 
支撑Facebook消息处理的h base存储系统
支撑Facebook消息处理的h base存储系统支撑Facebook消息处理的h base存储系统
支撑Facebook消息处理的h base存储系统yongboy
 
Facebook Messages & HBase
Facebook Messages & HBaseFacebook Messages & HBase
Facebook Messages & HBase强 王
 
HBase.pptx
HBase.pptxHBase.pptx
HBase.pptxSadhik7
 
Intro to HBase - Lars George
Intro to HBase - Lars GeorgeIntro to HBase - Lars George
Intro to HBase - Lars GeorgeJAX London
 
H base introduction & development
H base introduction & developmentH base introduction & development
H base introduction & developmentShashwat Shriparv
 
Introduction To HBase
Introduction To HBaseIntroduction To HBase
Introduction To HBaseAnil Gupta
 
Large-scale Web Apps @ Pinterest
Large-scale Web Apps @ PinterestLarge-scale Web Apps @ Pinterest
Large-scale Web Apps @ PinterestHBaseCon
 
Apache HBase: Where We've Been and What's Upcoming
Apache HBase: Where We've Been and What's UpcomingApache HBase: Where We've Been and What's Upcoming
Apache HBase: Where We've Been and What's Upcominghuguk
 
CCS334 BIG DATA ANALYTICS UNIT 5 PPT ELECTIVE PAPER
CCS334 BIG DATA ANALYTICS UNIT 5 PPT  ELECTIVE PAPERCCS334 BIG DATA ANALYTICS UNIT 5 PPT  ELECTIVE PAPER
CCS334 BIG DATA ANALYTICS UNIT 5 PPT ELECTIVE PAPERKrishnaVeni451953
 
April 2013 HUG: HBase as a Service at Yahoo!
April 2013 HUG: HBase as a Service at Yahoo!April 2013 HUG: HBase as a Service at Yahoo!
April 2013 HUG: HBase as a Service at Yahoo!Yahoo Developer Network
 

Similar a HBase lon meetup (20)

Introduction to Apache HBase
Introduction to Apache HBaseIntroduction to Apache HBase
Introduction to Apache HBase
 
Hbasepreso 111116185419-phpapp02
Hbasepreso 111116185419-phpapp02Hbasepreso 111116185419-phpapp02
Hbasepreso 111116185419-phpapp02
 
Facebook keynote-nicolas-qcon
Facebook keynote-nicolas-qconFacebook keynote-nicolas-qcon
Facebook keynote-nicolas-qcon
 
支撑Facebook消息处理的h base存储系统
支撑Facebook消息处理的h base存储系统支撑Facebook消息处理的h base存储系统
支撑Facebook消息处理的h base存储系统
 
Facebook Messages & HBase
Facebook Messages & HBaseFacebook Messages & HBase
Facebook Messages & HBase
 
HBase.pptx
HBase.pptxHBase.pptx
HBase.pptx
 
Hbase
HbaseHbase
Hbase
 
Apache HBase™
Apache HBase™Apache HBase™
Apache HBase™
 
Intro to HBase - Lars George
Intro to HBase - Lars GeorgeIntro to HBase - Lars George
Intro to HBase - Lars George
 
Hbase
HbaseHbase
Hbase
 
H base introduction & development
H base introduction & developmentH base introduction & development
H base introduction & development
 
Introduction To HBase
Introduction To HBaseIntroduction To HBase
Introduction To HBase
 
Hadoop - Apache Hbase
Hadoop - Apache HbaseHadoop - Apache Hbase
Hadoop - Apache Hbase
 
Hbase.pptx
Hbase.pptxHbase.pptx
Hbase.pptx
 
Large-scale Web Apps @ Pinterest
Large-scale Web Apps @ PinterestLarge-scale Web Apps @ Pinterest
Large-scale Web Apps @ Pinterest
 
Apache HBase: Where We've Been and What's Upcoming
Apache HBase: Where We've Been and What's UpcomingApache HBase: Where We've Been and What's Upcoming
Apache HBase: Where We've Been and What's Upcoming
 
CCS334 BIG DATA ANALYTICS UNIT 5 PPT ELECTIVE PAPER
CCS334 BIG DATA ANALYTICS UNIT 5 PPT  ELECTIVE PAPERCCS334 BIG DATA ANALYTICS UNIT 5 PPT  ELECTIVE PAPER
CCS334 BIG DATA ANALYTICS UNIT 5 PPT ELECTIVE PAPER
 
ApacheCon-HBase-2016
ApacheCon-HBase-2016ApacheCon-HBase-2016
ApacheCon-HBase-2016
 
April 2013 HUG: HBase as a Service at Yahoo!
April 2013 HUG: HBase as a Service at Yahoo!April 2013 HUG: HBase as a Service at Yahoo!
April 2013 HUG: HBase as a Service at Yahoo!
 
Hbase 20141003
Hbase 20141003Hbase 20141003
Hbase 20141003
 

HBase lon meetup