Module Values_0.IcebergCompactionMetricsSource

Compaction metrics for Iceberg for the optimizer run.

Sourcetype nonrec t = {
  1. numberOfBytesCompacted : MetricCounts.t option;
    (*

    The number of bytes removed by the compaction job run.

    *)
  2. numberOfFilesCompacted : MetricCounts.t option;
    (*

    The number of files removed by the compaction job run.

    *)
  3. dpuHours : DpuHours.t option;
    (*

    The number of DPU hours consumed by the job.

    *)
  4. numberOfDpus : DpuCounts.t option;
    (*

    The number of DPUs consumed by the job, rounded up to the nearest whole number.

    *)
  5. jobDurationInHour : DpuDurationInHour.t option;
    (*

    The duration of the job in hours.

    *)
}
Sourceval make : ?numberOfBytesCompacted:??? -> ?numberOfFilesCompacted:??? -> ?dpuHours:??? -> ?numberOfDpus:??? -> ?jobDurationInHour:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of DpuHours.t | `Integer of DpuCounts.t | `Long of MetricCounts.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t