Skip to content

Commit

Permalink
[chore](regression test) mv test_report_version_missing to p1 (apache…
Browse files Browse the repository at this point in the history
  • Loading branch information
yujun777 authored Sep 11, 2024
1 parent eb4673f commit a01c85e
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 82 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
// 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.doris.regression.suite.ClusterOptions
import org.apache.doris.regression.util.NodeType

import org.awaitility.Awaitility
import static java.util.concurrent.TimeUnit.SECONDS

suite('test_report_version_missing', 'nonConcurrent,p1') {
if (isCloudMode()) {
return
}
def tableName = 'test_set_replica_status_table_in_docker'
try {
setFeConfig('disable_tablet_scheduler', true)
Thread.sleep(2000)

sql "DROP TABLE IF EXISTS ${tableName}"
sql """
CREATE TABLE ${tableName} (
`id` LARGEINT NOT NULL,
`count` LARGEINT SUM DEFAULT "0")
AGGREGATE KEY(`id`)
DISTRIBUTED BY HASH(`id`) BUCKETS 1
PROPERTIES
(
"replication_num" = "1"
)
"""
List<String> values = []
for (int i = 1; i <= 10; ++i) {
values.add("(${i}, ${i})")
}
sql """INSERT INTO ${tableName} VALUES ${values.join(',')}"""

def result = sql_return_maparray """show tablets from ${tableName}"""
assertNotNull(result)
def tabletId = null
for (def res : result) {
tabletId = res.TabletId
break
}

GetDebugPoint().enableDebugPointForAllBEs('Tablet.build_tablet_report_info.version_miss', [tablet_id:"${tabletId}", version_miss:true])
boolean succ = false

def backendId_to_backendIP = [:]
def backendId_to_backendHttpPort = [:]
getBackendIpHttpPort(backendId_to_backendIP, backendId_to_backendHttpPort)

backendId_to_backendIP.each { beId, beIp ->
def port = backendId_to_backendHttpPort.get(beId) as int
be_report_tablet(beIp, port)
}

Awaitility.await().atMost(180, SECONDS).pollInterval(1, SECONDS).await().until({
def tablets = sql_return_maparray """show tablets from ${tableName}"""
logger.info("show tablets from ${tablets}")
assertNotNull(tablets)
succ = tablets.any { it.TabletId.toLong() == tabletId.toLong() && it.LstFailedVersion.toLong() > 0 }
return succ
})

assertTrue(succ)
} finally {
setFeConfig('disable_tablet_scheduler', false)
GetDebugPoint().disableDebugPointForAllBEs('Tablet.build_tablet_report_info.version_miss')
sql "DROP TABLE IF EXISTS ${tableName}"
}
}

0 comments on commit a01c85e

Please sign in to comment.