package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiBigqueryV2Model.ExplainQueryStageSource

Sourcetype 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.

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

Innovation. Community. Security.