Module Values.ClusterConfigurationSource

Configuration for node modes in the DbCluster.

Sourcetype nonrec t = {
  1. ingestQueryInstances : Integer.t option;
    (*

    The number of instances in the DbCluster which can both ingest and query.

    *)
  2. queryOnlyInstances : Integer.t option;
    (*

    The number of instances in the DbCluster which can only query.

    *)
  3. dedicatedCompactor : Boolean.t option;
    (*

    Indicates if the compactor instance is a standalone instance or not.

    *)
}
Sourceval make : ?ingestQueryInstances:??? -> ?queryOnlyInstances:??? -> ?dedicatedCompactor:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.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