跳到主要内容

BE 存储层 Benchmark 工具

用途

benchmark_tool 用于测试 Apache Doris BE 存储层(如 segmentpage)的性能。它根据输入数据构造指定对象,并通过 google benchmark 进行性能测试。

编译

  1. 确保已具备编译 Doris 本体的环境,可参考 编译与部署
  2. 执行 Doris 仓库下的 run-be-ut.sh
  3. 编译输出的可执行文件位于 ./be/ut_build_ASAN/test/tools/benchmark_tool

使用

通用参数

参数含义默认值
--operation测试类型,详见下方各场景无(必填)
--column_typeSegment 表结构列类型,支持 intcharvarcharstringint,varchar
--rows_number数据行数10000
--iterations测试迭代次数;0 表示由 benchmark 自动选择10
--input_file从文件导入数据时的数据文件路径

类型长度约定:

类型长度
char8
varchar最大值
string最大值

随机数据集生成规则:

类型规则
int[1, 1000000] 内随机
char长度在 [1, 8] 内随机,字符集为大小写英文字母
varchar长度在 [1, 128] 内随机,字符集为大小写英文字母
string长度在 [1, 100000] 内随机,字符集为大小写英文字母

测试场景一览

场景命令
随机数据集进行 Segment 读取测试./benchmark_tool --operation=SegmentScan --column_type=int,varchar --rows_number=10000 --iterations=0
随机数据集进行 Segment 写入测试./benchmark_tool --operation=SegmentWrite
文件导入数据集进行 Segment 读取测试./benchmark_tool --operation=SegmentScanByFile --input_file=./sample.dat
文件导入数据集进行 Segment 写入测试./benchmark_tool --operation=SegmentWriteByFile --input_file=./sample.dat
随机数据集进行 page 字典编码测试./benchmark_tool --operation=BinaryDictPageEncode --rows_number=10000 --iterations=0
随机数据集进行 page 字典解码测试./benchmark_tool --operation=BinaryDictPageDecode

使用随机生成的数据集进行 Segment 读取测试

会先利用数据集写入一个 segment 文件,然后统计扫描整个 segment 的耗时。

./benchmark_tool --operation=SegmentScan --column_type=int,varchar --rows_number=10000 --iterations=0

使用随机生成的数据集进行 Segment 写入测试

对将数据集添加进 segment 并写入磁盘的流程进行耗时统计。

./benchmark_tool --operation=SegmentWrite

使用从文件导入的数据集进行 Segment 读取测试

./benchmark_tool --operation=SegmentScanByFile --input_file=./sample.dat

input_file 为导入的数据集文件。文件第一行为表结构定义,之后每行对应一行数据,列之间用 , 分隔:

int,char,varchar
123,hello,world
321,good,bye

类型同样支持 intcharvarcharstring;注意 char 类型数据长度不能超过 8

使用从文件导入的数据集进行 Segment 写入测试

./benchmark_tool --operation=SegmentWriteByFile --input_file=./sample.dat

使用随机生成的数据集进行 page 字典编码测试

./benchmark_tool --operation=BinaryDictPageEncode --rows_number=10000 --iterations=0

会随机生成长度在 [1, 8] 之间的 varchar,对编码过程进行耗时统计。

使用随机生成的数据集进行 page 字典解码测试

./benchmark_tool --operation=BinaryDictPageDecode

会随机生成长度在 [1, 8] 之间的 varchar 并编码,对解码过程进行耗时统计。

Custom 测试

支持用户使用自己编写的函数进行性能测试,具体实现位于 /be/test/tools/benchmark_tool.cpp

1. 编写测试函数

void custom_run_plus() {
int p = 100000;
int q = 0;
while (p--) {
q++;
if (UNLIKELY(q == 1024)) q = 0;
}
}
void custom_run_mod() {
int p = 100000;
int q = 0;
while (p--) {
q++;
if (q %= 1024) q = 0;
}
}

2. 注册 CustomBenchmark

benchmarks.emplace_back(
new doris::CustomBenchmark("custom_run_plus", 0,
custom_init, custom_run_plus));
benchmarks.emplace_back(
new doris::CustomBenchmark("custom_run_mod", 0,
custom_init, custom_run_mod));

其中 init 为每轮测试的初始化步骤(不计入耗时);如需初始化对象,可通过 CustomBenchmark 的派生类来实现。

3. 运行结果示例

2021-08-30T10:29:35+08:00
Running ./benchmark_tool
Run on (96 X 3100.75 MHz CPU s)
CPU Caches:
L1 Data 32 KiB (x48)
L1 Instruction 32 KiB (x48)
L2 Unified 1024 KiB (x48)
L3 Unified 33792 KiB (x2)
Load Average: 0.55, 0.53, 0.39
----------------------------------------------------------
Benchmark Time CPU Iterations
----------------------------------------------------------
custom_run_plus 0.812 ms 0.812 ms 861
custom_run_mod 1.30 ms 1.30 ms 539

FAQ

Q:未找到 benchmark_tool 可执行文件?

请先执行 run-be-ut.sh 完整构建 BE 单元测试,可执行文件会输出到 ./be/ut_build_ASAN/test/tools/benchmark_tool

Q:自定义测试结果与预期不符?

请确认 custom_init 中不包含被测函数的逻辑,且 custom_run_* 函数的执行体足够大以避免被优化器消除。