HyperSQL (HSQLDB): massive insert performance

前端 未结 3 1668
既然无缘
既然无缘 2021-02-11 02:48

I have an application that has to insert about 13 million rows of about 10 average length strings into an embedded HSQLDB. I\'ve been tweaking things (batch size, single threade

3条回答
  •  悲&欢浪女
    2021-02-11 03:28

    check what your application is doing. First things would be to look at resource utilization in taskmanager (or OS specific comparable) and visualvm.

    Good candidates for causing bad performance:

    • disk IO
    • garbage collector

提交回复
热议问题