Uses of Class
io.debezium.connector.mysql.legacy.Filters
Packages that use Filters
-
Uses of Filters in io.debezium.connector.mysql.legacy
Fields in io.debezium.connector.mysql.legacy declared as FiltersMethods in io.debezium.connector.mysql.legacy that return FiltersModifier and TypeMethodDescriptionFilters.Builder.build()Build the filters.MySqlSchema.filters()Get thedatabase and table filtersdefined by the configuration.private static FiltersMySqlConnectorTask.getAllFilters(Configuration config) Get the filters representing all tables represented by the config.private FiltersSnapshotReader.getCreateTableFilters(Filters filters) Get the filters for table creation.private static FiltersMySqlConnectorTask.getNewFilters(Map<String, ?> offsets, Configuration config) Get the filters representing the tables that have been newly added to the config, but not those that previously existed in the config.private static FiltersMySqlConnectorTask.getOldFilters(Map<String, ?> offsets, Configuration config) Get the filters representing those tables that previously existed in the config, but not those newly added to the config.Methods in io.debezium.connector.mysql.legacy with parameters of type FiltersModifier and TypeMethodDescriptionprivate static MySqlTaskContextMySqlConnectorTask.createAndStartTaskContext(Configuration config, Filters filters) Filters.Builder.excludeAllTables(Filters otherFilter) Exclude all those tables included by the given filter.private FiltersSnapshotReader.getCreateTableFilters(Filters filters) Get the filters for table creation.Filters.Builder.setFiltersFromFilters(Filters filters) Set the filter to match the given other filter.private booleanSnapshotReader.shouldRecordTableSchema(MySqlSchema schema, Filters filters, TableId id) Whether DDL for the given table should be recorded.Constructors in io.debezium.connector.mysql.legacy with parameters of type FiltersModifierConstructorDescriptionMySqlSchema(MySqlConnectorConfig configuration, Predicate<String> gtidFilter, boolean tableIdCaseInsensitive, TopicSelector<TableId> topicSelector, Filters tableFilters) Create a schema component given the suppliedMySQL connector configuration.MySqlTaskContext(Configuration config, Filters filters) MySqlTaskContext(Configuration config, Filters filters, Boolean tableIdCaseInsensitive, Map<String, ?> restartOffset) MySqlTaskContext(Configuration config, Filters filters, Map<String, ?> restartOffset) ParallelSnapshotReader(Configuration config, MySqlTaskContext noSnapshotContext, Filters snapshotFilters, MySqlConnectorTask.ServerIdGenerator serverIdGenerator) Create a ParallelSnapshotReader.