This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch perf/trace-vs-stream in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
commit 067fff4cc20d1ee78fa1810d78313c250aeab491 Author: Gao Hongtao <[email protected]> AuthorDate: Thu Sep 18 00:43:13 2025 +0000 refactor: update startTime type in trace schema to improve accuracy - Changed the type of startTime from TAG_TYPE_INT to TAG_TYPE_TIMESTAMP in both the performance test design document and the trace schema JSON file to ensure proper handling of timestamp data. --- test/stress/stream-vs-trace/stream-vs-trace-performance-test-design.md | 2 +- test/stress/stream-vs-trace/testdata/schema/trace_schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/stress/stream-vs-trace/stream-vs-trace-performance-test-design.md b/test/stress/stream-vs-trace/stream-vs-trace-performance-test-design.md index 25929c02..1878b99e 100644 --- a/test/stress/stream-vs-trace/stream-vs-trace-performance-test-design.md +++ b/test/stress/stream-vs-trace/stream-vs-trace-performance-test-design.md @@ -67,7 +67,7 @@ The Trace model uses a flat tag structure optimized for trace operations: {"name": "serviceId", "type": "TAG_TYPE_STRING"}, {"name": "serviceInstanceId", "type": "TAG_TYPE_STRING"}, {"name": "traceId", "type": "TAG_TYPE_STRING"}, - {"name": "startTime", "type": "TAG_TYPE_INT"}, + {"name": "startTime", "type": "TAG_TYPE_TIMESTAMP"}, {"name": "latency", "type": "TAG_TYPE_INT"}, {"name": "isError", "type": "TAG_TYPE_INT"}, {"name": "spanId", "type": "TAG_TYPE_STRING"}, diff --git a/test/stress/stream-vs-trace/testdata/schema/trace_schema.json b/test/stress/stream-vs-trace/testdata/schema/trace_schema.json index 098bda93..00c2f4ad 100644 --- a/test/stress/stream-vs-trace/testdata/schema/trace_schema.json +++ b/test/stress/stream-vs-trace/testdata/schema/trace_schema.json @@ -18,7 +18,7 @@ }, { "name": "startTime", - "type": "TAG_TYPE_INT" + "type": "TAG_TYPE_TIMESTAMP" }, { "name": "latency",
