Module Values.IcebergCompactionSettingsSource

Contains details about the compaction settings for an Iceberg table.

Sourcetype nonrec t = {
  1. targetFileSizeMB : PositiveInteger.t option;
    (*

    The target file size for the table in MB.

    *)
  2. strategy : IcebergCompactionStrategy.t option;
    (*

    The compaction strategy to use for the table. This determines how files are selected and combined during compaction operations.

    *)
}
Sourceval make : ?targetFileSizeMB:??? -> ?strategy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PositiveInteger.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