In my project I need to upload a big file (~250GB) to remote server, and then run a script to load the file into mysql. The problem is, if I load the single file it will take too long time. So I have to split the file into small trunks and run 10-20 processes simultaneously in multiple terminals. If I split each file ~2MB, it will take me 100,000 times operation.Then I have to run like
ruby importer.rb data_part01_aa.csv
ruby importer.rb data_part01_ab.csv
ruby importer.rb data_part01_ac.csv
.
.
.
in each terminal, wait for them to end, and run the next.
Is there any method that can automate this process? Any shell scripts that can continue doing the job when the previous one is finished? Thanks a lot!