I'd like to insert huge amounts of data, What should I use: Single insert into
statements, or do I have to use bulk inserts? Is there something else? The reason I ask is, that my CrateDB node's disk is only busy at 11kb/s on average while the disk load is at 100% using single inserts!
Furthermore, is something like INSERT INTO IGNORE
supported? Can I just throw my data in bulk at CrateDB and it will ignore duplicate entries?
Thanks!