Documentation ¶
Overview ¶
Package executor is used to invoke child processes across various operating systems in a way that provides the following features:
- Least privilege - Resource constraints - Process isolation
An operating system may be something like "windows" or "linux with systemd". Executors allow drivers like `exec` and `java` to share an implementation for isolation capabilities on a particular operating system.
For example:
- `exec` and `java` on Linux use a cgroups executor - `exec` and `java` on FreeBSD use a jails executor
However, drivers that provide their own isolation should not use executors. For example, using an executor to start QEMU means that the QEMU call is run inside a chroot+cgroup, even though the VM already provides isolation for the task running inside it. This is an extraneous level of indirection.
Index ¶
- func SetCommand(e Executor, name string, args []string)
- type BasicExecutor
- func (e *BasicExecutor) Command() *exec.Cmd
- func (e *BasicExecutor) ConfigureTaskDir(taskName string, alloc *allocdir.AllocDir) error
- func (e *BasicExecutor) ForceStop() error
- func (e *BasicExecutor) ID() (string, error)
- func (e *BasicExecutor) Limit(resources *structs.Resources) error
- func (e *BasicExecutor) Open(id string) error
- func (e *BasicExecutor) Shutdown() error
- func (e *BasicExecutor) Start() error
- func (e *BasicExecutor) Wait() *cstructs.WaitResult
- type Executor
- type UniversalExecutor
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func SetCommand ¶
Types ¶
type BasicExecutor ¶
type BasicExecutor struct {
// contains filtered or unexported fields
}
BasicExecutor should work everywhere, and as a result does not include any resource restrictions or runas capabilities.
func (*BasicExecutor) Command ¶
func (e *BasicExecutor) Command() *exec.Cmd
func (*BasicExecutor) ConfigureTaskDir ¶
func (e *BasicExecutor) ConfigureTaskDir(taskName string, alloc *allocdir.AllocDir) error
func (*BasicExecutor) ForceStop ¶
func (e *BasicExecutor) ForceStop() error
func (*BasicExecutor) ID ¶
func (e *BasicExecutor) ID() (string, error)
func (*BasicExecutor) Open ¶
func (e *BasicExecutor) Open(id string) error
func (*BasicExecutor) Shutdown ¶
func (e *BasicExecutor) Shutdown() error
func (*BasicExecutor) Start ¶
func (e *BasicExecutor) Start() error
func (*BasicExecutor) Wait ¶
func (e *BasicExecutor) Wait() *cstructs.WaitResult
type Executor ¶
type Executor interface { // Limit must be called before Start and restricts the amount of resources // the process can use. Note that an error may be returned ONLY IF the // executor implements resource limiting. Otherwise Limit is ignored. Limit(*structs.Resources) error // ConfigureTaskDir must be called before Start and ensures that the tasks // directory is properly configured. ConfigureTaskDir(taskName string, alloc *allocdir.AllocDir) error // Start the process. This may wrap the actual process in another command, // depending on the capabilities in this environment. Errors that arise from // Limits or Runas may bubble through Start() Start() error // Open should be called to restore a previous execution. This might be needed if // nomad is restarted. Open(string) error // Wait waits till the user's command is completed. Wait() *cstructs.WaitResult // Returns a handle that is executor specific for use in reopening. ID() (string, error) // Shutdown should use a graceful stop mechanism so the application can // perform checkpointing or cleanup, if such a mechanism is available. // If such a mechanism is not available, Shutdown() should call ForceStop(). Shutdown() error // ForceStop will terminate the process without waiting for cleanup. Every // implementations must provide this. ForceStop() error // Command provides access the underlying Cmd struct in case the Executor // interface doesn't expose the functionality you need. Command() *exec.Cmd }
Executor is an interface that any platform- or capability-specific exec wrapper must implement. You should not need to implement a Java executor. Rather, you would implement a cgroups executor that the Java driver will use.
func NewBasicExecutor ¶
func NewBasicExecutor() Executor
func NewExecutor ¶
func NewExecutor() Executor
type UniversalExecutor ¶
type UniversalExecutor struct {
BasicExecutor
}
UniversalExecutor wraps the BasicExecutor