[cdc-base] Let all records of one snapshot split don't cross checkpoints (#1622)
This closes #1622.pull/1619/head
parent
aac6e31718
commit
8df5b110ab
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright 2022 Ververica Inc.
|
||||
*
|
||||
* Licensed 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 com.ververica.cdc.connectors.base.source.meta.split;
|
||||
|
||||
import org.apache.kafka.connect.source.SourceRecord;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
|
||||
/** Data structure to describe a set of {@link SourceRecord}. */
|
||||
public final class SourceRecords {
|
||||
|
||||
private final List<SourceRecord> sourceRecords;
|
||||
|
||||
public SourceRecords(List<SourceRecord> sourceRecords) {
|
||||
this.sourceRecords = sourceRecords;
|
||||
}
|
||||
|
||||
public List<SourceRecord> getSourceRecordList() {
|
||||
return sourceRecords;
|
||||
}
|
||||
|
||||
public Iterator<SourceRecord> iterator() {
|
||||
return sourceRecords.iterator();
|
||||
}
|
||||
|
||||
public static SourceRecords fromSingleRecord(SourceRecord record) {
|
||||
final List<SourceRecord> records = new ArrayList<>();
|
||||
records.add(record);
|
||||
return new SourceRecords(records);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue