blob: 58f59f4c61e05b1880a0446f54d4472b912805a9 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.seatunnel.connectors.cdc.base.dialect;
import org.apache.seatunnel.connectors.cdc.base.config.SourceConfig;
import org.apache.seatunnel.connectors.cdc.base.source.enumerator.splitter.ChunkSplitter;
import org.apache.seatunnel.connectors.cdc.base.source.offset.Offset;
import org.apache.seatunnel.connectors.cdc.base.source.reader.external.FetchTask;
import org.apache.seatunnel.connectors.cdc.base.source.split.SourceSplitBase;
import io.debezium.relational.TableId;
import java.io.Serializable;
import java.util.List;
/**
* The dialect of data source.
*
* @param <C> The source config of data source.
*/
public interface DataSourceDialect<C extends SourceConfig> extends Serializable {
/** Get the name of dialect. */
String getName();
/** Discovers the list of data collection to capture. */
List<TableId> discoverDataCollections(C sourceConfig);
/** Check if the CollectionId is case-sensitive or not. */
boolean isDataCollectionIdCaseSensitive(C sourceConfig);
/** Returns the {@link ChunkSplitter} which used to split collection to splits. */
ChunkSplitter createChunkSplitter(C sourceConfig);
/** The fetch task used to fetch data of a snapshot split or incremental split. */
FetchTask<SourceSplitBase> createFetchTask(SourceSplitBase sourceSplitBase);
/** The task context used for fetch task to fetch data from external systems. */
FetchTask.Context createFetchTaskContext(SourceSplitBase sourceSplitBase, C sourceConfig);
/**
* We have an empty default implementation here because most dialects do not have to implement
* the method.
*/
default void commitChangeLogOffset(Offset offset) throws Exception {}
}