About bulk load failed with 10000-thread limit

Your HDD is slow in terms of disk seeks. That’s why Go is hitting this limit. You can do a couple of things:

  1. Increase the number of threads to say 10K. In bulk loader code main function, you can add this.

https://golang.org/pkg/runtime/debug/#SetMaxThreads

  1. Modify the bulk loader codebase to set a higher ValueLogThreshold, say 2048 bytes here. So, that most of your values are stored in the LSM tree, and not in value log.
  1. You could