INSERT of 10 million queries under 10 minutes in Oracle?

前端 未结 4 1747
伪装坚强ぢ
伪装坚强ぢ 2020-12-15 09:08

I am working on a file loader program.

The purpose of this program is to take an input file, do some conversions on its data and then upload the data into the databa

4条回答
  •  既然无缘
    2020-12-15 09:15

    By the way, did you try to increase number of physical clients, not just threads? By running in a cloud on several VMs or on several physical machines. I recently read comments I think from Aerospike developers where they explain that many people are unable to reproduce their results just because they don't understand it's not that easy to make a client actually send that much queries per second (above 1M per second in their case). For instance, for their benchmark they had to run 4 clients in parallel. Maybe this particular oracle driver just is not fast enough to support more than 7-8 thousands of request per second on single machine?

提交回复
热议问题