Package io.debezium.data
Class Envelope.FieldName
- java.lang.Object
-
- io.debezium.data.Envelope.FieldName
-
-
Field Summary
Fields Modifier and Type Field Description static StringAFTERTheafterfield is used to store the state of a record after an operation.static StringBEFOREThebeforefield is used to store the state of a record before an operation.static StringOPERATIONTheopfield is used to store the kind of operation on a record.static StringSOURCETheoriginfield is used to store the information about the source of a record, including the Kafka Connect partition and offset information.static StringTIMESTAMPThets_msfield is used to store the information about the local time at which the connector processed/generated the event.static StringTRANSACTIONThe optional metadata information associated with transaction - like transaction id.
-
Constructor Summary
Constructors Constructor Description FieldName()
-
-
-
Field Detail
-
BEFORE
public static final String BEFORE
Thebeforefield is used to store the state of a record before an operation.- See Also:
- Constant Field Values
-
AFTER
public static final String AFTER
Theafterfield is used to store the state of a record after an operation.- See Also:
- Constant Field Values
-
OPERATION
public static final String OPERATION
Theopfield is used to store the kind of operation on a record.- See Also:
- Constant Field Values
-
SOURCE
public static final String SOURCE
Theoriginfield is used to store the information about the source of a record, including the Kafka Connect partition and offset information.- See Also:
- Constant Field Values
-
TRANSACTION
public static final String TRANSACTION
The optional metadata information associated with transaction - like transaction id.- See Also:
- Constant Field Values
-
TIMESTAMP
public static final String TIMESTAMP
Thets_msfield is used to store the information about the local time at which the connector processed/generated the event. The timestamp values are the number of milliseconds past epoch (January 1, 1970), and determined by theJVM current time in milliseconds. Note that the accuracy of the timestamp value depends on the JVM's system clock and all of its assumptions, limitations, conditions, and variations.- See Also:
- Constant Field Values
-
-