-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 source: implementation for mysql cdc (#3505)
* source: implementation for mysql cdc * add target file and position * dont want to add file in this PR * refine tests + add comments * fix typo * address review comments * fix formatting error * resolve conflicts * update docs + bump docker minor version * remove un-necessary new lines + add multiple checks for cdc * address review comments from Davin * increase the version in source_definitions.yaml * rebuild seed
- Loading branch information
1 parent
df3d376
commit 7ccc4fa
Showing
21 changed files
with
2,216 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
178 changes: 178 additions & 0 deletions
178
...sql/src/main/java/io/airbyte/integrations/source/mysql/AirbyteFileOffsetBackingStore.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
/* | ||
* MIT License | ||
* | ||
* Copyright (c) 2020 Airbyte | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
|
||
package io.airbyte.integrations.source.mysql; | ||
|
||
import static io.airbyte.integrations.source.mysql.MySqlSource.MYSQL_CDC_OFFSET; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import com.google.common.base.Preconditions; | ||
import io.airbyte.commons.json.Jsons; | ||
import io.airbyte.integrations.source.jdbc.JdbcStateManager; | ||
import io.airbyte.integrations.source.jdbc.models.CdcState; | ||
import java.io.EOFException; | ||
import java.io.IOException; | ||
import java.io.ObjectOutputStream; | ||
import java.nio.ByteBuffer; | ||
import java.nio.charset.StandardCharsets; | ||
import java.nio.file.Files; | ||
import java.nio.file.NoSuchFileException; | ||
import java.nio.file.Path; | ||
import java.util.Collections; | ||
import java.util.HashMap; | ||
import java.util.Map; | ||
import java.util.stream.Collectors; | ||
import org.apache.commons.io.FileUtils; | ||
import org.apache.kafka.connect.errors.ConnectException; | ||
import org.apache.kafka.connect.util.SafeObjectInputStream; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
/** | ||
* This class handles reading and writing a debezium offset file. In many cases it is duplicating | ||
* logic in debezium because that logic is not exposed in the public API. We mostly treat the | ||
* contents of this state file like a black box. We know it is a Map<ByteBuffer, Bytebuffer>. We | ||
* deserialize it to a Map<String, String> so that the state file can be human readable. If we ever | ||
* discover that any of the contents of these offset files is not string serializable we will likely | ||
* have to drop the human readability support and just base64 encode it. | ||
*/ | ||
public class AirbyteFileOffsetBackingStore { | ||
|
||
private static final Logger LOGGER = LoggerFactory.getLogger(AirbyteFileOffsetBackingStore.class); | ||
|
||
private final Path offsetFilePath; | ||
|
||
public AirbyteFileOffsetBackingStore(final Path offsetFilePath) { | ||
this.offsetFilePath = offsetFilePath; | ||
} | ||
|
||
public Path getOffsetFilePath() { | ||
return offsetFilePath; | ||
} | ||
|
||
public CdcState read() { | ||
final Map<ByteBuffer, ByteBuffer> raw = load(); | ||
|
||
final Map<String, String> mappedAsStrings = raw.entrySet().stream().collect(Collectors.toMap( | ||
e -> byteBufferToString(e.getKey()), | ||
e -> byteBufferToString(e.getValue()))); | ||
final JsonNode asJson = Jsons.jsonNode(mappedAsStrings); | ||
|
||
LOGGER.info("debezium state: {}", asJson); | ||
|
||
return new CdcState().withState(asJson); | ||
} | ||
|
||
public Map<String, String> readMap() { | ||
final Map<ByteBuffer, ByteBuffer> raw = load(); | ||
|
||
return raw.entrySet().stream().collect(Collectors.toMap( | ||
e -> byteBufferToString(e.getKey()), | ||
e -> byteBufferToString(e.getValue()))); | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
public void persist(CdcState cdcState) { | ||
final Map<String, String> mapAsString = | ||
cdcState != null && cdcState.getState() != null ? Jsons.object(cdcState.getState().get(MYSQL_CDC_OFFSET), Map.class) : Collections.emptyMap(); | ||
final Map<ByteBuffer, ByteBuffer> mappedAsStrings = mapAsString.entrySet().stream().collect(Collectors.toMap( | ||
e -> stringToByteBuffer(e.getKey()), | ||
e -> stringToByteBuffer(e.getValue()))); | ||
|
||
FileUtils.deleteQuietly(offsetFilePath.toFile()); | ||
save(mappedAsStrings); | ||
} | ||
|
||
private static String byteBufferToString(ByteBuffer byteBuffer) { | ||
Preconditions.checkNotNull(byteBuffer); | ||
return new String(byteBuffer.array(), StandardCharsets.UTF_8); | ||
} | ||
|
||
private static ByteBuffer stringToByteBuffer(String s) { | ||
Preconditions.checkNotNull(s); | ||
return ByteBuffer.wrap(s.getBytes(StandardCharsets.UTF_8)); | ||
} | ||
|
||
/** | ||
* See FileOffsetBackingStore#load - logic is mostly borrowed from here. duplicated because this | ||
* method is not public. | ||
*/ | ||
@SuppressWarnings("unchecked") | ||
private Map<ByteBuffer, ByteBuffer> load() { | ||
try (final SafeObjectInputStream is = new SafeObjectInputStream(Files.newInputStream(offsetFilePath))) { | ||
final Object obj = is.readObject(); | ||
if (!(obj instanceof HashMap)) | ||
throw new ConnectException("Expected HashMap but found " + obj.getClass()); | ||
final Map<byte[], byte[]> raw = (Map<byte[], byte[]>) obj; | ||
final Map<ByteBuffer, ByteBuffer> data = new HashMap<>(); | ||
for (Map.Entry<byte[], byte[]> mapEntry : raw.entrySet()) { | ||
final ByteBuffer key = (mapEntry.getKey() != null) ? ByteBuffer.wrap(mapEntry.getKey()) : null; | ||
final ByteBuffer value = (mapEntry.getValue() != null) ? ByteBuffer.wrap(mapEntry.getValue()) : null; | ||
data.put(key, value); | ||
} | ||
|
||
return data; | ||
} catch (NoSuchFileException | EOFException e) { | ||
// NoSuchFileException: Ignore, may be new. | ||
// EOFException: Ignore, this means the file was missing or corrupt | ||
return Collections.emptyMap(); | ||
} catch (IOException | ClassNotFoundException e) { | ||
throw new ConnectException(e); | ||
} | ||
} | ||
|
||
/** | ||
* See FileOffsetBackingStore#save - logic is mostly borrowed from here. duplicated because this | ||
* method is not public. | ||
*/ | ||
private void save(Map<ByteBuffer, ByteBuffer> data) { | ||
try (ObjectOutputStream os = new ObjectOutputStream(Files.newOutputStream(offsetFilePath))) { | ||
Map<byte[], byte[]> raw = new HashMap<>(); | ||
for (Map.Entry<ByteBuffer, ByteBuffer> mapEntry : data.entrySet()) { | ||
byte[] key = (mapEntry.getKey() != null) ? mapEntry.getKey().array() : null; | ||
byte[] value = (mapEntry.getValue() != null) ? mapEntry.getValue().array() : null; | ||
raw.put(key, value); | ||
} | ||
os.writeObject(raw); | ||
} catch (IOException e) { | ||
throw new ConnectException(e); | ||
} | ||
} | ||
|
||
static AirbyteFileOffsetBackingStore initializeState(JdbcStateManager stateManager) { | ||
final Path cdcWorkingDir; | ||
try { | ||
cdcWorkingDir = Files.createTempDirectory(Path.of("/tmp"), "cdc-state-offset"); | ||
} catch (IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
final Path cdcOffsetFilePath = cdcWorkingDir.resolve("offset.dat"); | ||
|
||
final AirbyteFileOffsetBackingStore offsetManager = new AirbyteFileOffsetBackingStore( | ||
cdcOffsetFilePath); | ||
offsetManager.persist(stateManager.getCdcStateManager().getCdcState()); | ||
return offsetManager; | ||
} | ||
|
||
} |
Oops, something went wrong.