Uses of Class
io.debezium.config.Field
-
-
Uses of Field in io.debezium.config
Fields in io.debezium.config declared as Field Modifier and Type Field Description static FieldCommonConnectorConfig. BINARY_HANDLING_MODEstatic FieldCommonConnectorConfig. CUSTOM_CONVERTERSstatic FieldCommonConnectorConfig. EVENT_PROCESSING_FAILURE_HANDLING_MODEstatic FieldCommonConnectorConfig. INCREMENTAL_SNAPSHOT_CHUNK_SIZEstatic FieldCommonConnectorConfig. MAX_BATCH_SIZEstatic FieldCommonConnectorConfig. MAX_QUEUE_SIZEstatic FieldCommonConnectorConfig. MAX_QUEUE_SIZE_IN_BYTESstatic FieldCommonConnectorConfig. POLL_INTERVAL_MSstatic FieldCommonConnectorConfig. PROVIDE_TRANSACTION_METADATAstatic FieldCommonConnectorConfig. QUERY_FETCH_SIZEstatic FieldCommonConnectorConfig. RETRIABLE_RESTART_WAITstatic FieldCommonConnectorConfig. SANITIZE_FIELD_NAMESstatic FieldCommonConnectorConfig. SIGNAL_DATA_COLLECTIONstatic FieldCommonConnectorConfig. SKIPPED_OPERATIONSstatic FieldCommonConnectorConfig. SNAPSHOT_DELAY_MSstatic FieldCommonConnectorConfig. SNAPSHOT_FETCH_SIZEstatic FieldCommonConnectorConfig. SNAPSHOT_MAX_THREADSstatic FieldCommonConnectorConfig. SNAPSHOT_MODE_TABLESstatic FieldCommonConnectorConfig. SOURCE_STRUCT_MAKER_VERSIONstatic FieldCommonConnectorConfig. TOMBSTONES_ON_DELETEFields in io.debezium.config with type parameters of type Field Modifier and Type Field Description private List<Field>ConfigDefinition. connectorprivate List<Field>ConfigDefinitionEditor. connectorprivate List<Field>ConfigDefinition. eventsprivate List<Field>ConfigDefinitionEditor. eventsprivate Map<String,Field>Field.Set. fieldsByNameprivate List<Field>ConfigDefinition. historyprivate List<Field>ConfigDefinitionEditor. historyprivate List<Field>ConfigDefinition. typeprivate List<Field>ConfigDefinitionEditor. typeMethods in io.debezium.config that return Field Modifier and Type Method Description Field[]Field.Set. asArray()Get the fields in this set as an array.static FieldField. create(String name)Create an immutableFieldinstance with the given property name.static FieldField. create(String name, String displayName)Create an immutableFieldinstance with the given property name.static FieldField. create(String name, String displayName, String description)Create an immutableFieldinstance with the given property name and description.static FieldField. create(String name, String displayName, String description, boolean defaultValue)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, int defaultValue)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, long defaultValue)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, String defaultValue)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, BooleanSupplier defaultValueGenerator)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, IntSupplier defaultValueGenerator)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, LongSupplier defaultValueGenerator)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. create(String name, String displayName, String description, Supplier<Object> defaultValueGenerator)Create an immutableFieldinstance with the given property name, description, and default value.static FieldField. createInternal(String name)Create an immutable internalFieldinstance with the given property name.FieldField.Set. fieldWithName(String name)Get the field with the given {Field#name() name}.FieldField. withDefault(boolean defaultValue)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(int defaultValue)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(long defaultValue)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(String defaultValue)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(BooleanSupplier defaultValueGenerator)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(IntSupplier defaultValueGenerator)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDefault(LongSupplier defaultValueGenerator)Create and return a new Field instance that is a copy of this field but with the given default value.FieldField. withDependents(String... dependents)Create and return a new Field instance that is a copy of this field but with the given display name.FieldField. withDescription(String description)Create and return a new Field instance that is a copy of this field but with the given description.FieldField. withDisplayName(String displayName)Create and return a new Field instance that is a copy of this field but with the given display name.<T extends Enum<T>>
FieldField. withEnum(Class<T> enumType)Create and return a new Field instance that is a copy of this field but has atypeofSchema.Type.STRING, arecommenderthat returns a list ofEnum namesas valid values, and a validator that verifies values are valid enumeration names.<T extends Enum<T>>
FieldField. withEnum(Class<T> enumType, T defaultOption)Create and return a new Field instance that is a copy of this field but has atypeofSchema.Type.STRING, arecommenderthat returns a list ofEnum namesas valid values, and a validator that verifies values are valid enumeration names.FieldField. withImportance(org.apache.kafka.common.config.ConfigDef.Importance importance)Create and return a new Field instance that is a copy of this field but with the given importance.FieldField. withInvisibleRecommender()FieldField. withNoValidation()Create and return a new Field instance that is a copy of this field but that uses no validation.FieldField. withRecommender(Field.Recommender recommender)Create and return a new Field instance that is a copy of this field but with the given recommender.FieldField. withType(org.apache.kafka.common.config.ConfigDef.Type type)Create and return a new Field instance that is a copy of this field but with the given type.FieldField. withValidation(Field.Validator... validators)Create and return a new Field instance that is a copy of this field but that in addition toexisting validationthe supplied validation function(s) are also used.FieldField. withWidth(org.apache.kafka.common.config.ConfigDef.Width width)Create and return a new Field instance that is a copy of this field but with the given width.Methods in io.debezium.config that return types with arguments of type Field Modifier and Type Method Description Iterable<Field>ConfigDefinition. all()List<Field>ConfigDefinition. connector()List<Field>ConfigDefinition. events()List<Field>ConfigDefinition. history()Iterator<Field>Field.Set. iterator()List<Field>ConfigDefinition. type()Methods in io.debezium.config with parameters of type Field Modifier and Type Method Description voidField.ValidationOutput. accept(Field field, Object value, String problemMessage)Accept a problem with the given value for the field.default BConfiguration.ConfigBuilder. changeBoolean(Field field, Function<Boolean,Boolean> function)Apply the function to this builder to change a potentially existing boolean field.default BConfiguration.ConfigBuilder. changeDouble(Field field, Function<Double,Double> function)Apply the function to this builder to change a potentially existing double field.default BConfiguration.ConfigBuilder. changeFloat(Field field, Function<Float,Float> function)Apply the function to this builder to change a potentially existing float field.default BConfiguration.ConfigBuilder. changeInteger(Field field, Function<Integer,Integer> function)Apply the function to this builder to change a potentially existing integer field.default BConfiguration.ConfigBuilder. changeLong(Field field, Function<Long,Long> function)Apply the function to this builder to change a potentially existing long field.Configuration.BuilderConfiguration.Builder. changeString(Field field, Function<String,String> function)BConfiguration.ConfigBuilder. changeString(Field field, Function<String,String> function)Apply the function to this builder to change a potentially existing string field.ConfigDefinitionEditorConfigDefinitionEditor. connector(Field... fields)ConfigDefinitionEditorConfigDefinitionEditor. events(Field... fields)ConfigDefinitionEditorConfigDefinitionEditor. excluding(Field... fields)Removes the given fields from this configuration editor.default booleanConfiguration. getBoolean(Field field)Get the boolean value associated with the given field when that field has a default value.default booleanConfiguration. getBoolean(Field field, boolean defaultValue)Get the boolean value associated with the given field, returning the field's default value if there is no such key-value pair.default BooleanConfiguration. getBoolean(Field field, BooleanSupplier defaultValueSupplier)Get the boolean value associated with the given key, using the given supplier to obtain a default value if there is no such key-value pair.default DurationConfiguration. getDuration(Field field, TemporalUnit unit)Gets the duration value associated with the given key.default StringConfiguration. getFallbackStringProperty(Field newProperty, Field oldProperty)Returns the string config value from newProperty config field if it's set or its default value when it's not set/null.If both are null it returns the value of the oldProperty config field, or its default value when it's null.default StringConfiguration. getFallbackStringPropertyWithWarning(Field newProperty, Field oldProperty)Returns the string config value from newProperty config field with a warning if it's set or its default value when it's not set/null.default <T> TConfiguration. getInstance(Field field, Class<T> clazz)Get an instance of the class given by the value in the configuration associated with the given field.default <T> TConfiguration. getInstance(Field field, Class<T> clazz, Configuration configuration)Get an instance of the class given by the value in the configuration associated with the given field.default <T> TConfiguration. getInstance(Field field, Class<T> type, Supplier<ClassLoader> classloaderSupplier)Get an instance of the class given by the value in the configuration associated with the given field.default intConfiguration. getInteger(Field field)Get the integer value associated with the given field, returning the field's default value if there is no such key-value pair.default intConfiguration. getInteger(Field field, int defaultValue)Get the integer value associated with the given field, returning the field's default value if there is no such key-value pair.default IntegerConfiguration. getInteger(Field field, IntSupplier defaultValueSupplier)Get the integer value associated with the given key, using the given supplier to obtain a default value if there is no such key-value pair.default longConfiguration. getLong(Field field)Get the long value associated with the given field, returning the field's default value if there is no such key-value pair.default longConfiguration. getLong(Field field, long defaultValue)Get the long value associated with the given field, returning the field's default value if there is no such key-value pair.default LongConfiguration. getLong(Field field, LongSupplier defaultValueSupplier)Get the long value associated with the given key, using the given supplier to obtain a default value if there is no such key-value pair.default NumberConfiguration. getNumber(Field field)Get the numeric value associated with the given field, returning the field's default value if there is no such key-value pair.default StringConfiguration. getString(Field field)Get the string value associated with the given field, returning the field's default value if there is no such key-value pair in this configuration.default StringConfiguration. getString(Field field, String defaultValue)Get the string value associated with the given field, returning the field's default value if there is no such key-value pair in this configuration.default StringConfiguration. getString(Field field, Supplier<String> defaultValueSupplier)Get the boolean value associated with the given key, using the given supplier to obtain a default value if there is no such key-value pair.default List<String>Configuration. getStrings(Field field, String regex)Get the string value(s) associated with the given key, where the supplied regular expression is used to parse the single string value into multiple values.default List<String>Configuration. getTrimmedStrings(Field field, String regex)Get the string value(s) associated with the given key, where the supplied regular expression is used to parse the single string value into multiple values.static org.apache.kafka.common.config.ConfigDefField. group(org.apache.kafka.common.config.ConfigDef configDef, String groupName, Field... fields)Add this field to the given configuration definition.ConfigDefinitionEditorConfigDefinitionEditor. history(Field... fields)static intField. isBoolean(Configuration config, Field field, Field.ValidationOutput problems)static intField. isClassName(Configuration config, Field field, Field.ValidationOutput problems)static intField. isDouble(Configuration config, Field field, Field.ValidationOutput problems)static intField. isInteger(Configuration config, Field field, Field.ValidationOutput problems)static intField. isListOfRegex(Configuration config, Field field, Field.ValidationOutput problems)static intField. isLong(Configuration config, Field field, Field.ValidationOutput problems)static intField. isNonNegativeInteger(Configuration config, Field field, Field.ValidationOutput problems)static intField. isNonNegativeLong(Configuration config, Field field, Field.ValidationOutput problems)static intField. isOptional(Configuration config, Field field, Field.ValidationOutput problems)static intField. isPositiveInteger(Configuration config, Field field, Field.ValidationOutput problems)static intField. isPositiveLong(Configuration config, Field field, Field.ValidationOutput problems)static intField. isRegex(Configuration config, Field field, Field.ValidationOutput problems)static intField. isRequired(Configuration config, Field field, Field.ValidationOutput problems)static intField. isShort(Configuration config, Field field, Field.ValidationOutput problems)static intField. isZoneOffset(Configuration config, Field field, Field.ValidationOutput problems)static Field.SetField. setOf(Field... fields)Create a set of fields.ConfigDefinitionEditorConfigDefinitionEditor. type(Field... fields)intField.EnumRecommender. validate(Configuration config, Field field, Field.ValidationOutput problems)intField.RangeValidator. validate(Configuration config, Field field, Field.ValidationOutput problems)intField.Validator. validate(Configuration config, Field field, Field.ValidationOutput problems)Validate the supplied value for the field, and report any problems to the designated consumer.private static intCommonConnectorConfig. validateMaxQueueSize(Configuration config, Field field, Field.ValidationOutput problems)static intCommonConnectorConfig. validateServerNameIsDifferentFromHistoryTopicName(Configuration config, Field field, Field.ValidationOutput problems)private static intCommonConnectorConfig. validateSkippedOperation(Configuration config, Field field, Field.ValidationOutput problems)List<Object>Field.EnumRecommender. validValues(Field field, Configuration config)List<Object>Field.InvisibleRecommender. validValues(Field field, Configuration config)List<Object>Field.OneOfRecommender. validValues(Field field, Configuration config)List<Object>Field.Recommender. validValues(Field field, Configuration config)Return a set of recommended (and valid) values for the field given the current configuration values.booleanField.EnumRecommender. visible(Field field, Configuration config)booleanField.InvisibleRecommender. visible(Field field, Configuration config)booleanField.OneOfRecommender. visible(Field field, Configuration config)booleanField.Recommender. visible(Field field, Configuration config)Set the visibility of the field given the current configuration values.default BConfiguration.ConfigBuilder. with(Field field, boolean value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, double value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, float value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, int value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, long value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, EnumeratedValue value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, Class<?> value)Associate the given class name value with the specified field.default BConfiguration.ConfigBuilder. with(Field field, Object value)Associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. with(Field field, String value)Associate the given value with the key of the specified field.Field.SetField.Set. with(Field... fields)Get a new set that contains the fields in this set and those supplied.default BConfiguration.ConfigBuilder. withDefault(Field field, boolean value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, double value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, float value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, int value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, long value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, Class<?> value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, Object value)If the field does not have a value, then associate the given value with the key of the specified field.default BConfiguration.ConfigBuilder. withDefault(Field field, String value)If the field does not have a value, then associate the given value with the key of the specified field.Method parameters in io.debezium.config with type arguments of type Field Modifier and Type Method Description private voidConfigDefinition. addToConfigDef(org.apache.kafka.common.config.ConfigDef configDef, String group, List<Field> fields)private voidConfigDefinition. addToList(List<Field> list, List<Field> fields)voidField.Set. forEachTopLevelField(Consumer<Field> consumer)Call the supplied function for each of this set's fields that are not included as dependents in other fields.static Field.SetField. setOf(Iterable<Field> fields)Create a set of fields.booleanCommonConnectorConfig. validate(Iterable<Field> fields, Field.ValidationOutput problems)Validates the supplied fields in this configuration.default booleanConfiguration. validate(Iterable<Field> fields, Field.ValidationOutput problems)Validate the supplied fields in this configuration.protected voidField. validate(Configuration config, Function<String,Field> fieldSupplier, Map<String,org.apache.kafka.common.config.ConfigValue> results)Validate this field in the supplied configuration, updating theConfigValuefor the field with the results.booleanCommonConnectorConfig. validateAndRecord(Iterable<Field> fields, Consumer<String> problems)Validate the supplied fields in this configuration.default booleanConfiguration. validateAndRecord(Iterable<Field> fields, Consumer<String> problems)Validate the supplied fields in this configuration.Field.SetField.Set. with(Iterable<Field> fields)Get a new set that contains the fields in this set and those supplied.Constructor parameters in io.debezium.config with type arguments of type Field Constructor Description ConfigDefinition(String connectorName, List<Field> type, List<Field> connector, List<Field> history, List<Field> events)Set(Collection<Field> fields) -
Uses of Field in io.debezium.connector.common
Methods in io.debezium.connector.common that return types with arguments of type Field Modifier and Type Method Description protected abstract Iterable<Field>BaseSourceTask. getAllConfigurationFields()Returns all configurationFieldsupported by this source task. -
Uses of Field in io.debezium.heartbeat
Fields in io.debezium.heartbeat declared as Field Modifier and Type Field Description static FieldDatabaseHeartbeatImpl. HEARTBEAT_ACTION_QUERYstatic FieldHeartbeat. HEARTBEAT_INTERVALstatic FieldHeartbeat. HEARTBEAT_TOPICS_PREFIX -
Uses of Field in io.debezium.jdbc
Fields in io.debezium.jdbc declared as Field Modifier and Type Field Description static FieldJdbcConfiguration. CONNECTION_FACTORY_CLASSAn optional field for datasource factory class that will be used to build the datasource connection pool.static FieldJdbcConfiguration. CONNECTION_TIMEOUT_MSstatic FieldJdbcConfiguration. DATABASEA field for the name of the database.static FieldJdbcConfiguration. HOSTNAMEA field for the hostname of the database server.static FieldJdbcConfiguration. ON_CONNECT_STATEMENTSA semicolon separated list of SQL statements to be executed when the connection to database is established.static FieldJdbcConfiguration. PASSWORDA field for the password of the database.static FieldJdbcConfiguration. PORTA field for the port of the database server.static FieldJdbcConfiguration. USERA field for the user of the database.Methods in io.debezium.jdbc that return Field Modifier and Type Method Description private static Field[]JdbcConnection. combineVariables(Field[] overriddenVariables, Field... defaultVariables)Methods in io.debezium.jdbc with parameters of type Field Modifier and Type Method Description private static Field[]JdbcConnection. combineVariables(Field[] overriddenVariables, Field... defaultVariables)private static StringJdbcConnection. findAndReplace(String url, Properties props, Field... variables)static JdbcConnection.ConnectionFactoryJdbcConnection. patternBasedFactory(String urlPattern, Field... variables)Create aJdbcConnection.ConnectionFactorythat replaces variables in the supplied URL pattern.static JdbcConnection.ConnectionFactoryJdbcConnection. patternBasedFactory(String urlPattern, String driverClassName, ClassLoader classloader, Field... variables)Create aJdbcConnection.ConnectionFactorythat uses the specific JDBC driver class loaded with the given class loader, and obtains the connection URL by replacing the following variables in the URL pattern:${hostname}${port}${dbname}${username}${password} -
Uses of Field in io.debezium.relational
Fields in io.debezium.relational declared as Field Modifier and Type Field Description static FieldRelationalDatabaseConnectorConfig. COLUMN_BLACKLISTDeprecated.static FieldRelationalDatabaseConnectorConfig. COLUMN_EXCLUDE_LISTA comma-separated list of regular expressions that match fully-qualified names of columns to be excluded from monitoring and change messages.static FieldRelationalDatabaseConnectorConfig. COLUMN_INCLUDE_LISTA comma-separated list of regular expressions that match fully-qualified names of columns to be excluded from monitoring and change messages.static FieldRelationalDatabaseConnectorConfig. COLUMN_WHITELISTDeprecated.static FieldRelationalDatabaseConnectorConfig. DATABASE_BLACKLISTDeprecated.static FieldRelationalDatabaseConnectorConfig. DATABASE_EXCLUDE_LISTA comma-separated list of regular expressions that match database names to be excluded from monitoring.static FieldHistorizedRelationalDatabaseConnectorConfig. DATABASE_HISTORYThe database history class is hidden in the#configDef()since that is designed to work with a user interface, and in these situations using Kafka is the only way to go.static FieldRelationalDatabaseConnectorConfig. DATABASE_INCLUDE_LISTA comma-separated list of regular expressions that match database names to be monitored.static FieldRelationalDatabaseConnectorConfig. DATABASE_NAMEstatic FieldRelationalDatabaseConnectorConfig. DATABASE_WHITELISTDeprecated.static FieldRelationalDatabaseConnectorConfig. DECIMAL_HANDLING_MODEstatic FieldRelationalDatabaseConnectorConfig. HOSTNAMEstatic FieldRelationalDatabaseConnectorConfig. INCLUDE_SCHEMA_CHANGESstatic FieldRelationalDatabaseConnectorConfig. MASK_COLUMNstatic FieldRelationalDatabaseConnectorConfig. MASK_COLUMN_WITH_HASHstatic FieldRelationalDatabaseConnectorConfig. MSG_KEY_COLUMNSstatic FieldRelationalDatabaseConnectorConfig. PASSWORDstatic FieldRelationalDatabaseConnectorConfig. PORTstatic FieldRelationalDatabaseConnectorConfig. PROPAGATE_COLUMN_SOURCE_TYPEstatic FieldRelationalDatabaseConnectorConfig. PROPAGATE_DATATYPE_SOURCE_TYPEstatic FieldRelationalDatabaseConnectorConfig. SCHEMA_BLACKLISTDeprecated.static FieldRelationalDatabaseConnectorConfig. SCHEMA_EXCLUDE_LISTA comma-separated list of regular expressions that match schema names to be excluded from monitoring.static FieldRelationalDatabaseConnectorConfig. SCHEMA_INCLUDE_LISTA comma-separated list of regular expressions that match schema names to be monitored.static FieldRelationalDatabaseConnectorConfig. SCHEMA_WHITELISTDeprecated.static FieldRelationalDatabaseConnectorConfig. SERVER_NAMEstatic FieldRelationalDatabaseConnectorConfig. SNAPSHOT_FULL_COLUMN_SCAN_FORCEstatic FieldRelationalDatabaseConnectorConfig. SNAPSHOT_LOCK_TIMEOUT_MSstatic FieldRelationalDatabaseConnectorConfig. SNAPSHOT_SELECT_STATEMENT_OVERRIDES_BY_TABLEstatic FieldRelationalDatabaseConnectorConfig. TABLE_BLACKLISTDeprecated.static FieldRelationalDatabaseConnectorConfig. TABLE_EXCLUDE_LISTA comma-separated list of regular expressions that match the fully-qualified names of tables to be excluded from monitoring.static FieldRelationalDatabaseConnectorConfig. TABLE_IGNORE_BUILTINstatic FieldRelationalDatabaseConnectorConfig. TABLE_INCLUDE_LISTA comma-separated list of regular expressions that match the fully-qualified names of tables to be monitored.static FieldRelationalDatabaseConnectorConfig. TABLE_WHITELISTDeprecated.static FieldRelationalDatabaseConnectorConfig. TIME_PRECISION_MODEstatic FieldRelationalDatabaseConnectorConfig. TRUNCATE_COLUMNstatic FieldRelationalDatabaseConnectorConfig. USERMethods in io.debezium.relational with parameters of type Field Modifier and Type Method Description private static intRelationalDatabaseConnectorConfig. validateColumnBlacklist(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateColumnExcludeList(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateDatabaseBlacklist(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateDatabaseExcludeList(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateMessageKeyColumnsField(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateSchemaBlacklist(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateSchemaExcludeList(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateServerName(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateTableBlacklist(Configuration config, Field field, Field.ValidationOutput problems)private static intRelationalDatabaseConnectorConfig. validateTableExcludeList(Configuration config, Field field, Field.ValidationOutput problems) -
Uses of Field in io.debezium.relational.history
Fields in io.debezium.relational.history declared as Field Modifier and Type Field Description static FieldKafkaDatabaseHistory. BOOTSTRAP_SERVERSstatic FieldDatabaseHistory. DDL_FILTERstatic FieldFileDatabaseHistory. FILE_PATHstatic FieldKafkaDatabaseHistory. INTERNAL_CONNECTOR_CLASSstatic FieldKafkaDatabaseHistory. INTERNAL_CONNECTOR_IDstatic FieldAbstractDatabaseHistory. INTERNAL_PREFER_DDLstatic FieldDatabaseHistory. NAMEstatic FieldKafkaDatabaseHistory. RECOVERY_POLL_ATTEMPTSstatic FieldKafkaDatabaseHistory. RECOVERY_POLL_INTERVAL_MSstatic FieldDatabaseHistory. SKIP_UNPARSEABLE_DDL_STATEMENTSstatic FieldDatabaseHistory. STORE_ONLY_CAPTURED_TABLES_DDLstatic FieldDatabaseHistory. STORE_ONLY_MONITORED_TABLES_DDLDeprecated.static FieldKafkaDatabaseHistory. TOPICFields in io.debezium.relational.history with type parameters of type Field Modifier and Type Field Description static Collection<Field>FileDatabaseHistory. ALL_FIELDSMethods in io.debezium.relational.history with parameters of type Field Modifier and Type Method Description static intDatabaseHistory. validateMonitoredTables(Configuration config, Field field, Field.ValidationOutput problems) -
Uses of Field in io.debezium.serde.json
Fields in io.debezium.serde.json declared as Field Modifier and Type Field Description static FieldJsonSerdeConfig. FROM_FIELDstatic FieldJsonSerdeConfig. UNKNOWN_PROPERTIES_IGNOREDMethods in io.debezium.serde.json with parameters of type Field Modifier and Type Method Description private static intJsonSerdeConfig. isEnvelopeFieldName(Configuration config, Field field, Field.ValidationOutput problems) -
Uses of Field in io.debezium.transforms
Fields in io.debezium.transforms declared as Field Modifier and Type Field Description static FieldExtractNewRecordStateConfigDefinition. ADD_FIELDSstatic FieldExtractNewRecordStateConfigDefinition. ADD_FIELDS_PREFIXstatic FieldExtractNewRecordStateConfigDefinition. ADD_HEADERSstatic FieldExtractNewRecordStateConfigDefinition. ADD_HEADERS_PREFIXstatic FieldExtractNewRecordStateConfigDefinition. DROP_TOMBSTONESstatic FieldExtractNewRecordStateConfigDefinition. HANDLE_DELETESprivate static FieldByLogicalTableRouter. KEY_ENFORCE_UNIQUENESSprivate static FieldByLogicalTableRouter. KEY_FIELD_NAMEprivate static FieldByLogicalTableRouter. KEY_FIELD_REGEXprivate static FieldByLogicalTableRouter. KEY_FIELD_REPLACEMENTstatic FieldExtractNewRecordStateConfigDefinition. ROUTE_BY_FIELDprivate static FieldByLogicalTableRouter. TOPIC_REGEXprivate static FieldByLogicalTableRouter. TOPIC_REPLACEMENTMethods in io.debezium.transforms with parameters of type Field Modifier and Type Method Description private static intByLogicalTableRouter. validateKeyFieldReplacement(Configuration config, Field field, Field.ValidationOutput problems)If KEY_FIELD_REGEX has a value that is really a regex, then the KEY_FIELD_REPLACEMENT must be a non-empty value. -
Uses of Field in io.debezium.transforms.outbox
Fields in io.debezium.transforms.outbox declared as Field Modifier and Type Field Description (package private) static Field[]EventRouterConfigDefinition. CONFIG_FIELDS(package private) static FieldEventRouterConfigDefinition. FIELD_EVENT_ID(package private) static FieldEventRouterConfigDefinition. FIELD_EVENT_KEY(package private) static FieldEventRouterConfigDefinition. FIELD_EVENT_TIMESTAMP(package private) static FieldEventRouterConfigDefinition. FIELD_EVENT_TYPE(package private) static FieldEventRouterConfigDefinition. FIELD_PAYLOAD(package private) static FieldEventRouterConfigDefinition. FIELD_PAYLOAD_ID(package private) static FieldEventRouterConfigDefinition. FIELD_SCHEMA_VERSION(package private) static FieldEventRouterConfigDefinition. FIELDS_ADDITIONAL_PLACEMENT(package private) static FieldEventRouterConfigDefinition. OPERATION_INVALID_BEHAVIOR(package private) static FieldEventRouterConfigDefinition. ROUTE_BY_FIELD(package private) static FieldEventRouterConfigDefinition. ROUTE_TOMBSTONE_ON_EMPTY_PAYLOAD(package private) static FieldEventRouterConfigDefinition. ROUTE_TOPIC_REGEX(package private) static FieldEventRouterConfigDefinition. ROUTE_TOPIC_REPLACEMENTMethods in io.debezium.transforms.outbox with parameters of type Field Modifier and Type Method Description private static intEventRouterConfigDefinition. isListOfStringPairs(Configuration config, Field field, Field.ValidationOutput problems) -
Uses of Field in io.debezium.transforms.tracing
Fields in io.debezium.transforms.tracing declared as Field Modifier and Type Field Description static FieldActivateTracingSpan. TRACING_CONTEXT_FIELD_REQUIREDstatic FieldActivateTracingSpan. TRACING_OPERATION_NAMEstatic FieldActivateTracingSpan. TRACING_SPAN_CONTEXT_FIELD
-