Module Values.KxDataviewSegmentConfigurationSource

The configuration that contains the database path of the data that you want to place on each selected volume. Each segment must have a unique database path for each volume. If you do not explicitly specify any database path for a volume, they are accessible from the cluster through the default S3/object store segment.

Sourcetype nonrec t = {
  1. dbPaths : SegmentConfigurationDbPathList.t;
    (*

    The database path of the data that you want to place on each selected volume for the segment. Each segment must have a unique database path for each volume.

    *)
  2. volumeName : KxVolumeName.t;
    (*

    The name of the volume where you want to add data.

    *)
  3. onDemand : BooleanValue.t option;
    (*

    Enables on-demand caching on the selected database path when a particular file or a column of the database is accessed. When on demand caching is True, dataviews perform minimal loading of files on the filesystem as needed. When it is set to False, everything is cached. The default value is False.

    *)
}
Sourceval context_ : string
Sourceval make : ?onDemand:??? -> dbPaths:SegmentConfigurationDbPathList.t -> volumeName:KxVolumeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanValue.t | `List of [> `String of DbPath.t ] list | `String of KxVolumeName.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