Why does the CPU run full after starting the project

0
Why does the CPU run full after starting the project, mainly occupied by open jdk, the version is 9.24.4, is the reason for importing tens of thousands of data, reopen the project is not started, the built-in database can not store too much data?
asked
1 answers
0

Hi Yang Kai,

The built-in database tries to load everything in-memory. That's perfectly fine for PoCs and small projects. For larger datasets this could cause problems indeed. You could check if that's the case by checking the utilization of your resources (In Windows: Ctrl-Shift-Esc).

I'd suggest to switch using to PostgreSQL. It requires some effort to install, but definitely worth it.

Good luck!

answered