forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix flaky test testDropPrimaryDuringReplication. (opensearch-project#…
…8715) This change fixes testDropPrimaryDuringReplication and an edge case where after an updateSegments call on NRTReplicationReaderManager the reader is not actually refreshed because of another concurrent refresh call. Fixes by using a blocking refresh and removes unnecessary synchronization around the updatesegments method to avoid a deadlock case where the concurrent refresh picks up the new segments but is unable to acquire the object monitor to refresh internally in ReferenceManager.swapReference. Signed-off-by: Marc Handalian <[email protected]>
- Loading branch information
Showing
2 changed files
with
90 additions
and
2 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
88 changes: 88 additions & 0 deletions
88
server/src/test/java/org/opensearch/index/engine/NRTReplicationReaderManagerTests.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,88 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
package org.opensearch.index.engine; | ||
|
||
import org.apache.lucene.index.DirectoryReader; | ||
import org.apache.lucene.index.SegmentInfos; | ||
import org.apache.lucene.index.StandardDirectoryReader; | ||
import org.apache.lucene.util.Version; | ||
import org.opensearch.common.lucene.index.OpenSearchDirectoryReader; | ||
import org.opensearch.index.store.Store; | ||
|
||
import java.io.IOException; | ||
|
||
public class NRTReplicationReaderManagerTests extends EngineTestCase { | ||
|
||
public void testCreateNRTreaderManager() throws IOException { | ||
try (final Store store = createStore()) { | ||
store.createEmpty(Version.LATEST); | ||
final DirectoryReader reader = DirectoryReader.open(store.directory()); | ||
final SegmentInfos initialInfos = ((StandardDirectoryReader) reader).getSegmentInfos(); | ||
NRTReplicationReaderManager readerManager = new NRTReplicationReaderManager( | ||
OpenSearchDirectoryReader.wrap(reader, shardId), | ||
(files) -> {}, | ||
(files) -> {} | ||
); | ||
assertEquals(initialInfos, readerManager.getSegmentInfos()); | ||
try (final OpenSearchDirectoryReader acquire = readerManager.acquire()) { | ||
assertNull(readerManager.refreshIfNeeded(acquire)); | ||
} | ||
|
||
// create an updated infos | ||
final SegmentInfos infos_2 = readerManager.getSegmentInfos().clone(); | ||
infos_2.changed(); | ||
|
||
readerManager.updateSegments(infos_2); | ||
assertEquals(infos_2, readerManager.getSegmentInfos()); | ||
try (final OpenSearchDirectoryReader acquire = readerManager.acquire()) { | ||
final StandardDirectoryReader standardReader = NRTReplicationReaderManager.unwrapStandardReader(acquire); | ||
assertEquals(infos_2, standardReader.getSegmentInfos()); | ||
} | ||
} | ||
} | ||
|
||
public void testUpdateSegmentsWhileRefreshing() throws IOException, InterruptedException { | ||
try (final Store store = createStore()) { | ||
store.createEmpty(Version.LATEST); | ||
final DirectoryReader reader = DirectoryReader.open(store.directory()); | ||
NRTReplicationReaderManager readerManager = new NRTReplicationReaderManager( | ||
OpenSearchDirectoryReader.wrap(reader, shardId), | ||
(files) -> {}, | ||
(files) -> {} | ||
); | ||
|
||
final SegmentInfos infos_2 = readerManager.getSegmentInfos().clone(); | ||
infos_2.changed(); | ||
|
||
Thread refreshThread = new Thread(() -> { | ||
try { | ||
readerManager.maybeRefresh(); | ||
} catch (IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
}); | ||
Thread updateThread = new Thread(() -> { | ||
try { | ||
readerManager.updateSegments(infos_2); | ||
} catch (IOException e) { | ||
throw new RuntimeException(e); | ||
} | ||
}); | ||
refreshThread.start(); | ||
updateThread.start(); | ||
refreshThread.join(); | ||
updateThread.join(); | ||
try (final OpenSearchDirectoryReader acquire = readerManager.acquire()) { | ||
final StandardDirectoryReader standardReader = NRTReplicationReaderManager.unwrapStandardReader(acquire); | ||
assertEquals(infos_2.version, standardReader.getSegmentInfos().version); | ||
} | ||
assertEquals(infos_2, readerManager.getSegmentInfos()); | ||
} | ||
} | ||
} |