Skip to content
Merged
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 @@ -45,6 +45,7 @@
import org.apache.ozone.recon.schema.ContainerSchemaDefinition.UnHealthyContainerStates;
import org.apache.ozone.recon.schema.ReconSchemaGenerationModule;
import org.apache.ozone.recon.schema.generated.tables.daos.UnhealthyContainersDao;
import org.apache.ozone.test.tag.Slow;
import org.jooq.DSLContext;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
Expand Down Expand Up @@ -716,6 +717,7 @@ public void testExistingInStateSinceLookupChunksLargeContainerIdList() {
*/
@Test
@Order(9)
@Slow("HDDS-15582")
public void testBatchDeletePerformanceOneMillionRecords() {
int deleteCount = CONTAINER_ID_RANGE; // 200 000 container IDs
int expectedDeleted = deleteCount * STATE_COUNT; // 1 000 000 rows
Expand Down Expand Up @@ -767,6 +769,7 @@ public void testBatchDeletePerformanceOneMillionRecords() {
*/
@Test
@Order(10)
@Slow("HDDS-15582")
public void testCountByStateAfterFullDelete() {
int expectedPerState = 0;
LOG.info("--- Test 10: COUNT by state after full delete (expected {} each) ---",
Expand Down