
org.dinky.shaded.paimon.table.sink.CommitMessageSerializer Maven / Gradle / Ivy
/*
* 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.dinky.shaded.paimon.table.sink;
import org.dinky.shaded.paimon.data.serializer.VersionedSerializer;
import org.dinky.shaded.paimon.index.IndexFileMetaSerializer;
import org.dinky.shaded.paimon.io.CompactIncrement;
import org.dinky.shaded.paimon.io.DataFileMetaSerializer;
import org.dinky.shaded.paimon.io.DataInputDeserializer;
import org.dinky.shaded.paimon.io.DataInputView;
import org.dinky.shaded.paimon.io.DataOutputView;
import org.dinky.shaded.paimon.io.DataOutputViewStreamWrapper;
import org.dinky.shaded.paimon.io.IndexIncrement;
import org.dinky.shaded.paimon.io.NewFilesIncrement;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import static org.dinky.shaded.paimon.utils.SerializationUtils.deserializeBinaryRow;
import static org.dinky.shaded.paimon.utils.SerializationUtils.serializeBinaryRow;
/** {@link VersionedSerializer} for {@link CommitMessage}. */
public class CommitMessageSerializer implements VersionedSerializer {
private static final int CURRENT_VERSION = 2;
private final DataFileMetaSerializer dataFileSerializer;
private final IndexFileMetaSerializer indexEntrySerializer;
public CommitMessageSerializer() {
this.dataFileSerializer = new DataFileMetaSerializer();
this.indexEntrySerializer = new IndexFileMetaSerializer();
}
@Override
public int getVersion() {
return CURRENT_VERSION;
}
@Override
public byte[] serialize(CommitMessage obj) throws IOException {
ByteArrayOutputStream out = new ByteArrayOutputStream();
DataOutputViewStreamWrapper view = new DataOutputViewStreamWrapper(out);
serialize(obj, view);
return out.toByteArray();
}
public void serializeList(List list, DataOutputView view) throws IOException {
view.writeInt(list.size());
for (CommitMessage commitMessage : list) {
serialize(commitMessage, view);
}
}
private void serialize(CommitMessage obj, DataOutputView view) throws IOException {
CommitMessageImpl message = (CommitMessageImpl) obj;
serializeBinaryRow(obj.partition(), view);
view.writeInt(obj.bucket());
dataFileSerializer.serializeList(message.newFilesIncrement().newFiles(), view);
dataFileSerializer.serializeList(message.newFilesIncrement().changelogFiles(), view);
dataFileSerializer.serializeList(message.compactIncrement().compactBefore(), view);
dataFileSerializer.serializeList(message.compactIncrement().compactAfter(), view);
dataFileSerializer.serializeList(message.compactIncrement().changelogFiles(), view);
indexEntrySerializer.serializeList(message.indexIncrement().newIndexFiles(), view);
}
@Override
public CommitMessage deserialize(int version, byte[] serialized) throws IOException {
checkVersion(version);
DataInputDeserializer view = new DataInputDeserializer(serialized);
return deserialize(view);
}
public List deserializeList(int version, DataInputView view) throws IOException {
checkVersion(version);
int length = view.readInt();
List list = new ArrayList<>(length);
for (int i = 0; i < length; i++) {
list.add(deserialize(view));
}
return list;
}
private void checkVersion(int version) {
if (version != CURRENT_VERSION) {
throw new UnsupportedOperationException(
"Expecting FileCommittable version to be "
+ CURRENT_VERSION
+ ", but found "
+ version
+ ".\nFileCommittable is not a compatible data structure. "
+ "Please restart the job afresh (do not recover from savepoint).");
}
}
private CommitMessage deserialize(DataInputView view) throws IOException {
return new CommitMessageImpl(
deserializeBinaryRow(view),
view.readInt(),
new NewFilesIncrement(
dataFileSerializer.deserializeList(view),
dataFileSerializer.deserializeList(view)),
new CompactIncrement(
dataFileSerializer.deserializeList(view),
dataFileSerializer.deserializeList(view),
dataFileSerializer.deserializeList(view)),
new IndexIncrement(indexEntrySerializer.deserializeList(view)));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy