如果我们使用 Chronos,是否需要 Mesos master?

Is Mesos master needed if we use Chronos?

假设我有 1 台 Chronos 机器,1 台 Mesos master 运行 在另一台机器上,Mesos slave 运行 在另一台机器上(总共 3 台机器)。

如果我停止 Mesos master,Mesos slave 是否仍会继续工作(并在未来承担更多任务以执行),Chronos 会像 Mesos slave 的 master 一样工作还是始终需要 Mesos master?

+1 用于一些文档 link 用于深入和清晰地理解 Chronos-Mesos 交互。提前致谢。

1 个更快速的问题:如果 Mesos 从站停止,Mesos 主站是否也会执行从站功能(我的意思是任务执行)?

If I stop the mesos master, will the mesos slave still continue working

,计划任务不会被终止并正常工作,但 Chronos 不会收到有关其状态的通知

and take up more tasks in future for execution

,没有 Master chronos 无法获取有关任务状态的信息并安排新任务——它只与 Master 对话。

will chronos behave like a master for the mesos slave or mesos master is always needed ?

总是需要 Mesos Master。

If mesos slave is stopped, will mesos master perform the slave functinos as well (I mean the task execution)

。 Master 只将任务委托给它不执行它们的代理。

此概念在 Mesos Architecure and framework guide

中有描述