Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.protobuf.InvalidProtocolBufferException;
import java.io.IOException;
import java.util.Objects;
import org.apache.commons.lang3.StringUtils;
Expand Down Expand Up @@ -315,13 +316,19 @@ public Class<SnapshotDiffJob> getTypeClass() {
}

@Override
public byte[] toPersistedFormatImpl(SnapshotDiffJob object) throws IOException {
return MAPPER.writeValueAsBytes(object);
public byte[] toPersistedFormat(SnapshotDiffJob object) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@szetszwo I’m not sure when it’s appropriate to override toPersistedFormat or toPersistedFormatImpl in a Codec implementation—their use seems inconsistent across the codebase.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

but I think this is ok as most of the codec do implement this.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

toPersistedFormatImpl is for the case that it needs to throw an exception E other than CodecException since the default toPersistedFormat will convert E to CodecException.

return object.toProtoBuf().toByteArray();
}

@Override
public SnapshotDiffJob fromPersistedFormatImpl(byte[] rawData) throws IOException {
return MAPPER.readValue(rawData, SnapshotDiffJob.class);
try {
SnapshotDiffJobProto proto = SnapshotDiffJobProto.parseFrom(rawData);
return SnapshotDiffJob.getFromProtoBuf(proto);
} catch (InvalidProtocolBufferException e) {
// the rawData was in old format, fallback to the old implementation
return MAPPER.readValue(rawData, SnapshotDiffJob.class);
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* 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.hadoop.ozone.om.helpers;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import org.apache.hadoop.hdds.utils.db.Codec;

/**
* Codec to serialize / deserialize SnapshotDiffJob.
*/
public class OldSnapshotDiffJobCodecForTesting
implements Codec<SnapshotDiffJob> {

private static final ObjectMapper MAPPER = new ObjectMapper()
.setSerializationInclusion(JsonInclude.Include.NON_NULL)
.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

@Override
public Class<SnapshotDiffJob> getTypeClass() {
return SnapshotDiffJob.class;
}

@Override
public byte[] toPersistedFormatImpl(SnapshotDiffJob object) throws IOException {
return MAPPER.writeValueAsBytes(object);
}

@Override
public SnapshotDiffJob fromPersistedFormatImpl(byte[] rawData) throws IOException {
return MAPPER.readValue(rawData, SnapshotDiffJob.class);
}

@Override
public SnapshotDiffJob copyObject(SnapshotDiffJob object) {
// Note: Not really a "copy". from OmDBDiffReportEntryCodec
return object;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
/*
* 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.hadoop.ozone.om.helpers;

import static org.junit.jupiter.api.Assertions.assertEquals;

import org.apache.hadoop.hdds.utils.db.Codec;
import org.apache.hadoop.ozone.snapshot.SnapshotDiffResponse.JobStatus;
import org.apache.hadoop.ozone.snapshot.SnapshotDiffResponse.SubStatus;
import org.junit.jupiter.api.Test;

/**
* Testing serialization of SnapshotDiffJobCodec objects to/from RocksDB.
*/
public class TestOmSnapshotDiffJobCodec {
private final OldSnapshotDiffJobCodecForTesting oldCodec
= new OldSnapshotDiffJobCodecForTesting();
private final Codec<SnapshotDiffJob> newCodec = SnapshotDiffJob.getCodec();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit:

Suggested change
private final Codec<SnapshotDiffJob> newCodec = SnapshotDiffJob.getCodec();
private final SnapshotDiffJobCodec newCodec = new SnapshotDiffJobCodec();


@Test
public void testOldJsonSerializedDataCanBeReadByNewCodec() throws Exception {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The SnapshotDiffJob.getFromProtoBuf(proto) is expected to throw exception?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getFromProtoBuf() appears to be a safe method that builds a POJO from a fully-parsed SnapshotDiffJobProto object. Since it relies on accessor methods like getCreationTime() and getVolume() which are expected to be present in a valid proto message, we don’t anticipate any checked exceptions being thrown during this process.

Please correct me if I missed anything or overlooked a potential edge case.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was just wondering: does the fallback have to be triggered when newCodec.fromPersistedFormatImpl(oldFormatData) is called in this test, since the Jackson and Protobuf formats are incompatible? Or could the Protobuf codec parse the Jackson-encoded binary, making the fallback merely a safeguard?

// Step 1: Construct a SnapshotDiffJob instance
SnapshotDiffJob original = new SnapshotDiffJob(
123456789L,
"job-001",
JobStatus.IN_PROGRESS,
"volA",
"buckB",
"snap1",
"snap2",
true,
false,
100L,
SubStatus.SST_FILE_DELTA_DAG_WALK,
0.0
);

// Step 2: Serialize using the old Jackson-based codec
byte[] oldFormatData = oldCodec.toPersistedFormatImpl(original);

// Step 3: Deserialize using the new default codec (with Protobuf + JSON fallback)
SnapshotDiffJob parsed = newCodec.fromPersistedFormatImpl(oldFormatData);

// Step 4: Verify critical fields remain consistent after round-trip
assertEquals(original.getJobId(), parsed.getJobId());
assertEquals(original.getStatus(), parsed.getStatus());
assertEquals(original.getVolume(), parsed.getVolume());
assertEquals(original.getBucket(), parsed.getBucket());
assertEquals(original.getFromSnapshot(), parsed.getFromSnapshot());
assertEquals(original.getToSnapshot(), parsed.getToSnapshot());
assertEquals(original.isForceFullDiff(), parsed.isForceFullDiff());
assertEquals(original.isNativeDiffDisabled(), parsed.isNativeDiffDisabled());
assertEquals(original.getSubStatus(), parsed.getSubStatus());
assertEquals(original.getTotalDiffEntries(), parsed.getTotalDiffEntries());

assertEquals(0.0, parsed.getKeysProcessedPct());
}
}
Loading