-
Notifications
You must be signed in to change notification settings - Fork 11.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* fix flaky test in tiered storage * add debug logs * destroy metadata store and container manager after TieredMessageStoreTest * remove debug logs
- Loading branch information
1 parent
7049527
commit 4cc3311
Showing
17 changed files
with
251 additions
and
85 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
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
62 changes: 62 additions & 0 deletions
62
tieredstore/src/test/java/org/apache/rocketmq/tieredstore/TieredStoreTestUtil.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,62 @@ | ||
/* | ||
* 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.rocketmq.tieredstore; | ||
|
||
import java.io.File; | ||
import java.lang.reflect.Field; | ||
import org.apache.commons.io.FileUtils; | ||
import org.apache.rocketmq.tieredstore.container.TieredContainerManager; | ||
import org.apache.rocketmq.tieredstore.metadata.TieredMetadataStore; | ||
import org.apache.rocketmq.tieredstore.util.TieredStoreUtil; | ||
import org.junit.Assert; | ||
|
||
public class TieredStoreTestUtil { | ||
public static void destroyMetadataStore() { | ||
TieredMetadataStore metadataStore = TieredStoreUtil.getMetadataStore(null); | ||
if (metadataStore != null) { | ||
metadataStore.destroy(); | ||
} | ||
try { | ||
Field field = TieredStoreUtil.class.getDeclaredField("metadataStoreInstance"); | ||
field.setAccessible(true); | ||
field.set(null, null); | ||
} catch (NoSuchFieldException | IllegalAccessException e) { | ||
Assert.fail(e.getClass().getCanonicalName() + ": " + e.getMessage()); | ||
} | ||
} | ||
|
||
public static void destroyContainerManager() { | ||
TieredContainerManager containerManager = TieredContainerManager.getInstance(null); | ||
if (containerManager != null) { | ||
containerManager.destroy(); | ||
} | ||
try { | ||
Field field = TieredContainerManager.class.getDeclaredField("instance"); | ||
field.setAccessible(true); | ||
field.set(null, null); | ||
} catch (NoSuchFieldException | IllegalAccessException e) { | ||
Assert.fail(e.getClass().getCanonicalName() + ": " + e.getMessage()); | ||
} | ||
} | ||
|
||
public static void destroyTempDir(String storePath) { | ||
try { | ||
FileUtils.deleteDirectory(new File(storePath)); | ||
} catch (Exception ignore) { | ||
} | ||
} | ||
} |
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
Oops, something went wrong.