Open
Description
Using multiple CPU threads with data.table
s can use a lot of memory when handling large data.table`s.
For example, using 12 threads (the number used when running the code after setDTthreads(0)
) instead of 1 core will use up a lot of the SSD (i.e. hard fault) due to running out of RAM. In addition, the memory gets used up after code execution, meaning that memory leaks can be especially problematic.