All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.connect.kafka.sink.SubDocumentMode Maven / Gradle / Ivy

Go to download

A Kafka Connect Couchbase connector for copying data between Kafka and Couchbase Server.

There is a newer version: 4.2.6
Show newest version
package com.couchbase.connect.kafka.sink;

public enum SubDocumentMode {
  /**
   * Replaces the value at the subdocument path with the Kafka message.
   */
  UPSERT,

  /**
   * Prepend the Kafka message to the array at the subdocument path.
   */
  ARRAY_PREPEND,

  /**
   * Append the Kafka message to the array at the subdocument path.
   */
  ARRAY_APPEND,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy