Storm on DC/OS
Apache Storm是Twitter开源的分布式实时计算平台。Mesos Storm(以下用“SM”特指Mesos Storm)让Storm框架能够在DCOS集群中部署并使用Mesos为计算拓扑调度资源。
Storm框架回顾
在DC/OS上运行Storm
Storm有自己一套独立的计算作业调度管理机制。Storm通过Nimbus管理Supervisor节点,计算作业(Topology)通过Nimbus部署到Supervisor节点上,然后根据拓扑配置启动相应的Worker(JVM)进程处理作业任务。在一个Supervisor节点上可以启动多个Worker,每个Worker对应一个WorkerSlot,它是由Host和Port及对应的资源配置组成。
Storm的上述拓扑调度机制与Mesos的资源调度非常相似,Mesos向框架提供计算资源,框架的Scheduler接收资源并在分配的资源上通过Executor启动任务。
因此,为实现Storm框架使用Mesos提供的计算资源,Mesos Storm重写了Storm提供的INimbus和IScheduler接口。
INimbus接口:
public interface INimbus {
void prepare(Map stormConf, String schedulerLocalDir);
/**
* Returns all slots that are available for the next round of scheduling. A slot is available for scheduling
* if it is free and can be assigned to, or if it is used and can be reassigned.
*/
Collection<WorkerSlot> allSlotsAvailableForScheduling(Collection<SupervisorDetails> existingSupervisors, Topologies topologies, Set<String> topologiesMissingAssignments);
/**
* this is called after the assignment is changed in ZK
* @param topologies
* @param newSlotsByTopologyId
*/
void assignSlots(Topologies topologies, Map<String, Collection<WorkerSlot>> newSlotsByTopologyId);
/**
* map from node id to supervisor details
* @param existingSupervisors
* @param nodeId
* @return
*/
String getHostName(Map<String, SupervisorDetails> existingSupervisors, String nodeId);
IScheduler getForcedScheduler();
}
IScheduler接口:
public interface IScheduler {
void prepare(Map conf);
/**
* Set assignments for the topologies which needs scheduling. The new assignments is available
* through `cluster.getAssignments()`
*
*@param topologies all the topologies in the cluster, some of them need schedule. Topologies object here
* only contain static information about topologies. Information like assignments, slots are all in
* the `cluster` object.
*@param cluster the cluster these topologies are running in. `cluster` contains everything user
* need to develop a new scheduling logic. e.g. supervisors information, available slots, current
* assignments for all the topologies etc. User can set the new assignment for topologies using
* cluster.setAssignmentById()`
*/
void schedule(Topologies topologies, Cluster cluster);
}
在代码中,MesosNimbus实现INimbus接口,向Mesos Master注册并接收Mesos提供的资源。当接收到拓扑部署请求时,它向IMesosStormScheduler接口的实现获取所有可用于处理该拓扑的WorkerSlot。
IMesosStormScheduler接口:
/**
* A scheduler needs to implement the following interface for it to be MesosNimbus compatible.
*/
public interface IMesosStormScheduler {
/**
* This method is invoked by Nimbus when it wants to get a list of worker slots that are available for assigning the
* topology workers. In Nimbus's view, a "WorkerSlot" is a host and port that it can use to assign a worker.
* <p/>
* TODO: Rotating Map itself needs to be refactored. Perhaps make RotatingMap inherit Map so users can pass in a
* map? or Make the IMesosStormScheduler itself generic so _offers could be of any type?
*/
public List<WorkerSlot> allSlotsAvailableForScheduling(RotatingMap<Protos.OfferID, Protos.Offer> offers,
Collection<SupervisorDetails> existingSupervisors,
Topologies topologies, Set<String> topologiesMissingAssignments);
}
IMesosStormScheduler接口的实现DefaultScheduler同时实现了IScheduler接口,它负责根据拓扑的请求信息以及Mesos提供的资源,生成特定于拓扑的MesosWorkerSlot。
Storm框架仅对WorkerSlot有认知,因此MesosWorkerSlot继承自WorkerSlot又稍有差别:
不同的拓扑对CPU和内存的资源需求不同,MesosWorkerSlot根据拓扑信息创建,只属于该特定拓扑,不能用于为其它拓扑启动Worker。
MesosNimbus为拓扑调度资源时,DefaultScheduler可以提前获知拓扑的信息,为其分配MesosWorkerSlot并将分配信息保存到mesosWorkerSlotMap,在Storm后续调用schedule时,可以直接从mesosWorkerSlotMap中获取可用的slot。
当前Storm在调用schedule方法时,每次都会传入新创建的WorkerSlot实例,因此需要mesosWorkerSlotMap暂存基于Mesos的Slot调度实例信息。
编译
从Github仓库下载源代码。
Mesos Storm支持独立打包和镜像打包两种方式。本文重点关注镜像打包(以及后续在DC/OS中部署)方式。在编写本文时,官方仓库中默认的配置为:
- JDK 7
- Storm 1.0.2
- Mesos 0.27.0
为适应DC/OS的部署,本仓库对上述配置及部分Dockerfile的内容进行了调整(JDK替换为Oracle JDK,时区及locale等),目前配置为:
- JDK 8
- Storm 1.0.2
- Mesos 1.1.0
同时,支持为Executor容器镜像提供Volume存储。
也可以在编译镜像时指定版本信息:
make images STORM_RELEASE=1.0.2 MESOS_RELEASE=1.1.0 JAVA_PRODUCT_VERSION=8 DOCKER_REPO=chrisrc/storm
编译构建镜像时有几个重要的文件需要引起注意:
storm.yaml
这个文件中的配置会被打包到Docker镜像中,可以在运行时通过Docker的Volume挂载加载外部storm.yaml定义。
Dockerfile
这个文件定义了镜像的打包脚本,可以根据需要调整。
bin/run-with-marathon.sh
这个文件用于在DC/OS中通过Marathon启动Storm Nimbus及UI。
运行
如果成功编译了容器镜像,且存在Mesos集群并正确配置(关于配置可参考后面章节),则可以通过下述命令启动Nimbus及UI:
Nimbus:
docker run -it chrisrc/storm:0.2.1-SNAPSHOT-1.0.2-1.1.0-jdk8 bin/storm-mesos nimbus
UI:
docker run -it chrisrc/storm:0.2.1-SNAPSHOT-1.0.2-1.1.0-jdk8 bin/storm ui
向Storm/Mesos集群部署拓扑与向传统的Storm集群部署拓扑的方式完全相同,请参考后续示例。
Storm/Mesos支持在Vagrant中运行,详细信息请参考文档。