[X] I had searched in the issues and found no similar issues.
Version
nightly (2024-11-17)
What's Wrong?
I am trying out Databend in its simplest form: local Docker container (minio + databend). The experience is good so far, but there's a problem I've faced already. I am writing IOT device data to databend table as soon as I receive it, and performance for individual insert is too slow at the moment. It can't do even 100 insert operations in one second.
I can implement client-side buffering and do COPY FROM operation (or a bulk-request) on client side, but I'd love if Databend to be able to do this for me instead, so that I don't have to complicate my app's logic.
Maybe something like this is already present?
How to Reproduce?
Write a Rust program doing INSERT statement in a loop for 100000 items.
Search before asking
Version
nightly (2024-11-17)
What's Wrong?
I am trying out Databend in its simplest form: local Docker container (minio + databend). The experience is good so far, but there's a problem I've faced already. I am writing IOT device data to databend table as soon as I receive it, and performance for individual insert is too slow at the moment. It can't do even 100 insert operations in one second.
I can implement client-side buffering and do COPY FROM operation (or a bulk-request) on client side, but I'd love if Databend to be able to do this for me instead, so that I don't have to complicate my app's logic.
Maybe something like this is already present?
How to Reproduce?
Write a Rust program doing INSERT statement in a loop for 100000 items.
Are you willing to submit PR?