Module Values.ConsumerGroupReplicationUpdateSource

Details about consumer group replication.

Sourcetype nonrec t = {
  1. consumerGroupsToExclude : string list;
    (*

    List of regular expression patterns indicating the consumer groups that should not be replicated.

    *)
  2. consumerGroupsToReplicate : string list;
    (*

    List of regular expression patterns indicating the consumer groups to copy.

    *)
  3. detectAndCopyNewConsumerGroups : bool;
    (*

    Enables synchronization of consumer groups to target cluster.

    *)
  4. synchroniseConsumerGroupOffsets : bool;
    (*

    Enables synchronization of consumer group offsets to target cluster. The translated offsets will be written to topic __consumer_offsets.

    *)
}
Sourceval context_ : string
Sourceval make : consumerGroupsToExclude:string list -> consumerGroupsToReplicate:string list -> detectAndCopyNewConsumerGroups:bool -> synchroniseConsumerGroupOffsets:bool -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] list ]) 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