Skip to content

Instantly share code, notes, and snippets.

@rklaeboe
rklaeboe / csvtomongo.sh
Created December 8, 2017 10:57
import multiple csv to Mongo
ls -1 *.csv | while read csvfile; do mongoimport --db=tp --collection=quarters --type=tsv --mode insert --columnsHaveTypes --fieldFile=q_fieldNames.txt --numInsertionWorkers 8 --file $csvfile; done
Note: fieldfile is in the directory to be uploaded and command copied and pasted and executed from the commandline when in the directory