Mesos:使用容器是可选的吗?
Mesos: Is it optional to use containers?
请告诉我我的理解是否正确:
- 默认情况下,Mesos 执行器是从属节点中的一个进程。它不会像容器一样干净地与其他进程隔离。
- Mesos 支持主要用于资源隔离的容器。 可选,非强制使用。
谢谢!
NOTE In addition to Docker and cgroups, Mesos provides another means of isolation for other POSIX-compliant operating systems:
posix/cpu, posix/ mem, and posix/disk. It’s worth noting that these
isolation methods don’t isolate resources, but instead monitor
resource use.
默认情况下 POSIX 隔离器已启用,因此它们不会隔离进程,如您所见,隔离是可选的。
请告诉我我的理解是否正确:
- 默认情况下,Mesos 执行器是从属节点中的一个进程。它不会像容器一样干净地与其他进程隔离。
- Mesos 支持主要用于资源隔离的容器。 可选,非强制使用。
谢谢!
NOTE In addition to Docker and cgroups, Mesos provides another means of isolation for other POSIX-compliant operating systems: posix/cpu, posix/ mem, and posix/disk. It’s worth noting that these isolation methods don’t isolate resources, but instead monitor resource use.
默认情况下 POSIX 隔离器已启用,因此它们不会隔离进程,如您所见,隔离是可选的。