[Update](regression) add failure injection in inverted index writer (#26121)
* [Update](regression) add failure injection in inverted index writer
This commit is contained in:
@ -22,8 +22,6 @@
|
||||
#include <CLucene/util/bkd/bkd_writer.h>
|
||||
#include <glog/logging.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdint>
|
||||
#include <limits>
|
||||
#include <memory>
|
||||
#include <ostream>
|
||||
@ -51,6 +49,7 @@
|
||||
#include "olap/tablet_schema.h"
|
||||
#include "olap/types.h"
|
||||
#include "runtime/collection_value.h"
|
||||
#include "util/debug_points.h"
|
||||
#include "util/faststring.h"
|
||||
#include "util/slice.h"
|
||||
#include "util/string_util.h"
|
||||
@ -477,6 +476,8 @@ public:
|
||||
InvertedIndexDescriptor::get_temporary_bkd_index_meta_file_name().c_str());
|
||||
index_out = dir->createOutput(
|
||||
InvertedIndexDescriptor::get_temporary_bkd_index_file_name().c_str());
|
||||
DBUG_EXECUTE_IF("InvertedIndexWriter._set_fulltext_data_out_nullptr",
|
||||
{ data_out = nullptr; });
|
||||
if (data_out != nullptr && meta_out != nullptr && index_out != nullptr) {
|
||||
_bkd_writer->meta_finish(meta_out, _bkd_writer->finish(data_out, index_out),
|
||||
int(field_type));
|
||||
@ -492,6 +493,9 @@ public:
|
||||
dir = _index_writer->getDirectory();
|
||||
write_null_bitmap(null_bitmap_out, dir);
|
||||
close();
|
||||
DBUG_EXECUTE_IF("InvertedIndexWriter._throw_clucene_error_in_bkd_writer_close", {
|
||||
_CLTHROWA(CL_ERR_IO, "debug point: test throw error in bkd index writer");
|
||||
});
|
||||
}
|
||||
} catch (CLuceneError& e) {
|
||||
FINALLY_FINALIZE_OUTPUT(null_bitmap_out)
|
||||
|
||||
@ -0,0 +1,148 @@
|
||||
// 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.
|
||||
|
||||
suite("test_index_failure_injection", "p0") {
|
||||
// define a sql table
|
||||
def testTable_dup = "httplogs_dup"
|
||||
def testTable_unique = "httplogs_unique"
|
||||
|
||||
def create_httplogs_dup_table = {testTablex ->
|
||||
// multi-line sql
|
||||
def result = sql """
|
||||
CREATE TABLE IF NOT EXISTS ${testTablex} (
|
||||
`@timestamp` int(11) NULL,
|
||||
`clientip` varchar(20) NULL,
|
||||
`request` text NULL,
|
||||
`status` int(11) NULL,
|
||||
`size` int(11) NULL,
|
||||
INDEX size_idx (`size`) USING INVERTED COMMENT '',
|
||||
INDEX status_idx (`status`) USING INVERTED COMMENT '',
|
||||
INDEX clientip_idx (`clientip`) USING INVERTED COMMENT '',
|
||||
INDEX request_idx (`request`) USING INVERTED PROPERTIES("parser"="english") COMMENT ''
|
||||
) ENGINE=OLAP
|
||||
DUPLICATE KEY(`@timestamp`)
|
||||
COMMENT 'OLAP'
|
||||
PARTITION BY RANGE(`@timestamp`)
|
||||
(PARTITION p181998 VALUES [("-2147483648"), ("894225602")),
|
||||
PARTITION p191998 VALUES [("894225602"), ("894830402")),
|
||||
PARTITION p201998 VALUES [("894830402"), ("895435201")),
|
||||
PARTITION p211998 VALUES [("895435201"), ("896040001")),
|
||||
PARTITION p221998 VALUES [("896040001"), ("896644801")),
|
||||
PARTITION p231998 VALUES [("896644801"), ("897249601")),
|
||||
PARTITION p241998 VALUES [("897249601"), ("897854300")),
|
||||
PARTITION p251998 VALUES [("897854300"), ("2147483647")))
|
||||
DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 12
|
||||
PROPERTIES (
|
||||
"replication_allocation" = "tag.location.default: 1",
|
||||
"storage_format" = "V2",
|
||||
"compression" = "ZSTD",
|
||||
"light_schema_change" = "true",
|
||||
"disable_auto_compaction" = "false"
|
||||
);
|
||||
"""
|
||||
}
|
||||
|
||||
def create_httplogs_unique_table = {testTablex ->
|
||||
// multi-line sql
|
||||
def result = sql """
|
||||
CREATE TABLE IF NOT EXISTS ${testTablex} (
|
||||
`@timestamp` int(11) NULL,
|
||||
`clientip` varchar(20) NULL,
|
||||
`request` text NULL,
|
||||
`status` int(11) NULL,
|
||||
`size` int(11) NULL,
|
||||
INDEX size_idx (`size`) USING INVERTED COMMENT '',
|
||||
INDEX status_idx (`status`) USING INVERTED COMMENT '',
|
||||
INDEX clientip_idx (`clientip`) USING INVERTED COMMENT '',
|
||||
INDEX request_idx (`request`) USING INVERTED PROPERTIES("parser"="english") COMMENT ''
|
||||
) ENGINE=OLAP
|
||||
UNIQUE KEY(`@timestamp`)
|
||||
COMMENT 'OLAP'
|
||||
PARTITION BY RANGE(`@timestamp`)
|
||||
(PARTITION p181998 VALUES [("-2147483648"), ("894225602")),
|
||||
PARTITION p191998 VALUES [("894225602"), ("894830402")),
|
||||
PARTITION p201998 VALUES [("894830402"), ("895435201")),
|
||||
PARTITION p211998 VALUES [("895435201"), ("896040001")),
|
||||
PARTITION p221998 VALUES [("896040001"), ("896644801")),
|
||||
PARTITION p231998 VALUES [("896644801"), ("897249601")),
|
||||
PARTITION p241998 VALUES [("897249601"), ("897854300")),
|
||||
PARTITION p251998 VALUES [("897854300"), ("2147483647")))
|
||||
DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 12
|
||||
PROPERTIES (
|
||||
"replication_allocation" = "tag.location.default: 1",
|
||||
"enable_unique_key_merge_on_write" = "true",
|
||||
"storage_format" = "V2",
|
||||
"compression" = "ZSTD",
|
||||
"light_schema_change" = "true",
|
||||
"disable_auto_compaction" = "false"
|
||||
);
|
||||
"""
|
||||
}
|
||||
|
||||
def load_httplogs_data = {table_name, label, read_flag, format_flag, file_name, ignore_failure=false,
|
||||
expected_succ_rows = -1, load_to_single_tablet = 'true' ->
|
||||
|
||||
// load the json data
|
||||
streamLoad {
|
||||
table "${table_name}"
|
||||
|
||||
// set http request header params
|
||||
set 'label', label + "_" + UUID.randomUUID().toString()
|
||||
set 'read_json_by_line', read_flag
|
||||
set 'format', format_flag
|
||||
file file_name // import json file
|
||||
time 10000 // limit inflight 10s
|
||||
if (expected_succ_rows >= 0) {
|
||||
set 'max_filter_ratio', '1'
|
||||
}
|
||||
|
||||
// if declared a check callback, the default check condition will ignore.
|
||||
// So you must check all condition
|
||||
check { result, exception, startTime, endTime ->
|
||||
if (ignore_failure && expected_succ_rows < 0) { return }
|
||||
if (exception != null) {
|
||||
throw exception
|
||||
}
|
||||
log.info("Stream load result: ${result}".toString())
|
||||
def json = parseJson(result)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
sql "DROP TABLE IF EXISTS ${testTable_dup}"
|
||||
sql "DROP TABLE IF EXISTS ${testTable_unique}"
|
||||
create_httplogs_dup_table.call(testTable_dup)
|
||||
create_httplogs_unique_table.call(testTable_unique)
|
||||
|
||||
try {
|
||||
GetDebugPoint().enableDebugPointForAllBEs("InvertedIndexWriter._set_fulltext_data_out_nullptr")
|
||||
load_httplogs_data.call(testTable_dup, 'test_httplogs_load_count_on_index', 'true', 'json', 'documents-1000.json')
|
||||
} finally {
|
||||
GetDebugPoint().disableDebugPointForAllBEs("InvertedIndexWriter._set_fulltext_data_out_nullptr")
|
||||
}
|
||||
try {
|
||||
GetDebugPoint().enableDebugPointForAllBEs("InvertedIndexWriter._throw_clucene_error_in_bkd_writer_close")
|
||||
load_httplogs_data.call(testTable_unique, 'test_httplogs_load_count_on_index', 'true', 'json', 'documents-1000.json')
|
||||
} finally {
|
||||
GetDebugPoint().disableDebugPointForAllBEs("InvertedIndexWriter._throw_clucene_error_in_bkd_writer_close")
|
||||
}
|
||||
qt_sql "select COUNT() from ${testTable_dup} where request match 'images'"
|
||||
} finally {
|
||||
//try_sql("DROP TABLE IF EXISTS ${testTable}")
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
-- This file is automatically generated. You should know what you did if you want to edit this
|
||||
-- !sql --
|
||||
0
|
||||
|
||||
Reference in New Issue
Block a user