Module Values_0.IcebergOrphanFileDeletionConfigurationSource

The configuration for an Iceberg orphan file deletion optimizer.

Sourcetype nonrec t = {
  1. orphanFileRetentionPeriodInDays : NullableInteger.t option;
    (*

    The number of days that orphan files should be retained before file deletion. If an input is not provided, the default value 3 will be used.

    *)
  2. location : MessageString.t option;
    (*

    Specifies a directory in which to look for files (defaults to the table's location). You may choose a sub-directory rather than the top-level table location.

    *)
  3. runRateInHours : NullableInteger.t option;
    (*

    The interval in hours between orphan file deletion job runs. This parameter controls how frequently the orphan file deletion optimizer will run to clean up orphan files. The value must be between 3 and 168 hours (7 days). If an input is not provided, the default value 24 will be used.

    *)
}
Sourceval make : ?orphanFileRetentionPeriodInDays:??? -> ?location:??? -> ?runRateInHours:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of NullableInteger.t | `String of MessageString.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