zilliztech / VectorDBBench

A Benchmark Tool for VectorDB
MIT License
455 stars 109 forks source link

Index Build Time Measurements #338

Open iamsabhoho opened 3 days ago

iamsabhoho commented 3 days ago

Hello,

I’m recently starting to use the tool to perform some benchmarking and I came across this issue about index build time. I was wondering if this metric has been integrated and how I can use it.

I also notice that there’s some new integration with GPU for building index but couldn’t find a report for it. If you could point me to the right path that’d be awesome!

Thanks, Sabrina

xiaofan-luan commented 3 days ago

I think index build time is actually covered by insertion time. The insertion time = insert into database + index build time

xiaocai2333 commented 3 days ago

You can obtain this information through monitoring, such as the status of various indexing tasks using the monitor metrics index_task_count, and the execution time of indexing tasks at different stages using the monitor metrics build_index_latency.

xiaocai2333 commented 3 days ago

image

image