Skip to content
Merged
Show file tree
Hide file tree
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 @@ -38,6 +38,11 @@ def create_table_sql = """
def columns = "col_0, col_1, col_2, col_3, col_4, col_5, col_6, col_7, col_8, col_9, col_10, col_11, col_12, col_13, col_14, col_15, col_16, col_17, col_18, col_19, col_20, col_21, col_22, col_23, col_24, col_25, col_26, col_27, col_28, col_29, col_30, col_31, col_32, col_33, col_34, col_35, col_36, col_37, col_38, col_39, col_40, col_41, col_42, col_43, col_44, col_45, col_46, col_47, col_48, col_49"

suite("test_too_many_segments", "nonConcurrent,p2") { // the epic -238 case
if (isCloudMode()) {
logger.info("skip test_too_many_segments case, because cloud mode not support")
return
}

def runLoadWithTooManySegments = {
String ak = getS3AK()
String sk = getS3SK()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ import org.apache.kafka.clients.producer.ProducerRecord
import org.apache.kafka.clients.producer.ProducerConfig

suite("test_disable_load","nonConcurrent,p0") {
if (isCloudMode()) {
logger.info("skip test_disable_load case, because cloud mode not support")
return
}

String enabled = context.config.otherConfigs.get("enableKafkaTest")
if (enabled != null && enabled.equalsIgnoreCase("true")) {
// 1. send data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ import org.apache.kafka.clients.producer.ProducerRecord
import org.apache.kafka.clients.producer.ProducerConfig

suite("test_routine_load_error_info","nonConcurrent") {
if (isCloudMode()) {
logger.info("skip test_routine_load_error_info case, because cloud mode not support")
return
}

def kafkaCsvTpoics = [
"test_error_info",
]
Expand Down