Hoya : HBase on YARN (2013-08-20 HBase Hug)

25
© Hortonworks Inc. 2013 Hoya: HBase on YARN Steve Loughran & Devaraj Das {stevel, ddas} at hortonworks.com @steveloughran, @ddraj August 2013

description

An introduction to Hoya, a prototype YARN application for deploying HBase in a YARN, using YARN to allocate space on nodes for the processes. The Hoya Application Master monitors the health of the Region Servers and, whenever one exits or whose host drops out of the cluster, requests a new YARN container and deploys a new instance. Hoya also supports live cluster flexing: increasing and decreasing cluster size dynamically. The source code is at https://github.com/hortonworks/hoya

Transcript of Hoya : HBase on YARN (2013-08-20 HBase Hug)

Page 1: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2013

Hoya: HBase on YARNSteve Loughran & Devaraj Das

{stevel, ddas} at hortonworks.com@steveloughran, @ddraj

August 2013

Page 2: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

Hadoop as Next-Gen Platform

HADOOP 1.0

HDFS(redundant, reliable storage)

MapReduce(cluster resource management

& data processing)

HDFS2(redundant, reliable storage)

YARN(cluster resource management)

MapReduce(data processing)

Others(data processing)

HADOOP 2.0

Single Use SystemBatch Apps

Multi Purpose PlatformBatch, Interactive, Online, Streaming, …

Page 2

Page 3: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

YARN: Taking Hadoop Beyond Batch

Page 3

Applications Run Natively IN Hadoop

HDFS2 (Redundant, Reliable Storage)

YARN (Cluster Resource Management)

BATCH(MapReduce)

INTERACTIVE(Tez)

STREAMING(Storm, S4,…)

GRAPH(Giraph)

HPC MPI(OpenMPI)

OTHER(Search)

(Weave…)Samza

Store ALL DATA in one place…

Interact with that data in MULTIPLE WAYS

with Predictable Performance and Quality of Service

IN-MEMORY(Spark)

Page 4: Hoya : HBase on YARN (2013-08-20 HBase Hug)

HDFS2 (Redundant, Reliable Storage)

YARN (Cluster Resource Management)

BATCH(MapReduce)

INTERACTIVE(Tez)

STREAMING(Storm, S4,…)

GRAPH(Giraph)

HPC MPI(OpenMPI)

OTHER(Search)

(Weave…)HBaseIN-MEMORY

(Spark)

HDFS2 (Redundant, Reliable Storage)

YARN (Cluster Resource Management)

BATCH(MapReduce)

INTERACTIVE(Tez)

STREAMING(Storm, S4,…)

GRAPH(Giraph)

HPC MPI(OpenMPI)

OTHER(Search)

(Weave…)HBase

IN-MEMORY(Spark)

And HBase?

Page 5: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. Page 5

Page 6: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Hoya: On-demand HBase clusters

1. Small HBase cluster in large YARN cluster

2. Dynamic HBase clusters

3. Elastic HBase clusters

4. Transient/intermittent clusters for workflows

5. Custom versions & configurations

6. More efficient utilization/sharing of cluster

Page 6

Page 7: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Goal: No code changes in HBase

• Today : none

HBase 0.95.2$ mvn install -Dhadoop.version=2.0

But we'd like• ZK reporting of web UI ports• Allocation of tables in RS to be block location aware• A way to get from failed RS to YARN container (configurable ID is enough)

Page 7

Page 8: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Hoya – the tool

• Hoya (Hbase On YArn)– Java tool–Completely CLI driven

• Input: cluster description as JSON–Specification of cluster: node options, ZK params–Configuration generated–Entire state persisted

• Actions: create, freeze/thaw, flex, exists <cluster>• Can change cluster state later

–Add/remove nodes, started / stopped states

Page 9: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

YARN manages the cluster

Page 9

HDFS

YARN Node Manager

HDFS

YARN Node Manager

HDFS

YARN Resource Manager

HDFS

YARN Node Manager

• Servers run YARN Node Managers• NM's heartbeat to Resource Manager• RM schedules work over cluster• RM allocates containers to apps• NMs start containers• NMs report container health

Page 10: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

Hoya Client creates App Master

Page 10

HDFS

YARN Node Manager

HDFS

YARN Node Manager

HDFS

YARN Resource Manager

HDFS

YARN Node Manager

Hoya ClientHoya AM

Page 11: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

AM deploys HBase with YARN

Page 11

HDFS

YARN Node Manager

HDFS

YARN Node Manager

HDFS

YARN Resource Manager

Hoya Client

HDFS

YARN Node Manager

