Coco
Coco
## 问题 **在官方文档中 「审核插件使用示例」 中无对应的脚本** 文档位置: https://actiontech.github.io/sqle-docs/docs/dev-manual/plugins/howtouse 实际项目中的scripts结构:
# Support New Database: Doris ## About Apache Doris Apache Doris is a modern data warehouse for real-time analytics.It delivers lightning-fast analytics on real-time data at scale. For more details...
ref: https://github.com/timescale/tsbs/issues/269
Fix that https://github.com/timescale/tsbs/issues/278 🎉
From the readme document, we can see: So, if there are 100 devices, the data should be hours*number of devices, while 100devices and 12h, result rows that should be 100*12...
## After FIX:  > Since only the first batch will follow this code logic, and subsequent batches will follow another function, it will not affect other scenarios. This simply...
## Test steps: 1. ./tsbs_generate_data --use-case="cpu-only" \ --format="clickhouse" \ --log-interval="10s" \ --scale=100 \ --timestamp-start="2024-01-01T00:00:00Z" \ --timestamp-end="2024-02-01T00:00:00Z" \ --file="ck_cpu_data_100_devices.csv" > 生成100devices的预备导入数据  2. After the import is complete, the tags table...
## Input: root@vm-239:/tsbs/tsbs/bin# ./tsbs_load_influx --file=vm_cpu_data_100_devices.bulk --urls="http://172.20.56.240:8086" panic: runtime error: index out of range [0] with length 0 goroutine 1 [running]: main.(*dbCreator).listDatabases(0x4124c5?) /tsbs/tsbs/cmd/tsbs_load_influx/creator.go:64 +0x4a7 main.(*dbCreator).DBExists(0xe69c20?, {0x1177a90?, 0xc0003a6260?}) /tsbs/tsbs/cmd/tsbs_load_influx/creator.go:22 +0x17 github.com/timescale/tsbs/load.(*CommonBenchmarkRunner).useDBCreator(0xc0003886e0, {0x1177a90,...
## Input: root@vm-239:/tsbs/tsbs/bin# ./tsbs_load_timescaledb --host="172.20.56.240" --port="5432" --user="postgres" --file="ck_cpu_data_4000_devices.csv" --chunk-time="8h" --batch-size=10000 --time-index --partition-index --workers=32 could not execute sql: SELECT create_hypertable('cpu'::regclass, 'time'::name, replication_factor => NULL, chunk_time_interval => 28800000000, create_default_indexes=>FALSE)panic: ERROR: function create_hypertable(regclass,...
## Reproduction problem steps: **1. clickhouse server deploy:** docker run -d -it -p 8123:8123 -p 9000:9000 --name clickhouse clickhouse/clickhouse-server:25.4 **2. tsbs_generate_data:** ./tsbs_generate_data --use-case="cpu-only" --seed=123 --scale=100 --timestamp-start="2025-05-01T00:00:00Z" --timestamp-end="2025-05-02T00:00:00Z" --log-interval="10s" --file="/tsbs/test_sql/cpu_only_write.csv" --format="clickhouse"...