mirror of https://github.com/apache/druid.git
Reduce the number of ITs in CDS groups (#17059)
* Reduce the number of ITs in CDS groups The two CDS IT groups cds-task-schema-publish-disabled & cds-coordinator-metadata-query-disabled runs a lot of ITs serially, leading to increased CI runtime. Reducing the number of ITs running in the two groups to, ITAppendBatchIndexTest (append-ingestion) ITIndexerTest (batch-index) ITOverwriteBatchIndexTest (batch-index) ITCompactionSparseColumnIndexTest (compaction) ITCompactionTaskTest (compaction) ITKafkaIndexingServiceDataFormatTest (kafka-data-format) Both these groups will be removed once CDS is enabled by default.
This commit is contained in:
parent
88c3c20ab6
commit
dd8c7de144
|
@ -38,7 +38,7 @@ import org.testng.annotations.Test;
|
|||
import java.io.Closeable;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITBestEffortRollupParallelIndexTest extends AbstractITBatchIndexTest
|
||||
{
|
||||
|
|
|
@ -32,7 +32,7 @@ import java.io.Closeable;
|
|||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX, TestNGGroup.QUICKSTART_COMPATIBLE, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX, TestNGGroup.QUICKSTART_COMPATIBLE})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITCombiningInputSourceParallelIndexTest extends AbstractITBatchIndexTest
|
||||
{
|
||||
|
|
|
@ -29,7 +29,7 @@ import java.io.Closeable;
|
|||
import java.io.IOException;
|
||||
import java.util.UUID;
|
||||
|
||||
@Test(groups = {TestNGGroup.INPUT_SOURCE, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.INPUT_SOURCE})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITHttpInputSourceTest extends AbstractITBatchIndexTest
|
||||
{
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.testng.annotations.BeforeClass;
|
|||
import org.testng.annotations.Guice;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {TestNGGroup.KAFKA_INDEX_SLOW, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.KAFKA_INDEX_SLOW})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITKafkaIndexingServiceNonTransactionalSerializedTest extends AbstractKafkaIndexingServiceTest
|
||||
{
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.testng.annotations.BeforeClass;
|
|||
import org.testng.annotations.Guice;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
@Test(groups = {TestNGGroup.TRANSACTIONAL_KAFKA_INDEX_SLOW, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = TestNGGroup.TRANSACTIONAL_KAFKA_INDEX_SLOW)
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITKafkaIndexingServiceTransactionalSerializedTest extends AbstractKafkaIndexingServiceTest
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.testng.annotations.Test;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Test(groups = {TestNGGroup.INPUT_FORMAT, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.INPUT_FORMAT})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITLocalInputSourceAllInputFormatTest extends AbstractLocalInputSourceParallelIndexTest
|
||||
{
|
||||
|
|
|
@ -36,7 +36,7 @@ import org.testng.annotations.Test;
|
|||
import java.io.Closeable;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Test(groups = {TestNGGroup.PERFECT_ROLLUP_PARALLEL_BATCH_INDEX, TestNGGroup.SHUFFLE_DEEP_STORE, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.PERFECT_ROLLUP_PARALLEL_BATCH_INDEX, TestNGGroup.SHUFFLE_DEEP_STORE})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITPerfectRollupParallelIndexTest extends AbstractITBatchIndexTest
|
||||
{
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.testng.annotations.Test;
|
|||
import java.io.Closeable;
|
||||
import java.util.function.Function;
|
||||
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Test(groups = {TestNGGroup.BATCH_INDEX})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITSystemTableBatchIndexTaskTest extends AbstractITBatchIndexTest
|
||||
{
|
||||
|
|
|
@ -38,7 +38,7 @@ import java.util.ArrayList;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Test(groups = TestNGGroup.KAFKA_DATA_FORMAT)
|
||||
@Test(groups = {TestNGGroup.KAFKA_DATA_FORMAT, TestNGGroup.CDS_TASK_SCHEMA_PUBLISH_DISABLED, TestNGGroup.CDS_COORDINATOR_METADATA_QUERY_DISABLED})
|
||||
@Guice(moduleFactory = DruidTestModuleFactory.class)
|
||||
public class ITKafkaIndexingServiceDataFormatTest extends AbstractKafkaIndexingServiceTest
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue