package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. computeRatioAvg : float;
    (*

    Relative amount of time the average shard spent on CPU-bound tasks.

    *)
  2. computeRatioMax : float;
    (*

    Relative amount of time the slowest shard spent on CPU-bound tasks.

    *)
  3. id : int64;
    (*

    Unique ID for stage within plan.

    *)
  4. name : string;
    (*

    Human-readable name for stage.

    *)
  5. readRatioAvg : float;
    (*

    Relative amount of time the average shard spent reading input.

    *)
  6. readRatioMax : float;
    (*

    Relative amount of time the slowest shard spent reading input.

    *)
  7. recordsRead : int64;
    (*

    Number of records read into the stage.

    *)
  8. recordsWritten : int64;
    (*

    Number of records written by the stage.

    *)
  9. steps : ExplainQueryStep.t list;
    (*

    List of operations within the stage in dependency order (approximately chronological).

    *)
  10. waitRatioAvg : float;
    (*

    Relative amount of time the average shard spent waiting to be scheduled.

    *)
  11. waitRatioMax : float;
    (*

    Relative amount of time the slowest shard spent waiting to be scheduled.

    *)
  12. writeRatioAvg : float;
    (*

    Relative amount of time the average shard spent on writing output.

    *)
  13. writeRatioMax : float;
    (*

    Relative amount of time the slowest shard spent on writing output.

    *)
}
val computeRatioAvg : (t, float) GapiLens.t
val computeRatioMax : (t, float) GapiLens.t
val id : (t, int64) GapiLens.t
val name : (t, string) GapiLens.t
val readRatioAvg : (t, float) GapiLens.t
val readRatioMax : (t, float) GapiLens.t
val recordsRead : (t, int64) GapiLens.t
val recordsWritten : (t, int64) GapiLens.t
val steps : (t, ExplainQueryStep.t list) GapiLens.t
val waitRatioAvg : (t, float) GapiLens.t
val waitRatioMax : (t, float) GapiLens.t
val writeRatioAvg : (t, float) GapiLens.t
val writeRatioMax : (t, float) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t