Module Values.ConsumerGroupReplicationSource

Details about consumer group replication.

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

    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 option;
    (*

    Enables synchronization of consumer groups to target cluster.

    *)
  4. synchroniseConsumerGroupOffsets : bool option;
    (*

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

    *)
  5. consumerGroupOffsetSyncMode : ConsumerGroupOffsetSyncMode.t option;
    (*

    The consumer group offset synchronization mode. With LEGACY, offsets are synchronized when producers write to the source cluster. With ENHANCED, consumer offsets are synchronized regardless of producer location. ENHANCED requires a corresponding replicator that replicates data from the target cluster to the source cluster.

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