Values.ExecutorsSummarySourceContains summary information about an executor.
type nonrec t = {executorId : ExecutorId.t option;The UUID of the executor.
*)executorType : ExecutorType.t option;The type of executor used for the application (COORDINATOR, GATEWAY, or WORKER).
*)startDateTime : Long.t option;The date and time that the executor started.
*)terminationDateTime : Long.t option;The date and time that the executor was terminated.
*)executorState : ExecutorState.t option;The processing state of the executor. A description of each state follows. CREATING - The executor is being started, including acquiring resources. CREATED - The executor has been started. REGISTERED - The executor has been registered. TERMINATING - The executor is in the process of shutting down. TERMINATED - The executor is no longer running. FAILED - Due to a failure, the executor is no longer running.
*)executorSize : Long.t option;The smallest unit of compute that a session can request from Athena. Size is measured in data processing unit (DPU) values, a relative measure of processing power.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `Long of Long.t | `String of ExecutorId.t ])
list ]