Hoya AM [HBase Master]

HBase Region Server

HBase Region Server

Page 12: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

HBase & clients bind via Zookeeper

Page 12

HDFS

YARN Node Manager

HBase Region Server

HDFS

YARN Node Manager

HBase Region Server

HDFS

YARN Resource Manager

HBase Client HDFS

YARN Node Manager

Hoya AM [HBase Master]Hoya Client

Page 13: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

YARN notifies AM of failures

Page 13

HDFS

YARN Node Manager

HDFS

YARN Node Manager

HBase Region Server

HDFS

YARN Resource Manager

Hoya Client

HDFS

YARN Node Manager

Hoya AM [HBase Master]

HBase Region Server

HBase Region Server

Page 14: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

HOYA - cool bits

• Cluster specification stored as JSON in HDFS• Conf dir cached, dynamically patched before pushing up as local resources for master & region servers

• HBase .tar file stored in HDFS -clusters can use the same/different HBase versions

• Handling of cluster flexing is the same code as unplanned container loss.

• No Hoya code on region servers

Page 14

Page 15: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

HOYA - AM RPC API

//shut downpublic void stopCluster();

//change #of worker nodes in clusterpublic boolean flexNodes(int workers);

//get JSON description of live clusterpublic String getClusterStatus();

Page 15

Page 16: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Flexing/failure handling is same code

public boolean flexNodes(int workers) throws IOException { log.info("Flexing cluster count from {} to {}", numTotalContainers, workers); if (numTotalContainers == workers) { //no-op log.info("Flex is a no-op"); return false; } //update the #of workers numTotalContainers = workers;

// ask for more containers if needed reviewRequestAndReleaseNodes(); return true; }

Page 16

Page 17: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc. 2012

{ "name" : "TestHBaseMaster", "createTime" : 1371738651059, "flags" : { "--Xtest" : "true" }, "originConfigurationPath" : "file:/Users/stevel/.hoya/cluster/TestHBaseMaster/orig", "generatedConfigurationPath" : "file:/Users/stevel/.hoya/cluster/TestHBaseMaster/gen", "hBaseClientProperties" : { }, "hbaseHome" : "/Users/stevel/Java/Apps/hbase", "hbaseRootPath" : "file:/Users/stevel/.hoya/cluster/TestHBaseMaster/hbase", "zkHosts" : "127.0.0.1", "zkPath" : "/hbase", "zkPort" : 49564 "workers" : 5, "masterHeap" : 128, "masters" : 1, "workerHeap" : 256, "startTime" : 0, "state" : 1, "statusTime" : 0, "stopTime" : 0,}

Spec: declarative parts; this is persisted

Cluster Specification: persistent & wire

Page 18: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Current status

• Able to create & stop on-demand HBase clusters

–RegionServer failures handled

• Able to specify specific HBase configuration:

hbase-home or .tar.gz

• Cluster stop, restart, flex

• get (dynamic) conf as XML, properties

Page 19: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

What's Next

• Multiple roles: worker, master, monitor

--role worker --roleopts worker yarn.vcores 2

• Multiple Providers: HBase + others

– client side: preflight, configuration patching

– server side: starting roles, liveness

• Liveness probes: HTTP GET, RPC port, RPC op?

• YARN enhancements

Page 19

Page 20: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

YARN-896: long-lived services

1. Container reconnect on AM restart

2. Token renewal on long-lived apps

3. Containers: signalling, >1 process sequence

4. AM/RM managed gang scheduling

5. Anti-affinity hint in container requests

6. Service Registry - ZK?

7. Logging

All post Hadoop-2.1

Page 20

Page 21: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Hoya needs a home!

Page 21

https://github.com/hortonworks/hoya

Page 22: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc

Questions?

hortonworks.com

Page 22

Page 23: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc

http://hortonworks.com/careers/Page 23

P.S: we are hiring

Page 24: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Requirements of an App: MUST

• Install from tarball; run as normal user• Pre-configurable, static instance config data• deploy/start without human intervention• support dynamic discovery/binding of peers• co-existence with other app instance in cluster/nodes• handle co-located role instances• Persist data to HDFS• support 'kill' as a shutdown option• support role instances moving after failure• handle failed role instances

Page 24

Page 25: Hoya : HBase on YARN (2013-08-20 HBase Hug)

© Hortonworks Inc.

Requirements of an App: SHOULD

• Be configurable by Hadoop XML files• Publish dynamically assigned web UI & RPC ports• Support cluster flexing up/down• Support API to determine role instance status• Make it possible to determine role instance ID from app

• Support simple remote liveness probes

Page 25