-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added the unit tests for incremental download of translog
This commit adds the unit tests applicable for the changes made to support incremental download of translog files. Primarily, the unit tests cover the changes in- - TranslogFooter to write and read the footer of Translog - RemoteFSTranslog to skip the download of locally present translog - TranslogWriter to create reader with checksum upon close - TranslogReader closeIntoReader functionality Signed-off-by: Harsh Rawat <[email protected]>
- Loading branch information
Harsh Rawat
committed
Oct 9, 2024
1 parent
e17ea7c
commit 833b508
Showing
3 changed files
with
316 additions
and
11 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
102 changes: 102 additions & 0 deletions
102
server/src/test/java/org/opensearch/index/translog/TranslogFooterTests.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,102 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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. | ||
*/ | ||
|
||
/* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
package org.opensearch.index.translog; | ||
|
||
import org.apache.lucene.codecs.CodecUtil; | ||
import org.opensearch.common.UUIDs; | ||
import org.opensearch.test.OpenSearchTestCase; | ||
|
||
import java.io.IOException; | ||
import java.nio.ByteBuffer; | ||
import java.nio.channels.FileChannel; | ||
import java.nio.file.Path; | ||
import java.nio.file.StandardOpenOption; | ||
|
||
public class TranslogFooterTests extends OpenSearchTestCase { | ||
|
||
/** | ||
* testTranslogFooterWrite verifies the functionality of TranslogFooter.write() method | ||
* wherein we write the footer to the translog file. | ||
* */ | ||
public void testTranslogFooterWrite() throws IOException { | ||
Path translogPath = createTempFile(); | ||
try (FileChannel channel = FileChannel.open(translogPath, StandardOpenOption.WRITE)) { | ||
// Write a translog header | ||
TranslogHeader header = new TranslogHeader(UUIDs.randomBase64UUID(), randomNonNegativeLong()); | ||
header.write(channel, true); | ||
|
||
// Write some translog operations | ||
byte[] operationBytes = new byte[] { 1, 2, 3, 4 }; | ||
channel.write(ByteBuffer.wrap(operationBytes)); | ||
|
||
// Write the translog footer | ||
long expectedChecksum = 0x1234567890ABCDEFL; | ||
byte[] footer = TranslogFooter.write(channel, expectedChecksum, true); | ||
|
||
// Verify the footer contents | ||
ByteBuffer footerBuffer = ByteBuffer.wrap(footer); | ||
assertEquals(CodecUtil.FOOTER_MAGIC, footerBuffer.getInt()); | ||
assertEquals(0, footerBuffer.getInt()); | ||
assertEquals(expectedChecksum, footerBuffer.getLong()); | ||
|
||
// Verify that the footer was written to the channel | ||
assertEquals(footer.length, channel.size() - (header.sizeInBytes() + operationBytes.length)); | ||
} | ||
} | ||
|
||
/** | ||
* testTranslogFooterReadChecksum verifies the behavior of the TranslogFooter.readChecksum() method, | ||
* which reads the checksum from the footer of a translog file. | ||
* */ | ||
public void testTranslogFooterReadChecksum() throws IOException { | ||
long expectedChecksum = 0x1234567890ABCDEFL; | ||
Path translogPath = createTempFile(); | ||
try (FileChannel channel = FileChannel.open(translogPath, StandardOpenOption.WRITE)) { | ||
// Write a translog header | ||
TranslogHeader header = new TranslogHeader(UUIDs.randomBase64UUID(), randomNonNegativeLong()); | ||
header.write(channel, true); | ||
|
||
// Write some translog operations | ||
byte[] operationBytes = new byte[] { 1, 2, 3, 4 }; | ||
channel.write(ByteBuffer.wrap(operationBytes)); | ||
|
||
// Write the translog footer. | ||
TranslogFooter.write(channel, expectedChecksum, true); | ||
} | ||
|
||
// Verify that the checksum can be read correctly | ||
Long actualChecksum = TranslogFooter.readChecksum(translogPath); | ||
assert actualChecksum != null; | ||
assertEquals(expectedChecksum, actualChecksum.longValue()); | ||
} | ||
} |
Oops, something went wrong.