-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test](routine load) add routine load case with timestamp as offset(#…
- Loading branch information
Showing
3 changed files
with
118 additions
and
0 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
regression-test/data/load_p0/routine_load/test_routine_load_offset.out
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,4 @@ | ||
-- This file is automatically generated. You should know what you did if you want to edit this | ||
-- !sql_offset -- | ||
1 eab 2023-07-15 def 2023-07-20T05:48:31 "ghi" | ||
|
1 change: 1 addition & 0 deletions
1
regression-test/suites/load_p0/routine_load/data/test_offset_time.csv
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 @@ | ||
1,eab,2023-07-15,def,2023-07-20:05:48:31,"ghi" |
113 changes: 113 additions & 0 deletions
113
regression-test/suites/load_p0/routine_load/test_routine_load_offset.groovy
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,113 @@ | ||
// 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. | ||
|
||
import org.apache.kafka.clients.admin.AdminClient | ||
import org.apache.kafka.clients.producer.KafkaProducer | ||
import org.apache.kafka.clients.producer.ProducerRecord | ||
import org.apache.kafka.clients.producer.ProducerConfig | ||
|
||
suite("test_routine_load_offset","p0") { | ||
def kafkaCsvTpoics = [ | ||
"test_offset_time", | ||
] | ||
String enabled = context.config.otherConfigs.get("enableKafkaTest") | ||
String kafka_port = context.config.otherConfigs.get("kafka_port") | ||
String externalEnvIp = context.config.otherConfigs.get("externalEnvIp") | ||
def kafka_broker = "${externalEnvIp}:${kafka_port}" | ||
if (enabled != null && enabled.equalsIgnoreCase("true")) { | ||
// define kafka | ||
def props = new Properties() | ||
props.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, "${kafka_broker}".toString()) | ||
props.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer") | ||
props.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, "org.apache.kafka.common.serialization.StringSerializer") | ||
// Create kafka producer | ||
def producer = new KafkaProducer<>(props) | ||
|
||
for (String kafkaCsvTopic in kafkaCsvTpoics) { | ||
def txt = new File("""${context.file.parent}/data/${kafkaCsvTopic}.csv""").text | ||
def lines = txt.readLines() | ||
lines.each { line -> | ||
logger.info("=====${line}========") | ||
def record = new ProducerRecord<>(kafkaCsvTopic, null, line) | ||
producer.send(record) | ||
} | ||
} | ||
} | ||
|
||
if (enabled != null && enabled.equalsIgnoreCase("true")) { | ||
def tableName = "test_routine_load_offset" | ||
def job = "test_offset" | ||
|
||
sql """ DROP TABLE IF EXISTS ${tableName} """ | ||
sql """ | ||
CREATE TABLE IF NOT EXISTS ${tableName} ( | ||
`k1` int(20) NULL, | ||
`k2` string NULL, | ||
`v1` date NULL, | ||
`v2` string NULL, | ||
`v3` datetime NULL, | ||
`v4` string NULL | ||
) ENGINE=OLAP | ||
DUPLICATE KEY(`k1`) | ||
COMMENT 'OLAP' | ||
DISTRIBUTED BY HASH(`k1`) BUCKETS 3 | ||
PROPERTIES ("replication_allocation" = "tag.location.default: 1"); | ||
""" | ||
|
||
try { | ||
sql """ | ||
CREATE ROUTINE LOAD ${job} ON ${tableName} | ||
COLUMNS TERMINATED BY "," | ||
PROPERTIES | ||
( | ||
"max_batch_interval" = "5", | ||
"max_batch_rows" = "300000", | ||
"max_batch_size" = "209715200" | ||
) | ||
FROM KAFKA | ||
( | ||
"kafka_broker_list" = "${externalEnvIp}:${kafka_port}", | ||
"kafka_topic" = "${kafkaCsvTpoics[0]}", | ||
"kafka_partitions" = "0", | ||
"kafka_offsets" = "2021-05-22 11:00:00" | ||
); | ||
""" | ||
|
||
def count = 0 | ||
while (true) { | ||
def res = sql "select count(*) from ${tableName}" | ||
def state = sql "show routine load for ${job}" | ||
log.info("routine load state: ${state[0][8].toString()}".toString()) | ||
log.info("routine load statistic: ${state[0][14].toString()}".toString()) | ||
log.info("reason of state changed: ${state[0][17].toString()}".toString()) | ||
if (res[0][0] > 0) { | ||
break | ||
} | ||
if (count >= 120) { | ||
log.error("routine load can not visible for long time") | ||
assertEquals(20, res[0][0]) | ||
break | ||
} | ||
sleep(1000) | ||
count++ | ||
} | ||
qt_sql_offset "select * from ${tableName} order by k1" | ||
} finally { | ||
sql "stop routine load for ${job}" | ||
} | ||
} | ||
} |